:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --cream: #F7F1E8;
  --ivory: #FBF8F2;
  --charcoal: #2C0D10;
  --dark: #1A0608;
  --brown: #3D2B1A;
  --text: #2C1F0F;
  --muted: #7A6B56;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background: rgba(26, 6, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: all 0.4s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.5);
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  line-height: 1.3;
}

.nav-logo-text span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
  opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); opacity: 1; }

/* ===================== HERO ===================== */
#home {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active { opacity: 1; }

.hero-bg-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,10,10,0.45), rgba(10,10,10,0.8));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.03) 60px,
      rgba(201,168,76,0.03) 61px
    );
}

.hero-border {
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(201,168,76,0.15);
  pointer-events: none;
}

.hero-border::before, .hero-border::after {
  content: '';
  position: absolute;
  width: 3rem; height: 3rem;
  border-color: var(--gold);
  border-style: solid;
}

.hero-border::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}

.hero-border::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--ivory);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s both;
}

.hero-divider::before, .hero-divider::after {
  content: '';
  width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-divider span {
  color: var(--gold);
  font-size: 1rem;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s both;
}

.hero-cta {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s both;
}

.hero-cta:hover {
  background: var(--gold-light);
  letter-spacing: 0.4em;
}

/* ===================== SECTIONS ===================== */
section { padding: 7rem 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ===================== ABOUT ===================== */
#about {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: 'ROYAL';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cinzel', serif;
  font-size: 12rem;
  color: rgba(201,168,76,0.03);
  pointer-events: none;
  letter-spacing: 0.1em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text p {
  font-size: 1.25rem;
  line-height: 1.9;
  color: rgba(247,241,232,0.75);
  margin-top: 2rem;
}

.about-text p + p { margin-top: 1.2rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  border-left: 1px solid rgba(201,168,76,0.3);
  padding-left: 1.2rem;
}

.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.feature-text {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-visual { position: relative; }

.about-card {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 3rem;
  position: relative;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 1rem; left: 1rem; right: -1rem; bottom: -1rem;
  border: 1px solid rgba(201,168,76,0.1);
  z-index: -1;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
}

.stat-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(201,168,76,0.15);
}

/* ===================== CARD GRIDS (Amenities & Celebrations) ===================== */
#amenities { background: var(--dark); position: relative; }
#celebrations { background: var(--charcoal); position: relative; }

.section-header { text-align: center; margin-bottom: 5rem; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.info-card {
  background: var(--charcoal);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

#celebrations .info-card { background: var(--dark); }

.info-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.info-card:hover { background: rgba(201,168,76,0.04); }
.info-card:hover::before { transform: scaleX(1); }

.info-icon {
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.info-icon svg {
  width: 34px;
  height: 34px;
}

.info-name {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.info-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ===================== GALLERY ===================== */
#gallery { background: var(--dark); }

.gallery-header { margin-bottom: 4rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.gallery-item:nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 7 / 10; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 10 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 7 / 10; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 10 / 13; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 1 / 7; grid-row: 3 / 4; }
.gallery-item:nth-child(7) { grid-column: 7 / 13; grid-row: 3 / 4; }

.gallery-item:hover { transform: scale(1.03); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,6,8,0.85) 0%, rgba(26,6,8,0.05) 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.gallery-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-light);
}

/* ===================== CONTACT ===================== */
#contact {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

#contact::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at bottom right, rgba(201,168,76,0.06), transparent);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info { padding-top: 1rem; }

.contact-info p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(247,241,232,0.6);
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: block;
}

.contact-detail-val {
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.6;
}

.contact-detail-val a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail-val a:hover { color: var(--gold); }

.contact-form {
  background: rgba(201,168,76,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 3rem;
}

.form-title {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0.8rem 0;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background: var(--charcoal);
  padding: 0.8rem 0.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  cursor: pointer;
}

.form-group select option { background: var(--charcoal); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea { height: 100px; resize: none; }

/* ===================== FOOTER ===================== */
footer {
  background: #120304;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  object-fit: cover;
}

.footer-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.footer-logo-text span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  margin-top: 3px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  text-transform: uppercase;
}

.footer-links a:hover { color: var(--gold); }

/* ===================== ORNAMENT ===================== */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.ornament-line {
  height: 1px;
  width: 3rem;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament-line.right {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== MOBILE ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  nav { padding: 1rem 2rem; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(26,6,8,0.98);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { display: flex; }
  .container { padding: 0 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cards-grid { grid-template-columns: 1fr; gap: 2px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; height: 180px; }
  .hero-border { inset: 1rem; }
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 6, 8, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  padding: 2rem;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 0.35s ease;
}

.lightbox.show .lightbox-img { transform: scale(1); }

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-light);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: none;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover { color: var(--gold); border-color: var(--gold); }

/* ===================== WHATSAPP BUTTON ===================== */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  width: 100%;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1rem 1.4rem;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: var(--gold-light);
  letter-spacing: 0.4em;
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
