/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #fff;
  --accent: #d87f6b;
  --muted: #6b7280;
  --container: 1100px;
}
body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial;
  line-height: 1.6;
  color: #111;
  background: var(--bg);
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a {
  color: #111;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  color: #111;
  padding: 8px 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
  font-family: inherit;
}
.dropbtn:hover {
  background: #f3f4f6;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
  top: 100%;
  left: 0;
  margin-top: 4px;
}
.dropdown-content a {
  color: #111;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-radius: 6px;
  margin: 4px;
}
.dropdown-content a:hover {
  background-color: #f3f4f6;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.nav a.btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.nav a.btn.primary {
  background: var(--accent);
  color: #fff;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.4rem;
}

.hero {
  min-height: 66vh;
  background-image: url("../assets/images/hero_bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.25),
    rgba(10, 10, 10, 0.45)
  );
}
.hero-content {
  position: relative;
  color: #fff;
  padding: 80px 20px;
  max-width: 600px;
  margin-right: 60px;
}
.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.lead {
  color: #f2f2f2;
  max-width: 720px;
  margin-bottom: 18px;
}
.btn-hero {
  display: inline-block;
  padding: 14px 36px;
  background: #d87f6b;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 16px;
  transition: all 0.3s ease;
}
.btn-hero:hover {
  background: #c86e5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 127, 107, 0.4);
}
.hero-ctas .btn {
  margin-right: 10px;
}
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #ddd;
  color: #111;
  background: #fff;
}
.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.section {
  padding: 64px 0;
}
.section-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 28px;
}

/* Additional sections styling */
.eyebrow {
  letter-spacing: 2px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
}

.watch-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: center;
}
.watch-text p {
  margin-bottom: 24px;
}
.watch-thumb img {
  width: 100%;
  border-radius: 10px;
}
.youtube-link {
  cursor: pointer;
  display: block;
}
.youtube-link img {
  cursor: pointer;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.price-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.price-card .price {
  font-size: 1.6rem;
  color: var(--accent);
  margin: 10px 0;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.price-card ul li {
  padding: 6px 0;
  color: var(--muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.feature {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  text-align: center;
}
.feature .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.event {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.testi-person {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.testi-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}
.testi-person blockquote {
  font-style: normal;
  color: #333;
  margin: 0 0 8px;
}
.testi-person cite {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.checklist {
  list-style: disc;
  margin-top: 12px;
  margin-left: 20px;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(18, 18, 18, 0.06);
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.card h3 {
  padding: 14px 16px 0;
}
.card p {
  padding: 6px 16px 18px;
  color: var(--muted);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.testi {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(15, 15, 15, 0.06);
}
.testi cite {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #e2e8f0;
  padding: 48px 0 0;
  border-top: 3px solid #d87f6b;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-about h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.footer-about p {
  color: #cbd5e0;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #d87f6b;
}
.footer-contact p {
  color: #cbd5e0;
  margin-bottom: 10px;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.social-links a,
.social-links .social-icon-disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #e2e8f0;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: #d87f6b;
  color: #fff;
  transform: translateY(-3px);
}
.social-links .social-icon-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Contact Form */
.contact {
  background: #f9fafb;
  padding: 48px 24px;
  border-radius: 12px;
  margin-bottom: 48px;
}
.contact-intro {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d87f6b;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-submit {
  background: #d87f6b;
  color: white;
  padding: 14px 48px;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 24px auto 0;
}
.btn-submit:hover {
  background: #c86e5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 127, 107, 0.3);
}

.footer-bar {
  background: rgba(0, 0, 0, 0.2);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #cbd5e0;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 650px) {
  .nav {
    display: none;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 66px;
    right: 20px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .nav-toggle {
    display: block;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero {
    min-height: 50vh;
  }
  .hero-content {
    margin-right: 0;
    padding: 60px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Lightbox styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox-inner {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lb-close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: transparent;
  border: 2px solid white;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lb-close:hover {
  background: white;
  color: black;
}

/* FAQ Page Styles */
.faq-section {
  max-width: 900px;
  margin: 48px auto;
}
.faq-intro {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.faq-container {
  margin-top: 32px;
}
.faq-item {
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #f9fafb;
}
.faq-icon {
  font-size: 1.5rem;
  color: #d87f6b;
  font-weight: 400;
  min-width: 24px;
  text-align: center;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding: 0 24px 20px 24px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}
