/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #ffffff;
  --color-bg-cream: #f7f5f0;
  --color-gold: #cab695;
  --color-gold-dark: #755f37;
  --color-gold-darker: #3a311c;
  --color-text-dark: #333333;
  --color-text-body: #575555;
  --color-text-muted: #a3a3a2;
  --color-footer-bg: #8b7748;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.logo-img {
  height: 75px;
  width: auto;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.header-phone svg {
  color: var(--color-text-body);
}

/* Hero Banner */
.hero-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-video {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 80vh;
}

.hero-video-mobile {
  width: 100%;
  display: none;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }
}

/* Title Section */
.title-section {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px 20px 40px;
  background: var(--color-bg);
}

.main-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-text-dark);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.main-subtitle {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-gold-dark);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* Events Section */
.events-section {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  padding: 20px 40px 50px;
}

.events-grid {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  text-align: center;
}

.event-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.event-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.event-label-bold,
.event-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
}

/* Gallery Section */
.gallery-section {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  padding: 10px 0;
}

.gallery-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 20px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Features Section */
.features-section {
  position: relative;
  z-index: 1;
  background: var(--color-bg-cream);
  padding: 60px 40px 70px;
}

.features-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  text-align: center;
  color: var(--color-text-dark);
  margin-bottom: 50px;
}

.features-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 50px;
}

.feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.feature-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 4px;
}

.feature-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-body);
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--color-bg);
  padding: 70px 60px;
  position: relative;
  z-index: 1;
}

.testimonial-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--color-gold);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.testimonial-prev {
  left: 20px;
}

.testimonial-next {
  right: 20px;
}

.landscape-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Landscape Image */
.landscape-section {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  max-height: 400px;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: var(--color-footer-bg);
  padding: 40px 30px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  color: #fff;
}

.footer-address p {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.9);
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  color: rgba(255,255,255,0.9);
  transition: opacity 0.3s;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-contact p {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.9);
}

.footer-contact a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

.footer-contact a:hover {
  color: #fff;
}

.btn-book-footer {
  display: inline-block;
  background: var(--color-gold-dark);
  color: #fff;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.3s;
}

.btn-book-footer:hover {
  background: var(--color-gold-darker);
}

.footer-map-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-map-link:hover {
  color: #fff;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  z-index: 900;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.lightbox img {
  max-width: 80vw;
  max-height: 90vh;
  object-fit: contain;
  user-select: none;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2001;
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media (max-width: 768px) {
  .lightbox-arrow {
    display: none;
  }

  .lightbox img {
    max-width: 95vw;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 15px;
    height: 60px;
  }

  .logo-img {
    height: 42px;
  }

  .hero-badge img {
    width: 90px;
  }

  .main-title {
    font-size: 28px;
  }

  .main-subtitle {
    font-size: 24px;
  }

  .events-section {
    padding: 20px 20px 40px;
  }

  .events-grid {
    gap: 20px 20px;
  }

  .event-icon img {
    width: 48px;
    height: 48px;
  }

  .event-label-bold,
  .event-label {
    font-size: 13px;
  }

  .gallery-grid {
    gap: 3px;
    padding: 0 10px;
  }

  .features-section {
    padding: 40px 20px 50px;
  }

  .features-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 20px;
  }

  .feature-icon img {
    width: 42px;
    height: 42px;
  }

  .feature-name {
    font-size: 12px;
  }

  .feature-desc {
    font-size: 11px;
  }

  .testimonials-section {
    padding: 50px 40px;
  }

  .testimonial-quote {
    font-size: 18px;
  }

  .testimonial-prev {
    left: 5px;
  }

  .testimonial-next {
    right: 5px;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }

  .footer-address,
  .footer-contact {
    text-align: center;
  }

  .footer-social {
    display: flex;
    justify-content: center;
  }

  .contact-us-btn {
    right: 60px;
    bottom: 20px;
    font-size: 12px;
    padding: 8px 16px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 24px;
  }

  .main-subtitle {
    font-size: 20px;
  }

  .events-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
  }

  .features-title {
    font-size: 28px;
  }

  .testimonial-quote {
    font-size: 16px;
  }

  .landscape-section {
    max-height: 250px;
  }
}
