/* =========================
   RESET
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #f5e6c8;
  font-family: "Cormorant Garamond", serif;
  overflow-x: hidden;
}

/* =========================
   FONDO
========================= */

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(201, 161, 74, 0.08),
    transparent 60%
  );

  pointer-events: none;
  z-index: -1;
}

/* =========================
   CONTAINER
========================= */

.container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
}

/* =========================
   HEADER
========================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(201, 161, 74, 0.15);

  z-index: 999;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 90px;
}

.logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 45px;
}

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

  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;

  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.apply-btn {
  padding: 18px 34px;

  border: 1px solid #c9a14a;

  color: #e6c77c;
  text-decoration: none;

  font-family: "Cinzel", serif;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;

  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #c9a14a;
  color: #000;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 180px 0 100px;
}

.hero-content {
  text-align: center;
  max-width: 1000px;
}

.hero-logo {
  width: 420px;
  max-width: 90%;

  display: block;
  margin: auto auto 45px;

  object-fit: contain;

  filter: drop-shadow(0 0 25px rgba(201, 161, 74, 0.35))
    drop-shadow(0 0 70px rgba(201, 161, 74, 0.12));
}

.hero-subtitle {
  color: #d6a94c;

  font-family: "Cinzel", serif;
  font-size: 28px;

  letter-spacing: 7px;
  text-transform: uppercase;

  margin-bottom: 55px;

  line-height: 1.7;
}

.hero-description {
  font-size: 42px;
  line-height: 1.6;

  color: #f3e2bb;

  margin-bottom: 55px;

  font-weight: 600;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 20px 42px;

  border: 1px solid #c9a14a;

  color: #e6c77c;
  text-decoration: none;

  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;

  transition: 0.3s ease;

  background: transparent;
}

.hero-btn:hover {
  background: #c9a14a;
  color: #000;
}

/* =========================
   SECTION
========================= */

.section {
  padding: 120px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  display: block;

  color: #b69045;

  font-family: "Cinzel", serif;
  letter-spacing: 5px;
  text-transform: uppercase;

  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 58px;

  color: #f0d899;

  font-family: "Cinzel", serif;

  line-height: 1.2;
}

/* =========================
   GRID
========================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

/* =========================
   CARD
========================= */

.card {
  background: #0a0a0a;

  border: 1px solid rgba(201, 161, 74, 0.18);

  padding: 40px;

  transition: 0.35s ease;
}

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

  border-color: #c9a14a;

  box-shadow: 0 0 35px rgba(201, 161, 74, 0.12);
}

.card h3 {
  color: #d6a94c;

  font-family: "Cinzel", serif;
  font-size: 30px;

  margin-bottom: 28px;
}

.card ul {
  list-style: none;
}

.card ul li {
  margin-bottom: 18px;

  font-size: 23px;
  line-height: 1.7;

  color: #e8d7b0;
}

/* =========================
   PROCESS
========================= */

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.process-box {
  background: #0b0b0b;

  border: 1px solid rgba(201, 161, 74, 0.18);

  padding: 45px 35px;

  text-align: center;
}

.process-box h3 {
  color: #c9a14a;

  font-size: 70px;

  font-family: "Cinzel", serif;

  margin-bottom: 15px;
}

.process-box h4 {
  color: #f0d899;

  font-size: 30px;

  margin-bottom: 18px;

  font-family: "Cinzel", serif;
}

.process-box p {
  color: #dbc9a3;

  font-size: 22px;
  line-height: 1.7;
}

/* =========================
   TWO COLUMN
========================= */

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* =========================
   CTA
========================= */

.cta {
  padding: 140px 0;

  text-align: center;

  border-top: 1px solid rgba(201, 161, 74, 0.15);
}

.cta h2 {
  font-size: 64px;

  color: #f0d899;

  margin-bottom: 25px;

  font-family: "Cinzel", serif;

  line-height: 1.3;
}

.cta p {
  font-size: 28px;

  color: #d8c29d;

  margin-bottom: 45px;
}

/* =========================
   FOOTER
========================= */

footer {
  text-align: center;

  padding: 70px 20px;

  border-top: 1px solid rgba(201, 161, 74, 0.15);
}

footer h3 {
  color: #d6a94c;

  font-size: 52px;

  font-family: "Cinzel", serif;

  margin-bottom: 20px;
}

footer p {
  color: #bfa77b;

  font-size: 22px;

  margin-bottom: 12px;
}

/* =========================
   MODAL BASE
========================= */

.contact-modal,
.poster-modal {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.88);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 99999;

  opacity: 0;
  visibility: hidden;

  transition: 0.35s ease;
}

.contact-modal.active,
.poster-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
}

/* =========================
   CONTACT MODAL
========================= */

.contact-box-modal {
  position: relative;

  width: 92%;
  max-width: 700px;

  background: #090909;

  border: 1px solid rgba(201, 161, 74, 0.35);

  padding: 55px;

  box-shadow:
    0 0 40px rgba(201, 161, 74, 0.12),
    0 0 120px rgba(201, 161, 74, 0.05);

  animation: modalShow 0.35s ease;

  z-index: 5;
}

.contact-box-modal h2 {
  font-size: 42px;

  color: #d4af37;

  margin-bottom: 18px;

  font-family: "Cinzel", serif;
}

.modal-text {
  color: #d8c29d;

  font-size: 20px;
  line-height: 1.8;

  margin-bottom: 35px;
}

.contact-box {
  background: #111;

  border: 1px solid rgba(201, 161, 74, 0.18);

  padding: 25px;

  margin-bottom: 20px;
}

.contact-box h3 {
  color: #d4af37;

  font-size: 24px;

  margin-bottom: 10px;

  font-family: "Cinzel", serif;
}

.contact-box a {
  color: #f5e6c8;

  text-decoration: none;

  font-size: 20px;
}

/* =========================
   POSTER MODAL
========================= */

.poster-content {
  position: relative;

  width: 95%;
  max-width: 1300px;

  max-height: 95vh;

  overflow: auto;

  z-index: 5;

  animation: posterShow 0.35s ease;
}

.poster-content img {
  width: 100%;
  display: block;

  border: 1px solid rgba(201, 161, 74, 0.35);

  box-shadow:
    0 0 40px rgba(201, 161, 74, 0.15),
    0 0 120px rgba(201, 161, 74, 0.08);
}

/* =========================
   CLOSE BUTTON
========================= */

.close-modal {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 52px;
  height: 52px;

  border: none;

  background: #c9a14a;
  color: #000;

  font-size: 28px;

  cursor: pointer;

  z-index: 10;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes modalShow {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes posterShow {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-logo {
    width: 300px;
  }

  .hero-subtitle {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .hero-description {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 42px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 42px;
  }

  .cta p {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 150px;
  }

  .hero-logo {
    width: 240px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-description {
    font-size: 24px;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .card {
    padding: 28px;
  }

  .card h3 {
    font-size: 24px;
  }

  .card ul li {
    font-size: 20px;
  }

  .contact-box-modal {
    padding: 30px 22px;
  }
}
.menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;

    font-size: 34px;
    color: #d4af37;

    cursor: pointer;
  }

  .nav-links {
    position: absolute;

    top: 90px;
    left: 0;

    width: 100%;

    background: #050505;

    flex-direction: column;

    padding: 35px 0;

    gap: 25px;

    border-top: 1px solid rgba(201, 161, 74, 0.18);

    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}
