/* ========= RESET ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.8;
  letter-spacing: 0.4px;
}

/* ========= HERO ========= */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  animation: fadeIn 1.2s ease forwards;
}

.hero h1 {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: fadeUp 1.2s ease forwards;
}

/* ========= SECTIONS ========= */
section {
  max-width: 1100px;
  margin: auto;
  padding: 100px 30px;
  border-bottom: 1px solid #f0f0f0;
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
}

section:nth-of-type(2) { animation-delay: 0.2s; }
section:nth-of-type(3) { animation-delay: 0.3s; }
section:nth-of-type(4) { animation-delay: 0.4s; }
section:nth-of-type(5) { animation-delay: 0.5s; }

section:hover {
  transform: translateY(-4px);
  transition: transform 0.4s ease;
}

/* ========= TYPOGRAPHY ========= */
h2 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 5px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 14px;
}

p {
  margin-bottom: 14px;
  font-weight: 300;
}

strong {
  font-weight: 500;
  color: #444;
}

/* ========= BUTTONS ========= */
a,
button {
  display: inline-block;
  padding: 14px 38px;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
}

a:hover,
button:hover {
  background: #000;
  color: #fff;
}

/* ========= MENU ========= */
.menu-section {
  text-align: center;
}

.menu-wrapper {
  margin-top: 40px;
  padding: 70px 20px;
  border: 1px solid #eaeaea;
  transition: all 0.4s ease;
}

.menu-wrapper:hover {
  border-color: #000;
  transform: translateY(-6px);
}

.menu-button {
  padding: 18px 60px;
  letter-spacing: 4px;
  font-size: 0.9rem;
}

/* ========= FORM ========= */
form div {
  margin-bottom: 30px;
}

label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  color: #666;
}

input,
select {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus {
  outline: none;
  border-bottom: 1px solid #000;
}

/* ========= MAP ========= */
iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s ease;
}

iframe:hover {
  filter: grayscale(0%);
  transform: scale(1.01);
}

/* ========= FOOTER ========= */
footer {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  padding: 60px 20px;
  border: none;
}

/* ========= ANIMATIONS ========= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========= RESPONSIVE ========= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  section {
    padding: 70px 20px;
  }
}