
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

.container {
  scroll-snap-type: y mandatory;
}

.snap-section {
  scroll-snap-align: start;
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
}

.nav-brand {
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.nav-brand img {
  width: 40px;
  margin-right: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  padding-right: 20px;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.hero {
  background: linear-gradient(135deg, #1f1f1f, #0d0d0d);
  position: relative;
  padding-top: 80px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2em;
  color: #bbb;
}

.section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
  color: #00bcd4;
}

.dark {
  background-color: #1e1e1e;
}

.contact-map-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 900px) {
  .contact-map-section {
    flex-direction: row;
    justify-content: space-between;
  }
}

.contact-form-container,
.map-container {
  flex: 1;
  padding: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  background: #222;
  color: #eee;
  border: none;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.contact-form button {
  padding: 15px;
  background: #00bcd4;
  color: black;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  font-size: 14px;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}
