

.playfair { 
font-family: 'Playfair Display', Georgia, serif; 
}

.container, .services-container .service-wrap, .success-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


/*BUTTONS*/
.btn-primary-custom {
  background-color: #13286b;
  color: #ffffff;
  padding: 8px 20px; 
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 8px;
  font-size: 0.9rem; 
}

.btn-primary-custom:hover {
    background-color: #558ac8;
    color: white;
}

.btn-primary {
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 99, 214, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/*Navbar Overrides*/
.navbar {
  background-color: rgba(0,0,0,0.8) !important;  
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Hero Section*/
.about-hero {
  padding: 40px 0;
  margin-top: 40px;  /* space below fixed navbar */
}

.about-hero.container {
  max-width: none !important;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;     /* how wide you want it */
  height: 400px;         /* fixed tall "banner" look */
  margin: 0 auto 20px;
  border-radius: 20px;
  overflow: hidden;      /* crop the image edges */
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* makes image zoom/crop instead of stretch */
  display: block;
}

.about-title-overlay {
  position: absolute;
  top: 50%;             /* center vertically */
  left: 50%;            /* center horizontally */
  transform: translate(-50%, -50%); /* true center */
  text-align: center;
  color: #fff;          /* make text white */
  text-shadow: 0 2px 6px rgba(0,0,0,.9); /* better contrast */
  padding: 0 15px;      /* some padding for small screens */
}

.about-title-overlay h1 {
    color: white;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 4rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0,0,0,0.7);
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Section header styles */
.section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(1.75rem, 2.6vw, 2.25rem);
    font-weight: 700;
    color: #1e2931;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: #7a7a7a;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin-bottom: 1rem;
  opacity: 0.95;
  font-weight: 300;
}

/* Why Choose Us Section */
.why-choose {
    background: transparent;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 1rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Default (desktop) – keep the 3-up layout */
@media (min-width: 993px) {
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

/* Tablet & down – force one line with horizontal scroll if needed */
@media (max-width: 992px) {
  .feature-grid {
    display: flex;
    flex-wrap: nowrap;         /* keep in one line */
    gap: 1.25rem;
    overflow-x: auto;          /* allow scroll when tight */
    -webkit-overflow-scrolling: touch;
    padding-bottom: .5rem;     /* room for scrollbar */
    scroll-snap-type: x mandatory;
  }

  .feature-item {
    flex: 0 0 280px;           /* card width; tweak to fit */
    scroll-snap-align: start;
    padding: 1.25rem;
    text-align: center;
  }

  .feature-icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .feature-item h4 { font-size: 1.2rem; margin-bottom: .5rem; }
  .feature-item p  { font-size: .95rem; line-height: 1.45; }
}


/* Section Styles */
.services-section {
  padding: 10px 16px;
}

.services-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-container .section-header {
  text-align: center;
  margin-bottom: 24px;
}

.services-container .section-title {
  font-size: 2.25rem;
  margin-bottom: .5rem;
}

.services-container .section-subtitle {
  font-size: 1.05rem;
  color: #666;
}

/* Service wrap */
.service-wrap {
  padding: 16px 8px 6px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 20px;
  padding: clamp(1.5rem, 3.2vw, 3rem) clamp(1.25rem, 2.2vw, 2rem);
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  height: 100%;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}


.service-icon {
  width: clamp(70px, 10vw, 100px);
  height: clamp(70px, 10vw, 100px);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  margin: 0 auto 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 2;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: #7a7a7a;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

#servicesCarousel {
  position: relative;
}

#servicesCarousel .carousel-indicators {
  position: static;
  margin-top: 12px;
  z-index: 6;
}

#servicesCarousel .carousel-indicators [data-bs-target] {
  width: 10px; 
  height: 10px; 
  margin: 0 5px;
  border-radius: 50%;
  background-color: #1e2931;
  opacity: .4;
  border: none;
  margin: 0 6px;
}

#servicesCarousel .carousel-indicators .active {
  opacity: 1;
}

/* Make controls prominent and clickable */
#servicesCarousel .carousel-control-prev,
#servicesCarousel .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 1;
  z-index: 5;
}

#servicesCarousel .carousel-control-prev-icon,
#servicesCarousel .carousel-control-next-icon {
  filter: invert(1) drop-shadow(0 0 4px rgba(0,0,0,.6));
}

#servicesCarousel .carousel-item {
  padding: 0 6px; 
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .services-section { padding: 16px; }

  .services-container .section-title { font-size: 2rem; }
  .services-container .section-subtitle { font-size: 1rem; }

  .service-card { padding: 1.6rem 1.2rem; }
  .service-icon {
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .service-card h3 { font-size: 1.35rem; }
  .service-card p  { font-size: 0.98rem; line-height: 1.6; }
}

/* Mobile (≤ 576px): 1-up layout, tighter spacing, smaller controls */
@media (max-width: 576px) {
  .services-section { padding: 10px 12px; }

  .services-container { padding: 16px 0; min-height: auto; }

  .services-container .section-title { font-size: 1.65rem; }
  .services-container .section-subtitle {
    font-size: .95rem;
    max-width: 90%;
  }

  .service-wrap { padding: 12px 0 0; }
  .service-card { padding: 1.25rem 1rem; }
  .service-icon {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
    margin-bottom: .75rem;
  }
  .service-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
  .service-card p  { font-size: .94rem; line-height: 1.55; }

  /* Carousel controls smaller and closer in */
  #servicesCarousel .carousel-control-prev,
  #servicesCarousel .carousel-control-next {
    width: 36px;
    height: 36px;
  }

  /* Dots a bit smaller and spaced */
  #servicesCarousel .carousel-indicators [data-bs-target] {
    width: 8px; height: 8px; margin: 0 4px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .btn-wedding-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .section {
        padding: 2.5rem 0;
    }
    .services-section { padding: 10px 12px; }
    .service-wrap { padding: 10px 6px; }
    .services-container { padding: 16px 12px; }

    .service-card{
        padding: 2rem 1.5rem;
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item iframe {
  width: 100%;
  height: auto;         
  display: block;
  aspect-ratio: 16 / 10;  
}

@supports not (aspect-ratio: 16 / 10) {
  .gallery-item iframe { height: 56.25vw; max-height: 400px; } /* fallback */
}

.gallery-item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-grid,
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 3rem);
}

/*CTA Section*/
.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-item {
    padding: 1rem;
}