:root {
  --primary: #000;        /* Black background */
  --secondary: #e09638;  /* Gold accent */
  --text-light: #fff;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-carousel .carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-carousel .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--secondary);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero-carousel .carousel-caption h1 {
  font-size: 3rem;
  font-family: 'Cinzel', serif;
  margin-bottom: 15px;
}

.hero-carousel .carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-custom {
  background: linear-gradient(45deg, var(--secondary), #c77d28);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.btn-custom:hover {
  background: linear-gradient(45deg, #c77d28, var(--secondary));
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(224,150,56,0.6);
}

/* ===== ABOUT SECTION ===== */
/* ===== About Section ===== */
.about-section {
  padding: 100px 20px;
  text-align: center;
  background: black; /* Soft ivory for luxury feel */
  color: #333;
  font-family: 'Cinzel', serif; /* Elegant serif font */
}

.about-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #e09638; /* Gold accent for headings */
  font-weight: 700;
  letter-spacing: 1px;
}

.about-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
}

/* Optional: subtle underline decoration under heading */
.about-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 15px auto 0;
  background: #e09638;
  border-radius: 2px;
}

/* Responsive */
@media(max-width:768px) {
  .about-section h2 {
    font-size: 2.2rem;
  }

  .about-section p {
    font-size: 1rem;
    max-width: 90%;
  }
}


/* ===== EVENTS & OCCASIONS ===== */
.events-section {
  padding: 80px 20px;
  text-align: center;
  background: #000;
  color: var(--secondary);
}

.events-section h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.event-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.event-card {
  background: #111;
  color: var(--secondary);
  padding: 40px 30px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.event-card:hover {
  background: #222;
  box-shadow: 0 0 25px var(--secondary);
  transform: translateY(-5px);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 20px;
  text-align: center;
  background: #111;
  color: var(--secondary);
}

.testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.testimonials-section p {
  font-size: 1.2rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-section h5 {
  margin-top: 10px;
  font-weight: 600;
}

/* Remove carousel controls */
#premiumCarousel .carousel-control-prev,
#premiumCarousel .carousel-control-next,
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .hero-carousel .carousel-caption h1 {
    font-size: 2rem;
  }

  .hero-carousel .carousel-caption p {
    font-size: 1rem;
  }

  .event-cards {
    flex-direction: column;
  }

  .event-card {
    width: 80%;
    margin: 0 auto;
  }
}
