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

:root {
  --gold: #c6a75e;
  --dark: #0d0d0d;
  --soft-dark: #151515;
  --text-light: #f5f5f5;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  background-color: var(--dark);
  color: var(--text-light);
  scroll-behavior: smooth;
}

/* HERO */

.hero {
  height: 100vh;
  background: url("hero.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.overlay {
  padding: 60px 20px;
  width: 100%;
}

.subtitle {
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 20px;
  color: var(--gold);
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--gold);
  color: black;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.btn:hover {
  background: white;
  transform: translateY(-2px);
}

/* SECTIONS */

section {
  padding: 100px 10%;
}

h2 {
  font-family: "Playfair Display", serif;
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.4rem;
  font-weight: 600;
}

.center {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.85;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-grid div {
  text-align: center;
}

.about-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 25px;
  border: 2px solid var(--gold);
}

h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* PRICES */

/* PRICES — split solo/duo */
.price-group {
  margin-bottom: 60px;
}

.group-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Each price-grid stays 3 in a row */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.card {
  background: var(--soft-dark);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #222;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.card h4 {
  margin-top: 20px;
  font-size: 1.7rem;
  color: var(--gold);
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  opacity: 0.85;
}

/* VIDEO SECTION MODERN MINIMAL */
.video-section {
  padding: 80px 10%;
}

.video-section h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 50px;
}

.video-wrapper {
  width: 100%;
  max-width: 900px; /* Optional max width */
  margin: 0 auto 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

/* FAQ */

.faq-item {
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* CONTACT */

.contact {
  text-align: center;
}

.contact p strong {
  font-size: 1.1rem;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 30px;
  font-size: 0.85rem;
  opacity: 0.6;
  border-top: 1px solid #222;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.4rem;
  }

  section {
    padding: 70px 8%;
  }
}
