/**
* Template Name: Wedding In Sicily Taormina
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: TV62WEB
*/

/*--------------------------------------------------------------
# Global Typography & Editorial Luxury 2.0 Variables
--------------------------------------------------------------*/
:root {
  /* Fonts - Keeping Marcellus for that Roman/Vogue elegance */
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Marcellus", serif;
  --nav-font: "Marcellus", serif;
  
  /* Editorial Luxury 2.0 Font Specs */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Montserrat', sans-serif;

  /* 1. Backgrounds & Surfaces */
  --background-color: #fdfbf7;
  --surface-color: #ffffff;
  --surface-muted: #f4f1ea;

  /* 2. Typography Colors */
  --heading-color: #111111;
  --default-color: #2d2d2d;
  --text-muted: #6e6e6e;

  /* 3. Branding (The Signature Gold Restored) */
  --accent-color: #cda45e;
  --accent-hover: #e5d1ae; /* Lightens to Champagne on hover for 'glint' effect */
  --accent-light: #f7f0e3;

  /* 4. UI Elements */
  --contrast-color: #ffffff;
  --border-color: #e0ddd5;

  /* 5. Nav Menu Colors */
  --nav-color: #1a1a1a;
  --nav-hover-color: #cda45e;
  --nav-mobile-background-color: #fdfbf7;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #1a1a1a;
  --nav-dropdown-hover-color: #cda45e;
}

/* --- Global Reset & Base --- */
body {
  background-color: var(--background-color);
  color: var(--default-color);
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

/* --- Nav Menu --- */
.nav-link {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em; /* Crucial for luxury feel */
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--nav-color);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--nav-hover-color);
}

/* --- Luxury Buttons --- */
.btn-glamour {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 24px;
  border: none;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-glamour:hover {
  background-color: var(--accent-hover);
  letter-spacing: 0.25em; /* Slight expansion on hover */
}

/* --- Section Presets --- */
.light-background {
  --background-color: #f5f1ed;
  --surface-color: #ffffff;
  --default-color: #1a1a1a;
  --heading-color: #111111;
  background-color: var(--background-color);
}

.dark-background {
  --background-color: #0f0f0f;
  --default-color: #e0e0e0;
  --heading-color: #ffffff;
  --accent-color: #cda45e;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff; 
  background-color: var(--background-color);
  color: var(--default-color);
}

/* --- Editorial Utility Classes --- */
.italic-accent {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-color);
}

.gold-divider {
  height: 1px;
  width: 80px;
  background-color: var(--accent-color);
  margin: 20px auto;
}

.caps-muted {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  font-size: 0.7rem;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000 !important;
  width: 100%;
  padding: 15px 0;
  background-color: #ffffff !important;
  background: linear-gradient(to right, transparent, #cda45e, transparent) bottom / 80% 1px no-repeat;
  transition: all 0.5s ease-in-out;
}

/* Logo transition */
.header .logo img {
  max-height: 90px;
  transition: 0.3s;
}

/* Scrolled State */
.scrolled .header {
  padding: 8px 0;
  /* Slightly transparent white for luxury glass effect */
  background-color: rgba(255, 255, 255, 0.98) !important;
  /* Keeps the line identical to the top state */
  background: linear-gradient(to right, transparent, #cda45e, transparent) bottom / 80% 1px no-repeat;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.scrolled .header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu > ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .navmenu li {
    position: relative;
    list-style: none;
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    padding: 18px 15px;
    color: var(--nav-color);
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
  }

  /* Desktop Navigation Typography */
  .navmenu ul li a {
    font-weight: 500;
    letter-spacing: 1.5px !important;
    transition: letter-spacing 0.3s ease;
  }

  .navmenu li:hover > a,
  .navmenu .active {
    color: var(--nav-hover-color);
    letter-spacing: 3px !important;
  }

  /* Desktop Submenu - Opens on Hover */
  .navmenu ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    display: block;
    min-width: 200px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: #ffffff;
    border: 1.5px solid #cda45e;
    border-radius: 8px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.8s ease; /* Slowed */
  }

  .navmenu li:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  .navmenu ul ul li {
    width: 100%;
    list-style: none;
  }

  .navmenu ul ul a {
    display: block;
    padding: 10px 20px;
    color: #1a1a1a !important;
    font-size: 15px;
  }

  .navmenu ul ul a:hover {
    color: var(--nav-hover-color) !important;
    background: rgba(205, 164, 94, 0.1);
  }

  /* Desktop Contact Button */
  .nav-contact-btn {
    margin-left: 20px;
    padding: 6px 18px !important;
    color: #1a1a1a !important;
    background: transparent;
    border: 1px solid #c5a059 !important;
    border-radius: 2px;
    font-size: 15px !important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px !important;
    transition: all 0.3s ease !important;
  }

  .nav-contact-btn:hover {
    color: #ffffff !important;
    background: #c5a059 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
  }

  .mobile-nav-toggle {
    display: none !important;
  }
}

/* Navmenu - Mobile (Floating White Dropdown) */
@media (max-width: 1199px) {
  html,
  body {
    position: relative;
    width: 100%;
    overflow-x: hidden !important;
  }

  /* 1. HAMBURGER TOGGLE */
  .mobile-nav-toggle {
    position: relative !important;
    z-index: 1003;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #1a1a1a !important;
    font-size: 32px !important;
    background: #ffffff;
    border: 1.5px solid #cda45e !important;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.4s ease;
  }

  /* 2. THE MAIN FLOATING LIST */
  #navmenu ul {
    position: absolute;
    top: 120px;
    left: 15px;
    right: 15px;
    z-index: 1000;
    display: block !important;
    width: auto;
    max-height: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #ffffff !important;
    border: 1.5px solid #cda45e;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    overflow: hidden;
    transition: max-height 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease; /* Slowed */
  }

  .mobile-nav-active #navmenu > ul {
    max-height: 90vh !important;
    padding: 10px 0 !important;
    opacity: 1 !important;
  }

  /* 3. SUBMENUS / CEREMONIES */
  .navmenu .dropdown ul,
  #navmenu ul ul {
    position: static !important;
    display: none !important;
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.03) !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    opacity: 0;
    visibility: visible !important;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
  }

  /* Triggers the sub-items on Mobile Tap/Focus */
  #navmenu ul li.dropdown:hover > ul,
  #navmenu ul li.dropdown:active > ul,
  #navmenu ul li.dropdown:focus-within > ul,
  .navmenu .dropdown.dropdown-active > ul,
  .navmenu .dropdown .dropdown-active > ul {
    display: block !important;
    max-height: none !important;
    padding: 10px 0 !important;
    opacity: 1 !important;
  }

  #navmenu ul li {
    display: block !important;
    width: 100%;
    list-style: none;
  }

  #navmenu ul li a {
    display: block !important;
    padding: 12px 20px !important;
    color: #1a1a1a !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2 !important;
    text-decoration: none;
  }

  /* Specific Indentation for Ceremony items */
  .navmenu .dropdown ul li a {
    padding: 10px 40px !important;
    font-size: 16px !important;
  }

  /* Bottom Gap fix */
  .navmenu .dropdown ul ul {
    padding-bottom: 30px !important;
  }

  /* Chevron rotation */
  #navmenu ul li.dropdown:hover .toggle-dropdown {
    color: #cda45e;
    transform: rotate(180deg);
  }

  #navmenu a:hover,
  #navmenu .active {
    color: #cda45e !important;
    background: rgba(205, 164, 94, 0.1);
  }

  /* Mobile Contact Button */
  .nav-contact-btn {
    display: inline-block;
    margin: 20px !important;
    border: 1px solid #cda45e;
    text-align: center;
  }
}

@media (max-width: 991px) {
  #navmenu .dropdown-menu {
    display: none;
  }
  #navmenu .dropdown.dropdown-active > .dropdown-menu {
    display: block;
  }
}

/* When mobile nav is open, disable all touch/click interactions on the hero/carousel */
body.mobile-nav-active .hero,
body.mobile-nav-active .carousel,
body.mobile-nav-active #hero-carousel {
  user-select: none !important;
  touch-action: none !important;
  pointer-events: none !important;
}

/* Ensure the navigation menu retains full clickability */
body.mobile-nav-active #navmenu,
body.mobile-nav-active .mobile-nav-toggle {
  pointer-events: auto !important;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
footer {
  position: relative;
  background-color: #fff !important; /* Force deep obsidian */
  color: var(--default-color);
  font-size: 1rem;
}

.footer .footer-top {
  padding-top: 60px;
  padding-bottom: 20px;
  background-color: color-mix(in srgb, var(--background-color), white 2%);
}

/* --- Typography & Headlines --- */
.footer h4 {
  position: relative;
  display: inline-block !important;
  padding-bottom: 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-align: center; /* Ensures text itself is centered if it spans multiple lines */
  letter-spacing: 2px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%; /* Move starting point to middle of text */
  display: block;
  width: 50%; /* Width of your underline */
  height: 1px;
  background: var(--accent-color);
  transform: translateX(-50%); /* Pull back by half of the underline's width */
}

/* --- Shared Link & List Styles --- */
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer ul li {
  padding: 8px 0;
}

.footer a {
  color: var(--default-color);
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--accent-color);
  letter-spacing: 2px;
}

.footer .footer-links ul a:hover {
  letter-spacing: 2px;
  transform: translateX(5px); /* Subtle slide effect for navigation */
}

/* --- Contact & About --- */
address {
  margin-bottom: 0;
  font-style: normal;
}

.footer .footer-contact p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--accent-color);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-contact .d-flex {
  margin-bottom: 15px;
}

.footer-contact address {
  color: var(--default-color);
  font-style: normal;
}

.designer-info h5 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.designer-info h5 strong {
  margin-left: 4px;
  color: #ffffff;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 2px;
}

/* --- Copyright & Legal --- */
.footer .copyright {
  margin-top: 10px !important; 
  padding: 30px 0 10px;
  background: #0f0f0f !important; /* "background" covers both color and image */
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(205, 164, 94, 0.3); /* Increased opacity for visibility */
  font-size: 14px;
  letter-spacing: 1.3px;
}

/* --- Legal Links Section --- */
.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 1;
}

.footer-legal-links a {
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px !important;
}

.footer-legal-links a:hover {
  letter-spacing: 2px !important;
}

.footer-legal-links a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 11px;
  margin: 0 18px;
  background-color: var(--default-color);
  opacity: 0.5;
}

/* --- Mobile Alignment --- */
@media (max-width: 991px) {
  .footer .footer-links,
  .footer .footer-about {
    text-align: left;
  }

  /* Force the H4 to only be as wide as its text so the underline centers correctly */
  .footer h4 {
    display: table !important; /* Works like fit-content but with better old browser support */
    margin: 0 0 15px 0;        /* Keeps headline on the left */
    text-align: left;
  }

  .footer h4::after {
    left: 50%;                 /* Move to center of the text block */
    width: 50%;                /* Adjust width as preferred */
    transform: translateX(-50%); /* Offset to perfectly center */
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #cda45e;
  border: 1px solid #cda45e;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.scroll-top i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #fff;
  color: #1a1a1a;
  border: 1px solid #cda45e;
}

.scroll-top:hover i {
  color: #1a1a1a;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  position: relative;
  padding: 80px 0;
  background-color: var(--background-color);
  background-image: url(''); /* Ready for your background asset link */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--default-color);
  text-align: center;
}

.page-title:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
}

.page-title h1 {
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: -60px; /* Works for all screen sizes */
  overflow: clip;
  transform: translateZ(0);

  /* This fixes the "pixels" / blurry look after the jump */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

section {
  transition: background-color 0.8s ease-in-out;
}

@media (max-width: 1199px) {
  section,
  .section {
    /* Only put things here if they NEED to change on mobile */
  }
}

/* Ensure the Section Title divider is perfectly visible on Dark Backgrounds */
.dark-background .gold-divider {
  background: var(--accent-color);
  box-shadow: 0 0 10px rgba(205, 164, 94, 0.3); /* Gives gold a soft glow on black */
}

/*--------------------------------------------------------------
# Section Titles & Services
--------------------------------------------------------------*/

/* Desktop Styles */
.section-title {
  position: relative;
  padding-bottom: 30px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 10px;
  font-size: 2.5rem !important;
  font-weight: 400;
  letter-spacing: 1px;
}

.section-title p {
  margin-bottom: 0;
  color: #666;
  font-weight: 300;
  font-size: 1.25rem;
  font-family: var(--heading-font);
  font-style: italic;
}

/* Mobile Optimizations (Combined Media Query) */
@media screen and (max-width: 768px) {

  /* Global Section Title Mobile Fixes */
  .section-title h2 {
    font-size: 2rem !important;
  }

  .section-title p {
    padding: 0 15px;
    font-size: 1rem !important; /* Slightly smaller for better balance */
  }

  /* Services Specific Mobile Fixes */
  #services {
    padding: 60px 0 !important;
    scroll-margin-top: 70px !important;
  }

  .services .section-title {
    margin-bottom: 40px;
  }

  /* Service Card Enhancements */
  .service-item {
    margin-bottom: 15px;
    padding: 30px 20px !important;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  }

  .service-item .icon {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .service-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .service-item p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
  }
}

/*--------------------------------------------------------------
# Hero Section - Cinematic Luxury Carousel
--------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000;
}

.hero .carousel {
  width: 100%;
  height: 100vh;
  min-height: 100svh;
}

.hero .carousel-inner {
  height: 100%;
}

/* 1. Cinematic Crossfade Transition */
.carousel-fade .carousel-item {
  height: 100vh;
  min-height: 100svh;
  opacity: 0;
  transition: opacity 2.0s ease-in-out !important;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* 2. Ken Burns Effect (Slow Image Drift) */
.hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
  transform: scale(1.15);
  transition: transform 7s linear;
}

.hero .carousel-item.active img {
  transform: scale(1);
}

/* 3. Luxury Text Overlay Base */
.hero .carousel-container {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 15%;
  text-align: center;
}

/* Base state for animated elements */
.hero h2,
.hero p,
.hero .btn-portfolio {
  opacity: 0;
  animation-fill-mode: forwards !important;
}

/* --- CINEMATIC DELAYS & UNIQUE EFFECTS --- */

/* Slide 1: Enchanting Ceremonies (Mixed) */
.carousel-item.active:nth-child(1) h2 { animation: fadeInDown 1.0s forwards 1.5s; }
.carousel-item.active:nth-child(1) p  { animation: fadeIn 1.2s forwards 2.0s; } /* Soft reveal */
.carousel-item.active:nth-child(1) .btn-portfolio { animation: zoomIn 0.8s forwards 2.7s; } /* Pop effect */

/* Slide 2: Testimonials (Elegant Slide) */
.carousel-item.active:nth-child(2) h2 { animation: fadeInLeft 1.0s forwards 1.5s; }
.carousel-item.active:nth-child(2) p  { animation: fadeInRight 1.0s forwards 2.0s; } /* Opposing slide in */
.carousel-item.active:nth-child(2) .btn-portfolio { animation: fadeIn 1.0s forwards 2.7s; }

/* Slide 3: Taormina Focus (Expansive) */
.carousel-item.active:nth-child(3) h2 { animation: zoomIn 1.2s forwards 1.5s; }
.carousel-item.active:nth-child(3) p  { animation: fadeInDown 1.0s forwards 2.0s; } /* Dropping into view */
.carousel-item.active:nth-child(3) .btn-portfolio { animation: expand 1.2s forwards 2.7s; } /* Letter spacing grow */

/* Slide 4: Architectural Estates (Structured) */
.carousel-item.active:nth-child(4) h2 { animation: expand 1.5s forwards 1.5s; }
.carousel-item.active:nth-child(4) p  { animation: blurClear 1.5s forwards 2.0s; } /* Artistic focus */
.carousel-item.active:nth-child(4) .btn-portfolio { animation: fadeInUp 1.0s forwards 2.7s; } /* Rising up */

/* Slide 5: Artistic/Iconic Finish (Atmospheric) */
.carousel-item.active:nth-child(5) h2 { animation: blurClear 2.0s forwards 1.5s; }
.carousel-item.active:nth-child(5) p  { animation: fadeIn 1.5s forwards 2.0s; }
.carousel-item.active:nth-child(5) .btn-portfolio { animation: zoomIn 1.0s forwards 2.7s; }

/* --- ANIMATION KEYFRAMES --- */
@keyframes fadeIn { to { opacity: 1; } }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes expand {
  from { opacity: 0; letter-spacing: -5px; }
  to { opacity: 1; letter-spacing: 6px; }
}

@keyframes blurClear {
  from { opacity: 0; filter: blur(20px); }
  to { opacity: 1; filter: blur(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translate3d(20px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Typography Styles */
.hero h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  letter-spacing: 1px;
}

.btn-portfolio {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  color: #1a1a1a;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background: #cda45e;
  border: 1px solid #cda45e;
  box-sizing: border-box; /* <-- PREVENTS HOVER WIDTH JUMPS */
  transition: all 0.4s ease;
}

.btn-portfolio:hover {
  color: #fff;
  background: transparent;
  border: 1px solid #cda45e;
  letter-spacing: 4px;
  transform: translateY(-3px);
}

/* 4. Controls & Indicators */
.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: 0.3s;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #cda45e;
  border-color: #cda45e;
}

.hero .carousel-indicators [data-bs-target] {
  width: 35px;
  height: 2px;
  margin: 0 6px;
  background-color: #ffffff;
  opacity: 0.3;
  transition: 0.4s;
}

.hero .carousel-indicators .active {
  background-color: #cda45e;
  opacity: 1;
}

/* 5. Mobile Refinements */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .carousel-container {
    padding: 0 10%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

/* 4. Responsive Mobile Optimization */
@media (max-width: 767px) {
  .hero .carousel,
  .carousel-fade .carousel-item {
    height: 90vh !important; /* Limits the vertical length on mobile */
    min-height: 450px !important; /* Ensures it doesn't get too squished */
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 0;
  background-color: var(--background-color);
}

.services .section-title {
  margin-bottom: 40px;
  text-align: center;
}

.services .section-title h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.intro-luxury {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  color: #666;
  font-size: 1.1rem;
  font-family: 'Georgia', serif;
  font-style: italic;
  line-height: 1.8;
  text-align: center;
}

/* Service Card Styling */
.services .service-item {
  height: 100%;
  padding: 50px 30px;
  background: var(--surface-color);
  border: 1px solid #f0f0f0;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
}

/* Luxury Hover Effect */
.services .service-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.services .service-item .icon i {
  display: inline-block;
  margin-bottom: 25px;
  color: #cda45e;
  font-size: 40px;
}

.services .service-item h3 {
  margin-bottom: 15px;
  color: var(--heading-color);
  font-size: 1.25rem;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services .service-item p {
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.7;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .services .section-title h2 {
    font-size: 2rem !important;
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  padding: 0;
  background-color: #fff;
}

/* This is the "Anchor" for the badge */
.about-img-container {
  position: relative;
  display: block; /* or inline-block */
  width: fit-content; /* Ensures the container is exactly the width of the image */
}

/* The Badge Positioned Top-Left */
.about-badge {
  position: absolute; 
  top: 30px;          
  right: -30px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 80px;
  color: #fff;
  background-color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Ensure the image doesn't have weird spacing */
.about-image {
  display: block;
  max-width: 100%;
  height: auto;
}

/* "Est." Text */
.badge-est {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px !important;
  line-height: 1;
  letter-spacing: 2px;
}

/* Horizontal Divider Line */
.badge-divider {
  width: 60px !important;
  margin: 8px 0;
  opacity: 1;
  border: 1px solid #cda45e !important;
  border-top: 0.75px solid rgba(255, 255, 255, 0.6) !important;
}

/* "2012" Year Text */
.badge-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700 !important;
  line-height: 1;
}

/* 1. TYPOGRAPHY */
#about .content h3 {
  margin-bottom: 20px;
  color: #cda45e;
  font-size: 2rem !important;
  font-family: var(--heading-font);
  font-weight: 400;
  text-transform: uppercase;
}

#about .about-quote {
  margin-bottom: 20px;
  color: var(--default-color);
  font-size: 18px;
}

/* 2. LIST STYLING */
#about .usp-list {
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

#about .usp-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
}

#about .usp-list i {
  margin-right: 15px;
  color: #cda45e;
  font-size: 1.5rem;
}

/* 3. IMAGE STYLING */
#about .about-image {
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 4. SIGNATURE & CTA */
.signature-section {
  margin-top: 40px;
}

.dream-text {
  margin-bottom: 30px;
  color: #cda45e !important;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  text-align: center;
}

.signature-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.sig-images {
  display: flex;
  flex-direction: row; /* Explicitly force horizontal layout */
  align-items: center;
  gap: 8px;
  width: max-content; /* Ensures the container only takes up as much space as needed */
}

.sig-icon {
  display: block; /* Prevents the image from acting like text-baseline */
  width: 20px;
  height: auto;
}

.sig-name-text {
  display: inline-block;
  margin: 0; /* Removes default paragraph spacing that pushes it down */
  line-height: 1;
  white-space: nowrap; /* Keeps the name on a single line */
}

/* Glamourous Button Replacement */
.btn-new {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 12px 24px;
  color: #1a1a1a;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  background: transparent;
  border: 1px solid #cda45e;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-new::before {
  content: '';
  margin-right: 10px;
  color: #cda45e;
}

.btn-new:hover {
  color: #cda45e;
  border-color: #111;
  letter-spacing: 4px;
  background: transparent;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: right;
  width: 100%;
  margin-top: 20px;
}

/* 5. MOBILE OPTIMIZATIONS (CONSOLIDATED) */
@media (max-width: 768px) {
  #about {
    padding: 60px 0 !important;
    scroll-margin-top: 70px !important;
  }

  .about-img-container {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  #about .content h3,
  #about .about-quote,
  #about .content p {
    text-align: left;
  }

  #about .dream-text {
    margin-bottom: 15px;
    color: var(--default-color);
    font-style: italic;
    text-align: center !important;
  }

  #about .content h3 {
    font-size: 1.8rem;
  }

  .usp-list li {
    align-items: flex-start !important;
    font-size: 14px;
  }

  .signature-wrapper {
    justify-content: center;
  }

  .sig-icon {
    width: 20px;
  }

  .cta-container {
    text-align: center;
  }

  .btn-new {
    width: 80%;
    padding: 14px 0;
    font-size: 14px;
  }

  .about-badge {
    /* Position Fixes */
    top: auto !important;
    right: 0px !important; /* Flush to the right to prevent horizontal scrolling */
    bottom: 25px !important; /* Spacing from bottom of image */
    left: auto !important;
    
    /* Size adjustments for mobile readability */
    width: 100px;
    height: 70px;
    
    /* Optional: subtle border to separate from dark photo areas */
    border: 1px solid rgba(205, 164, 94, 0.3); /* Soft Gold */
  }

  .badge-est {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .badge-year {
    font-size: 16px;
  }

  .badge-divider {
    width: 35px !important;
    margin: 4px 0;
  }
}

/*--------------------------------------------------------------
# Our Story Section
--------------------------------------------------------------*/
#story {
  padding: 0;
}

/* Image & Badge */
.about-image {
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

/* The Badge Container */
.experience-badge {
  position: absolute;
  top: -20px; /* Distance from top edge */
  left: 0px; /* Distance from left edge */
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  color: #fff;
  background-color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* "Est." Text */
.badge-est {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 2px;
}

/* Horizontal Divider Line */
.badge-divider {
  width: 60px !important;
  margin: 8px 0;
  opacity: 1;
  border: 1px solid #cda45e !important;
  border-top: 0.75px solid rgba(255, 255, 255, 0.6) !important;
}

/* "2012" Year Text */
.badge-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

/* Typography */
.since-tag {
  display: block;
  margin-bottom: 8px; /* Space before the H2 */
  color: var(--accent-color); /* Use your Gold */
  font-size: 1rem; /* 14px */
  font-family: var(--font-secondary); /* Montserrat */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em; /* Adds that "high-end" airiness */
}

.content-title.title-underline {
  position: relative;
  display: table; /* Shrinks width to text only for centering underline */
  padding-bottom: 15px;
  margin-bottom: 30px;
  color: #1a1a1a;
  font-size: 2.5rem;
  font-family: var(--heading-font);
  font-weight: 400;
}

.content-title.title-underline::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: #cda45e;
  transform: translateX(-50%);
}

/* Narrative & Origin Box */
.about-quote {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
}

.tony {
  margin-bottom: 20px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.origin-story-box {
  position: relative;
  margin: 35px 0;
  /* Increase top/bottom padding to 60px to create the gap */
  padding: 60px 40px;
  outline: 4px solid #fff;
  outline-offset: -10px;
  background: #fff;
  border: 1px solid #cda45e;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.origin-story-box p {
  margin: 0;
  color: #333;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  text-align: left;
}

/* Icons stay absolute but the box padding protects the text */
.quote-icon-left,
.quote-icon-right {
  color: #cda45e;
  font-size: 2rem;
  opacity: 0.5;
  position: absolute;
}

/* Position icons inside the extra padding space */
.quote-icon-left {
  top: 15px;
  left: 20px;
}

.quote-icon-right {
  bottom: 15px;
  right: 20px;
}

.personal-service-list {
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.personal-service-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.personal-service-list i {
  color: #cda45e;
  margin-right: 10px;
}

/* SIGNATURE & ROW FIX */
.signature-section {
  margin-top: 40px;
}

.signature-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.sig-images {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px;
}

.sig-icon {
  display: block;
  width: 25px !important;
  height: auto !important;
}

.sig-name-text {
  margin: 0 !important;
  font-size: 1.5rem !important;
  font-family: 'Alex Brush', cursive;
  line-height: 1 !important;
  white-space: nowrap !important;
}

/* EMAIL BUTTON */
.cta-wrapper {
  display: flex;
  justify-content: flex-end;
}

.btn-wedding-mail {
  display: inline-block;
  padding: 12px 24px;
  color: #1a1a1a;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  border: 1px solid #cda45e;
  transition: 0.4s;
}

.btn-wedding-mail:hover {
  color: #fff;
  background: #cda45e;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
  .experience-badge {
    top: 0px;
    left: 10px;
    width: 80px;
    height: 80px;
  }

  .badge-year {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# MOBILE OPTIMIZATIONS (Tablet & Mobile)
--------------------------------------------------------------*/
@media (max-width: 768px) {
  #story {
    padding: 60px 0;
  }
	  
  #story .content-title.title-underline {
    display: table !important;    /* Box shrinks to fit the text width */
    margin-right: auto !important;
    margin-left: 0 !important;    /* Keeps the box on the left */
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-size: 1.75rem !important;
    text-align: left !important;  /* Text stays left */
  }

  #story .content-title.title-underline::after {
    left: 50% !important;           /* Centers relative to the text width */
    width: 60px !important;
    transform: translateX(-50%) !important; /* Perfect center alignment */
  }

  /* 3. Tags & Labels */
  .since-tag {
    text-align: left;
  }

  /* 4. The Experience Badge */
  .experience-badge {
    position: absolute;
    top: -10px;
    left: 5px; 
    width: 80px;
    height: 80px;
    font-size: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }
}

/*--------------------------------------------------------------
# Legalities Section
--------------------------------------------------------------*/
#legalities {
  padding: 0;
  background-color: #fafafa;
}

.intro-luxury {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  color: #666;
  font-size: 1.1rem;
  font-family: 'Georgia', serif;
  font-style: italic;
  line-height: 1.8;
  text-align: center;
}

/* 1. CARD STYLING */
.legal-card {
  height: 100%;
  padding: 50px 30px;
  background: #fff;
  border: 1px solid #eee;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card {
  border: 1px solid #cda45e;
  box-shadow: 0 15px 40px rgba(205, 164, 94, 0.1);
}

.legal-card:hover {
  transform: translateY(-10px);
}

/* 2. TYPOGRAPHY & ICONS */
.legal-icon {
  margin-bottom: 20px;
  color: #cda45e;
  font-size: 2.5rem;
}

.legal-card h3 {
  margin-bottom: 20px;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-family: var(--heading-font);
  letter-spacing: 1px;
}

.legal-card p {
  margin-bottom: 25px;
  color: #666;
  font-size: 0.95rem;
  font-family: 'Georgia', serif;
  font-style: italic;
  line-height: 1.7;
}

/* 3. LIST STYLING */
.legal-list {
  display: inline-block;
  padding: 0;
  list-style: none;
  text-align: left;
}

.legal-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #888;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #cda45e;
}

/* 4. MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
  #legalities {
    padding: 60px 0 !important;
    scroll-margin-top: 70px !important;
  }

  h2.content-title.title-underline {
    display: table !important; /* Required to keep the underline centered under the text */
    width: auto !important;
    margin: 0 auto 25px auto !important; /* Centers the 'table' block on the page */
    font-size: 1.75rem !important;
    text-align: center !important;
  }

  /* Ensures the gold underline follows the center alignment */
  h2.content-title.title-underline::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .legal-card {
    margin-bottom: 20px;
    padding: 30px 20px !important;
    border-radius: 12px;
  }

  .legal-card h3 {
    font-size: 20px;
    text-transform: uppercase;
  }

  .legal-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .legal-list li {
    padding-left: 25px;
    font-size: 13px;
  }

  /* Switch dash to check icon on mobile for better visibility */
  .legal-list li::before {
    content: "\F272";
    font-family: "bootstrap-icons";
    font-size: 14px;
  }

  .legalities .text-center p {
    padding: 0 20px;
    color: #888;
    font-size: 0.9rem !important;
  }
}

/*--------------------------------------------------------------
# The Ceremony Section
--------------------------------------------------------------*/
.ceremony {
  padding: 0;
  overflow: hidden;
}

/* --- Left Side: Editorial Typography --- */
.since-tag {
  display: block;
  margin-bottom: 8px; /* Space before the H2 */
  color: #cda45e; /* Use your Gold */
  font-size: 1rem; /* 14px */
  font-family: var(--font-secondary); /* Montserrat */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em; /* Adds that "high-end" airiness */
}

.content-title {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: #1a1a1a;
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

.title-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 2px;
  background-color: #cda45e;
}

.section-subtitle-black {
  margin-bottom: 40px;
  color: #444;
  font-size: 1.2rem !important;
  font-family: 'Open Sans', sans-serif !important;
  font-style: italic;
  line-height: 1.8;
}

.btn-cta {
  display: table; /* Shrink-wraps to the text width */
  margin: 0 auto; /* Centers horizontally */
  padding: 12px 24px;
  color: #1a1a1a;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  border: 1px solid #cda45e;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cta:hover {
  color: #fff;
  background: #cda45e;
  letter-spacing: 4px;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(205, 164, 94, 0.2);
}

/* --- Right Side: Image Grid --- */
.ceremony-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ceremony-box {
  position: relative;
  display: block;
  height: 300px; /* Consistent height for grid items */
  overflow: hidden;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Forces the 5th image to cover full width but keep same height */
.ceremony-box.full-width {
  grid-column: 1 / -1 !important;
  height: 300px;
}

.ceremony-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.8s ease, filter 0.4s ease;
}

.box-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 25px;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

/* --- Desktop Hover State --- */
.ceremony-box:hover img {
  filter: brightness(0.8);
  transform: scale(1.1);
}

.ceremony-box:hover .box-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

/* Text Containers */
.text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 0px !important;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.first-word {
  color: #cda45e !important;
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.second-word {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

/* Animation Refinement (AOS) */
[data-aos="zoom-in-up"] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- CEREMONY SECTION MOBILE FULL BLOCK --- */
@media (max-width: 991px) {
  #ceremony {
    padding: 60px 0 !important;
  }

  #ceremony .editorial-header {
    text-align: left !important;
  }

  #ceremony .content-title.title-underline,
  #ceremony .editorial-header h2 {
    position: relative;
    display: table !important;
    margin-right: auto !important;
    margin-left: 0 !important;
    padding-bottom: 15px;
    font-size: 1.75rem !important;
    text-align: left !important;
  }

  #ceremony .title-underline::after,
  #ceremony .editorial-header h2::after {
    left: 50% !important;
    width: 60px;
    transform: translateX(-50%) !important;
  }

  #ceremony .section-subtitle-black {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem !important;
    text-align: left !important;
  }

  .ceremony-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    margin-top: 40px !important;
    padding: 0 10px !important;
  }

  .ceremony-box,
  .ceremony-box.full-width {
    grid-column: auto !important;
    height: 250px !important;
    border-radius: 4px !important;
  }

  .btn-cta {
    display: block !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 30px auto 0 auto !important;
    padding: 12px 20px !important;
    text-align: center !important;
    letter-spacing: 2px !important;
  }
}

@media (max-width: 768px) {
  #ceremony .content-title.title-underline,
  #ceremony .editorial-header h2 {
    font-size: 1.75rem !important;
  }
}

/*--------------------------------------------------------------
# Religious Ceremony Section
--------------------------------------------------------------*/
.ceremony-glamour {
  padding: 0;
}

.venue-row {
  align-items: center !important;
  margin-bottom: 80px;
}

/* 1. IMAGE WRAPPERS & ARTISTIC OVERLAYS */
.glamour-img-wrapper {
  position: relative;
  padding: 30px;
}

.glamour-img-wrapper .main-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* Desktop Gold Frames */
.gold-outline,
.gold-outline-right {
  position: absolute;
  top: 10px;
  z-index: 1;
  width: 70%;
  height: 70%;
  border: 1px solid #cda45e;
}

.gold-outline {
  left: 10px;
}

.gold-outline-right {
  right: 10px;
}

/* Base Badge Style */
.church-badge {
  position: absolute;
  right: 20px;
  bottom: 50px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 18px 20px;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
}

/* Targeting the text specifically for the 50% underline */
.church-badge span {
  position: relative;
  display: inline-block; /* Makes span width exactly match text length */
}

.church-badge span::after {
  content: "";
  position: absolute;
  left: 25%;            /* Math: (100% width - 50% line) / 2 = 25% */
  bottom: -8px;         /* Distance between text and underline */
  width: 50%;           /* Exactly half the width of the text */
  height: 1px;
  background-color: #cda45e;
}

/* 2. TYPOGRAPHY (Desktop - Left Aligned) */
.col-lg-5.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.glamour-tag {
  display: block;
  margin-bottom: 10px;
  color: #cda45e;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.glamour-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
  color: #1a1a1a;
  font-size: 2.5rem !important;
  font-family: "Playfair Display", serif;
  line-height: 1.1;
}

.glamour-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 1.5px;
  background-color: #cda45e;
}

.glamour-description p {
  margin-bottom: 20px;
  color: #444;
  font-size: 1rem !important;
  font-family: 'Open Sans', sans-serif !important;
  font-style: italic;
  line-height: 1.8;
}

/* 3. LUXURY BUTTON (Desktop & Global) */
/* First: Center the wrapper that contains the button */
.cta-center-mobile {
  display: flex; /* Enable flex for the wrapper */
  justify-content: center; /* This is what actually centers the button */
  width: 100%; /* Take up full width of the column */
  margin-top: 25px;
}

/* Second: The button style */
.btn-glamour {
  display: inline-block !important;
  padding: 12px 24px !important;
  color: #1a1a1a;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  letter-spacing: 2px;
  background: transparent;
  border: 1px solid #cda45e;
  transition: all 0.4s ease;
}

.btn-glamour:hover {
  color: #fff;
  background: #cda45e;
}

/* 5. VENUE CARD SPECIFIC BADGE */
.venue-card .church-badge {
  display: inline-flex !important;
  right: 15px !important;
  bottom: 15px !important;
  width: auto !important;
  max-width: 80% !important;
  padding: 6px 12px !important;
  font-size: 12px !important;
  white-space: nowrap !important;
}

/* 4. MOBILE OPTIMIZATIONS */
@media (max-width: 991px) {
  /* 1. Reset the parent container padding to be perfectly even */
  .col-lg-5.content.ps-lg-5,
  .col-lg-5.content.pe-lg-5 {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important; /* Tag, Title, and P stay Left */
    padding-right: 20px !important;
    padding-left: 20px !important;
    text-align: left !important;
  }

  /* 2. The Button Wrapper - Negative Margin Fix */
  .cta-center-mobile {
    display: flex !important;
    justify-content: center !important;
    width: calc(100% + 40px) !important; /* Stretch container across the parent padding */
    margin-top: 30px !important;
    margin-left: -19px !important; /* Pull it back to the true visual center */
    padding: 0 !important;
  }

  /* 3. The Button - Forced Center */
  .btn-glamour {
    display: inline-block !important;
    width: 100% !important;
    max-width: auto !important;
    margin: 0 auto !important; /* Browser calculates exact equal side spacing */
    text-align: center !important;
  }

  /* 4. Keeps the gold underline strictly on the left with the text */
  .glamour-title::after {
    left: 0 !important;
    transform: none !important;
  }
}

/* Mobile Adjustments (Max-width 768px) */
@media (max-width: 768px) {
  .venue-card .church-badge {
    right: 10px;
    bottom: 15px;       /* Pushes it closer to the corner on mobile */
    padding: 8px 12px 14px 12px !important;
    font-size: 10px !important;
  }
  
  .church-badge span::after {
    bottom: -5px;       /* Brings underline closer to smaller mobile text */
  }
}

/*--------------------------------------------------------------
# Civil Ceremony Section
--------------------------------------------------------------*/
/* Image Wrapper with Overlap Effect */
.glamour-image-wrapper {
  position: relative;
  z-index: 1;
  padding: 20px;
  overflow: visible;
}

/* Ensure the Cincopa container allows background elements to show */
.cincopa_site_gallery_div {
  position: relative;
  z-index: 2; /* Sits ABOVE the frame */
  background: transparent !important;
}

.main-glamour-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 25px 25px 0px #fdfaf7;
}

.glamour-frame {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0; /* Sits BEHIND the gallery */
  width: 80%;
  height: 80%;
  border: 1px solid #cda45e;
  pointer-events: none;
}

/* Luxury Badge */
.venue-badge-civil {
  position: absolute;
  right: 0px !important;
  bottom: 40px;
  z-index: 5;
  width: 120px;
  padding: 15px;
  color: #fff;
  background: #1a1a1a;
  text-align: center;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.badge-town {
  display: block; /* Ensures it spans the width to allow centering */
  color: inherit;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
}

.badge-divider {
  display: block; /* Confirms it is a block element */
  width: 60px;
  /* Use !important to override Bootstrap's default left-aligned hr margins */
  margin: 6px auto !important;
  opacity: 1;
  border: none;
  border-top: 1.5px solid #cda45e;
}

.badge-region {
  display: block;
  font-weight: 600 !important;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 2px;
}

/* Typography */
.editorial-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
  text-align: left;
}

.glamour-title {
  margin-top: 10px !important;
  margin-bottom: 20px !important;
  color: #1a1a1a;
  font-size: 2.5rem !important;
  font-family: "Playfair Display", serif;
  font-weight: 400 !important;
}

/* Center Title Logic */
h2.glamour-title.title-underline {
  text-align: center;
}

h2.glamour-title.title-underline::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 60px;
  height: 1.5px;
  background-color: #cda45e;
  transform: translateX(-50%);
}

.glamour-intro {
  margin-bottom: 40px;
  color: #444;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif !important;
  font-style: italic;
  line-height: 1.8;
}

/* List with Glamour Stars */
.glamour-list {
  padding: 0;
  list-style: none;
}

.glamour-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 500;
}

.glamour-list i {
  margin-right: 15px;
  color: #cda45e;
  font-size: 1.2rem;
}

/* Container: Handles the centering and layout */
.glamour-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

/* Button: Handles the design and "Glamour" look */
.btn-glamour {
  display: inline-block;
  padding: 12px 24px;
  color: #1a1a1a !important;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none; /* Removes underline from link */
  text-align: center;
  letter-spacing: 2px;
  background: transparent;
  border: 1px solid #cda45e;
  transition: all 0.4s ease;
}

/* Hover Effect */
.btn-glamour:hover {
  color: #fff;
  background: #cda45e;
}

@media (max-width: 768px) {
  /* Luxury Badge Mobile Adjustments */
  .venue-badge-civil {
    right: 10px;           /* Moves badge inside the screen edge */
    bottom: 20px;          /* Brings it slightly higher from the bottom */
    width: 100px;          /* Slightly smaller width for mobile */
    padding: 10px;         /* Tighter padding */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15); /* Softer shadow */
  }

  .badge-town {
    font-size: 0.7rem;     /* Smaller text for smaller badge */
    letter-spacing: 1px;   /* Tighter spacing */
  }

  .badge-divider {
    width: 40px;           /* Shorter divider to match smaller badge */
    margin: 8px auto !important;
  }

  .badge-region {
    font-size: 0.85rem;    /* Scaled down text */
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# Symbolic Ceremony Section
--------------------------------------------------------------*/
.ceremony-glamour-alt {
  padding: 0;
  background-color: #fff;
}

/* 1. THE COLLAGE EFFECT */
.collage-container {
  position: relative;
  padding: 40px;
}

.main-glamour-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.floating-detail-img {
  position: absolute;
  bottom: -30px;
  left: -30px;
  z-index: 3;
  width: 200px;
  height: 250px;
  border: 8px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floating-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glamour-shape {
  position: absolute;
  top: 10%;
  right: 0;
  z-index: 0;
  width: 80%;
  height: 80%;
  background: #fdfaf7;
}

/* 2. CONTENT & TYPOGRAPHY */
.glamour-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 30px;
  text-align: left;
}

.gold-badge {
  display: block;
  margin-bottom: 15px;
  color: #cda45e;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.glamour-heading.title-underline {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  padding-bottom: 15px !important;
  color: #1a1a1a;
  font-size: 2.5rem !important;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.2;
}

.glamour-heading.title-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 1.5px;
  background-color: #cda45e;
  transform: translateX(-50%);
}

.glamour-lead {
  margin-bottom: 30px;
  color: #444;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif !important;
  font-style: italic;
}

/* 3. LIST STYLES */
.glamour-stars {
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.glamour-stars li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #333;
  font-size: 1rem;
}

.glamour-stars i {
  margin-right: 15px;
  color: #cda45e;
  font-size: 1.2rem;
}

/* 4. CTA CONTAINER & BUTTONS */
.cta-glamour {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 40px !important;
}

.btn-wedding-gold, 
.btn-glamour-outline {
  display: inline-block !important;
  padding: 12px 24px;
  color: #1a1a1a;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center !important;
  letter-spacing: 2px;
  background: transparent;
  border: 1px solid #cda45e;
  transition: 0.4s ease;
}

.btn-wedding-gold:hover, 
.btn-glamour-outline:hover {
  color: #1a1a1a;
  background: #cda45e;
  border-color: #cda45e;
  transform: translateY(-3px);
}

.hero-badge .ampersand {
  color: #cda45e !important;
  /* Optional: slightly increase font-weight or size if you want it to pop more */
  font-weight: 700; 
}

/* Sets up the secondary base layout variant for the collage */
.collage-container.variant-bracket {
  position: relative;
  padding: 15px; /* Generates breathing room for the brackets */
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06); /* Soft, premium depth shadow */
}

/* TOP-LEFT BRACKET: Draws an elegant corner framing the top-left */
.collage-container.variant-bracket::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 60%;   /* Length of the horizontal top line */
  height: 60%;  /* Length of the vertical left line */
  border-top: 1px solid #cda45e;  /* Metallic gold tone */
  border-left: 1px solid #cda45e;
  pointer-events: none;
}

/* BOTTOM-RIGHT BRACKET: Draws a mirroring corner framing the bottom-right */
.collage-container.variant-bracket::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 70%;   /* Length of the horizontal bottom line */
  height: 70%;  /* Length of the vertical right line */
  border-bottom: 1px solid #cda45e;
  border-right: 1px solid #cda45e;
  pointer-events: none;
}

/* Optional Interactive Lift: Makes the collage look dynamic on hover */
.collage-container.variant-bracket .cincopa_site_gallery_div {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-container.variant-bracket:hover .cincopa_site_gallery_div {
  transform: scale(1.015); /* Subtly expands inside the bracket anchors */
}

/* 5. MOBILE OPTIMIZATIONS */
@media (max-width: 991px) {
  .ceremony-glamour-alt {
    padding: 60px 0 !important;
  }

  .collage-container {
    margin-bottom: 40px;
    padding: 0;
  }

  .main-glamour-img {
    height: 400px;
  }

  .floating-detail-img {
    display: none;
  }

  .glamour-shape {
    top: auto;
    bottom: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
  }

  .glamour-content {
    align-items: flex-start !important; 
    padding: 0 20px !important;
    text-align: left !important;
  }

  .glamour-heading.title-underline {
    font-size: 1.75rem !important;
    text-align: left !important;
  }

  .glamour-heading.title-underline::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .glamour-stars {
    display: block !important;
    text-align: left !important;
  }

  .cta-glamour {
    display: flex !important;
    justify-content: center !important;
    width: calc(100% + 40px) !important;
    margin-top: 50px !important;
    margin-left: -17px !important;
    padding: 0 !important;
  }
	
  .btn-wedding-gold, 
  .btn-glamour-outline {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# Elopement Ceremony Section
--------------------------------------------------------------*/
.elopement-contained {
  padding: 0;
}

.elopement-card {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.elopement-contained .glamour-img-wrapper {
  position: relative;
  flex: 0 0 50%;
}

.hero-split-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 15px;
  bottom: 40px;
  z-index: 10;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.content-pane {
  flex: 0 0 50%;
  padding: 10px !important;
  text-align: left;
}

.glamour-title.title-underline {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-size: 2.5rem !important;
}

.glamour-title.title-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 1.5px;
  background-color: #cda45e;
}

.modern-check-list {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.modern-check-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #555;
  font-size: 1.05rem;
}

.modern-check-list li::before {
  content: "✓";
  margin-right: 12px;
  color: #cda45e;
}

.cta-container {
  display: flex !important;
  justify-content: center !important;
  clear: both; /* Prevents any nearby floats from pushing it to the left */
  width: 100% !important;
}

/* The Wrapper to handle centering */
.glamour-outline-container {
  display: flex;
  justify-content: center !important;
  width: 100%;
  margin: 20px 0; /* Adjust spacing as needed */
}

/* Your original button style */
.btn-glamour-outline {
  display: inline-block;
  padding: 12px 24px;
  color: #1a1a1a;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  background: transparent;
  border: 1px solid #cda45e;
  transition: 0.4s ease;
}

.btn-glamour-outline:hover {
  color: #1a1a1a;
  background: #cda45e;
}

/* Style the existing container holding the Cincopa script */
.widget-container {
  position: relative;
  padding: 10px; /* Creates a clean white matting around the video/images */
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft drop shadow */
}

/* Add the decorative top and left glamour lines */
.widget-container::before {
  content: "";
  position: absolute;
  top: -8px; /* Negative offset pushes the line upward */
  left: -8px; /* Negative offset pushes the line leftward */
  z-index: 2;
  width: 80%; /* Length of the horizontal top line */
  height: 80%; /* Length of the vertical left line */
  border-top: 1px solid #cda45e;  /* Elegant Gold */
  border-left: 1px solid #cda45e; /* Elegant Gold */
  pointer-events: none; /* Allows user clicks to pass through to the gallery */
}

@media (max-width: 991px) {
  .elopement-contained {
    padding: 40px 0 !important;
  }

  .elopement-card {
    flex-direction: column !important;
    margin: 0 10px;
    border-radius: 8px;
  }

  .elopement-contained .glamour-img-wrapper {
    flex: none;
    width: 100%;
    padding: 20px;
  }

  .hero-badge {
    right: 10px;
    bottom: 30px;
    padding: 8px 16px;
    font-size: 12px;
  }

  .content-pane {
    flex: none;
    width: 100%;
    padding: 20px 20px !important;
    text-align: left;
  }

  .glamour-title.title-underline {
    position: relative !important;
    display: table !important; 
    width: fit-content !important; 
    margin-right: auto !important;
    margin-left: 0 !important;
    padding-bottom: 15px !important;
    font-size: 1.75rem !important;
    text-align: left !important;
    white-space: nowrap !important; 
  }

  .glamour-title.title-underline::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 60px !important;
    height: 1.5px !important;
    background-color: #cda45e !important;
    transform: translateX(-50%) !important;
  }

  .modern-check-list li {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Same-Sex Ceremony Section
--------------------------------------------------------------*/
.ceremony-details {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: #fffaf5; /* Soft, warm ivory background */
}

/* Gallery Container & Badge Overlay */
.widget-container {
  position: relative;
  z-index: 1;
  overflow: visible;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.venue-badge-same-sex {
  position: absolute;
  bottom: -20px;
  right: -30px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px !important;
  padding: 15px;
  color: #fff;
  background: #1a1a1a;
  text-align: center;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
}

.badge-same {
  font-size: 0.9rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-divider {
  width: 100%;
  margin: 10px 0;
  opacity: 1;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.4);
}

.badge-sex {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Typography & Headers */
.location-tag {
  display: block;
  margin-bottom: 8px; /* Space before the H2 */
  color: #cda45e; /* Use your Gold */
  font-size: 1rem; /* 14px */
  font-family: var(--font-secondary); /* Montserrat */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em; /* Adds that "high-end" airiness */
}

.venue-title {
  position: relative;
  margin-bottom: 30px;
  color: #2c3e50;
  font-size: 2.5rem !important;
  font-family: 'Playfair Display', serif;
}

.title-underline::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 15px;
  background: #cda45e;
}

.venue-description .lead {
  color: #cda45e;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-subtitle-black {
  margin-bottom: 40px;
  color: #444;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif !important;
  font-style: italic;
  line-height: 1.8;
}

/* Ceremony Facts Box */
.ceremony-facts-box {
  margin-top: 40px;
  padding: 30px;
  background: #ffffff;
  border-left: 5px solid #cda45e;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.05);
}

.ceremony-facts-box h3 {
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.olive-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.olive-list li {
  display: flex;
  align-items: center; /* This is the key for vertical centering */
  margin-bottom: 10px; /* Optional spacing between list items */
}

.olive-list li i {
  display: flex;
  align-items: center;
  margin-right: 15px;
  color: #cda45e;
  font-size: 0.6rem;
  /* Removed margin-top to let Flexbox handle the centering */
}

/* Btn Button */
.btn-glamour {
  display: table !important;  /* Keeps the button width tight to the text */
  margin-top: 40px !important;
  margin-right: auto !important;
  margin-bottom: 20px;
  margin-left: auto !important;
  padding: 12px 24px;
  color: #1a1a1a;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid #cda45e;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

.btn-glamour:hover {
  color: #1a1a1a;
  background-color: #cda45e;
  transform: translateY(-3px);
}

/* --- RESPONSIVE MEDIA QUERIES (CONSOLIDATED) --- */

@media (max-width: 991px) {
  .ceremony-details {
    padding: 60px 0;
  }

  .venue-badge-same-sex {
    bottom: -20px;
    right: -10px;
  }
	
  .badge-same {
    font-size: 0.9rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .badge-divider {
    width: 100%;
    margin: 10px 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.4);
  }

  .badge-sex {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
}

@media (max-width: 768px) {
  .venue-title {
    margin-bottom: 20px; /* Tighter spacing for mobile */
    font-size: 1.75rem !important; /* Adjusted for smaller screens */
  }

  .olive-list li {
    align-items: flex-start; /* Optional: Use 'flex-start' if text wraps to multiple lines on mobile */
  }
  
  .olive-list li i {
    margin-top: 6px; /* Adds a tiny bit of top margin only if using flex-start for long text */
  }
}

/*--------------------------------------------------------------
# Bespoke Venues Section
--------------------------------------------------------------*/
#bespoke-venues {
  padding: 0;
  overflow: hidden;
  background-color: #fdfbf7;
}

/* 1. GRID LAYOUT */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 2. CARD STYLING */
.venue-card {
  position: relative;
  height: 500px; /* Luxury portrait height for desktop */
  overflow: hidden;
  border-radius: 8px;
}

.venue-img-wrap {
  width: 100%;
  height: 100%;
}

.venue-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* 3. ELEGANT OVERLAY */
.venue-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  transition: background 0.4s ease;
}

.venue-location {
  display: block;
  margin-bottom: 10px;
  color: #cda45e;
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 4px;
}

.venue-overlay h3 {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-size: 2rem;
  font-family: var(--heading-font);
  text-transform: capitalize;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
}

/* 4. HOVER EFFECTS */
.venue-card:hover img {
  transform: scale(1.08);
}

.venue-overlay:hover {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%) !important;
}

.venue-card:hover .venue-overlay {
  background: linear-gradient(to top, rgba(205, 164, 94, 0.4) 0%, transparent 100%);
}

/* 5. BUTTON STYLING */
.btn-glamour {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  color: #cda45e;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  border: 1px solid #cda45e;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-glamour:hover {
  color: #fff;
  background: #cda45e;
  box-shadow: 0 10px 30px rgba(205, 164, 94, 0.2);
}

/* --- UNIVERSAL ARCHIVE WATERFALL --- */

/* Initial hidden state */
#venueArchive .venue-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Shown state */
#venueArchive.show .venue-item {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delay Loop */
#venueArchive.show .venue-item:nth-child(1) { transition-delay: 0.2s; }
#venueArchive.show .venue-item:nth-child(2) { transition-delay: 0.3s; }
#venueArchive.show .venue-item:nth-child(3) { transition-delay: 0.4s; }
#venueArchive.show .venue-item:nth-child(4) { transition-delay: 0.5s; }
#venueArchive.show .venue-item:nth-child(5) { transition-delay: 0.6s; }
#venueArchive.show .venue-item:nth-child(6) { transition-delay: 0.7s; }

/* 6. MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
  #bespoke-venues {
    padding: 60px 0 !important;
    scroll-margin-top: 70px !important;
  }

  .venue-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .venue-card {
    height: 350px;
    margin: 0 10px 15px;
    border-radius: 12px;
  }

  .venue-location {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .venue-overlay h3 {
    font-weight: 400;
    font-size: 1.75rem;
  }

  .intro-luxury {
    padding: 0 15px;
    font-size: 15px;
    text-align: center;
  }

  .btn-glamour {
    display: block !important;
    align-self: center !important; /* Forces centering inside a flex parent */
    margin: 10px auto !important; /* Forces centering in non-flex parents */
    text-align: center !important; /* Centers text inside the button */
  }
}

/*--------------------------------------------------------------
# Real Weddings Gallery Section
--------------------------------------------------------------*/
#real-weddings {
  padding: 0;
  background-color: #f5f1ed;
}

/* 1. GRID LAYOUT (Desktop 4-Column) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 15px;
}

/* 2. ITEM CONTAINER */
.gallery-item {
  position: relative;
  display: block;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* 3. TEXT OVERLAY */
.service-item-contents {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 70%) !important;
}

.service-item-category {
  display: block;
  margin-bottom: 5px;
  color: #cda45e;
  font-weight: 600 !important;
  font-size: 1.25rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
}

.service-item-title {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-size: 1.75rem;
  font-family: var(--heading-font);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* 4. HOVER EFFECTS */
.gallery-item:hover img {
  filter: brightness(0.6);
  transform: scale(1.1);
}

.service-item-contents:hover {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 70%) !important;
}

/* 5. BUTTON STYLING */
.btn-glamour {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 24px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid #cda45e;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.4s ease;
}

.btn-glamour:hover {
  color: #fff;
  background: var(--accent-color, #cda45e);
  box-shadow: 0 10px 30px rgba(205, 164, 94, 0.2) !important;
}

/* --- ARCHIVE ANIMATION LOGIC (Shared) --- */

/* 1. Initial State: Hidden and shifted down */
#weddingArchive .gallery-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 2. Active State: Visible and slide to position */
#weddingArchive.show .gallery-item {
  opacity: 1;
  transform: translateY(0);
}

/* 3. Sequential Delay Loop (Increments by 0.1s) */
#weddingArchive.show .gallery-item:nth-child(1)  { transition-delay: 0.2s; }
#weddingArchive.show .gallery-item:nth-child(2)  { transition-delay: 0.3s; }
#weddingArchive.show .gallery-item:nth-child(3)  { transition-delay: 0.4s; }
#weddingArchive.show .gallery-item:nth-child(4)  { transition-delay: 0.5s; }
#weddingArchive.show .gallery-item:nth-child(5)  { transition-delay: 0.6s; }
#weddingArchive.show .gallery-item:nth-child(6)  { transition-delay: 0.7s; }
#weddingArchive.show .gallery-item:nth-child(7)  { transition-delay: 0.8s; }
#weddingArchive.show .gallery-item:nth-child(8)  { transition-delay: 0.9s; }
#weddingArchive.show .gallery-item:nth-child(9)  { transition-delay: 1.0s; }
#weddingArchive.show .gallery-item:nth-child(10) { transition-delay: 1.1s; }
#weddingArchive.show .gallery-item:nth-child(11) { transition-delay: 1.2s; }
#weddingArchive.show .gallery-item:nth-child(12) { transition-delay: 1.3s; }
#weddingArchive.show .gallery-item:nth-child(13) { transition-delay: 1.4s; }
#weddingArchive.show .gallery-item:nth-child(14) { transition-delay: 1.5s; }
#weddingArchive.show .gallery-item:nth-child(15) { transition-delay: 1.6s; }
#weddingArchive.show .gallery-item:nth-child(16) { transition-delay: 1.7s; }
#weddingArchive.show .gallery-item:nth-child(17) { transition-delay: 1.8s; }
#weddingArchive.show .gallery-item:nth-child(18) { transition-delay: 1.9s; }
#weddingArchive.show .gallery-item:nth-child(19) { transition-delay: 2.0s; }
#weddingArchive.show .gallery-item:nth-child(20) { transition-delay: 2.1s; }
#weddingArchive.show .gallery-item:nth-child(21) { transition-delay: 2.2s; }
#weddingArchive.show .gallery-item:nth-child(22) { transition-delay: 2.3s; }
#weddingArchive.show .gallery-item:nth-child(23) { transition-delay: 2.4s; }
#weddingArchive.show .gallery-item:nth-child(24) { transition-delay: 2.5s; }

/* 6. MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
  #real-weddings {
    padding: 60px 0 !important;
    scroll-margin-top: 70px !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .gallery-item {
    width: 100%;
    height: 300px;
  }

  .service-item-contents {
    padding: 15px 15px;
    text-align: left;
  }

  .service-item-category {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }

  .service-item-title {
    font-size: 1.75rem !important;
  }

  .btn-glamour {
    width: 100%;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Real Weddings (Story Pages)
--------------------------------------------------------------*/
#real-weddings.real-wedding-contained {
  padding: 0;
}

/* 1. HERO HEADER */
.wedding-hero-text {
  margin-bottom: 60px;
  text-align: center;
}

.glamour-tag {
  display: block;
  margin-bottom: 10px;
  color: #cda45e;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.glamour-title {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: #1a1a1a;
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
}

.glamour-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.2px;
  background: #cda45e;
}

.photographer-credit {
  color: #888;
  font-size: 0.9rem;
  font-family: "Lora", serif;
  font-style: italic;
  letter-spacing: 1px;
}

.photographer-credit span {
  color: #cda45e;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}

.title-divider {
  width: 60px;
  height: 2px;
  margin: 20px auto;
  opacity: 1;
  background: #cda45e;
  border: none;
}

/* GALLERY WRAPPER */
.real-wedding-detail .container {
  max-width: 1440px !important;
  margin: 0 auto;
}

.gallery-wrapper {
  margin: 0 auto 40px;
  padding: 0;
  background: #f5f1ed;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Force Cincopa 3-column layout */
#cincopa_97d130 .cincopa_container {
  column-count: 3 !important;
  column-gap: 20px !important;
}

/* NAVIGATION BAR */
.wedding-post-nav {
  padding: 0px 0px 60px !important;
  background: #f5f1ed;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}

.btn-nav-wedding,
.back-to-all {
  color: #1a1a1a;
  font-family: inherit;
  text-decoration: none;
  flex: 1;
}

.back-to-all {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid #cda45e;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
  text-align: center;
  transition: 0.3s ease;
}

.back-to-all:hover {
  color: #fff;
  background-color: #cda45e;
  letter-spacing: 4px;
}

.btn-nav-wedding.prev {
  text-align: left;
}

.btn-nav-wedding.prev:hover {
  color: #1a1a1a;
  letter-spacing: 3px;
  text-align: left;
}

.btn-nav-wedding.next {
  text-align: right;
}

.btn-nav-wedding.next:hover {
  color: #1a1a1a;
  letter-spacing: 3px;
  text-align: right;
}

/* LUXURY FADE-IN ANIMATION */
.glamour-tag,
.glamour-title,
.photographer-credit,
.title-divider {
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
}

.glamour-tag {
  animation-delay: 0.2s;
}

.glamour-title {
  animation-delay: 0.4s;
}

.photographer-credit {
  animation-delay: 0.6s;
}

.title-divider {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE OPTIMIZATIONS (Max-width: 991px or 768px) */
@media (max-width: 991px) {
  .nav-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  /* 1. Back to All: Full width on top */
  .back-to-all {
    order: 2;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }

  /* 2. Prev/Next: Shared row below */
  .btn-nav-wedding {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
    flex: 1;
    padding: 10px;
    border: 1px solid #d0d0d0;
    font-size: 14px;
    text-align: center;
  }

  .btn-nav-wedding.prev,
  .btn-nav-wedding.next {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Testimonials Section - Tight Portrait Layout
--------------------------------------------------------------*/
#testimonials {
  padding: 0;
}

/* TIGHTEN GRID GAPS: Reduces space between Bootstrap columns */
#testimonials .row {
  --bs-gutter-x: 20px; /* Standard is 30px; setting to 20px tightens horizontal gap */
}

/* 1. TESTIMONIAL CARDS (Portrait Shape) */
.testimonial {
  position: relative;
  display: block;
  width: 100%;           /* Fills the column width for tighter spacing */
  height: 480px;         /* Taller height for vertical orientation */
  margin-bottom: 15px;   /* Reduced vertical gap between rows */
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

/* 2. FULL-HEIGHT IMAGE */
.testimonial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* 3. YEAR LABEL (Floating Badge Style) */
.year-label {
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 2;
  padding: 10px 25px;
  color: #111;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #cda45e;
  border-radius: 0;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

/* 5. SECTION HEADER */
.glamour-header {
  margin-bottom: 30px;
  text-align: center;
}

.glamour-header h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* 6. BUTTONS */
.btn-load-more {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid #cda45e;
  letter-spacing: 2px;
  transition: 0.3s ease;
}

.btn-load-more:hover {
  color: #fff;
  background: #cda45e;
  letter-spacing: 4px;
}

/* 8. ARCHIVE ANIMATIONS & STAGGERED DELAY LOGIC */
#testimonialArchive .col-lg-4 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#testimonialArchive.show .col-lg-4 {
  opacity: 1;
  transform: translateY(0);
}

/* Full Staggered Delay for 4 items */
#testimonialArchive.show .col-lg-4:nth-child(1)  { transition-delay: 0.1s; }
#testimonialArchive.show .col-lg-4:nth-child(2)  { transition-delay: 0.2s; }
#testimonialArchive.show .col-lg-4:nth-child(3)  { transition-delay: 0.3s; }
#testimonialArchive.show .col-lg-4:nth-child(4)  { transition-delay: 0.4s; }

/* 4. DESKTOP HOVER EFFECTS */
@media (min-width: 992px) {
  .testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .testimonial:hover img {
    transform: scale(1.1);
  }

  .testimonial:hover .year-label {
    color: #fff;
    background: #cda45e;
    letter-spacing: 4px;
  }
}

/* 7. MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
  #testimonials {
    padding: 60px 0;
  }

  .testimonial {
    height: 400px;
    margin-bottom: 10px; /* Very tight gap on mobile */
  }

  .glamour-header h2 {
    font-size: 1.75rem;
  }

  .btn-load-more {
    width: 100%;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Testimonials Archive (Zig-Zag Layout)
--------------------------------------------------------------*/
#testimonials.testimonials-contained {
  padding: 0;
}

/* 1. HEADER */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gold-badge {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 15px;
  color: #fff;
  background: #cda45e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
}

.content-title {
  margin-bottom: 60px;
  color: #1a1a1a;
  font-size: 2.5rem;
  font-family: "Playfair Display", serif !important;
  text-align: center;
}

/* 2. ROW & IMAGE STYLING */
.testimonial-row {
  margin-bottom: 100px;
}

.testimonial-img-wrapper {
  position: relative;
  z-index: 1;
  padding: 0 20px 20px 20px;
}

.testimonial-img-wrapper img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Desktop Offset Frames */
.img-frame-offset,
.img-frame-offset-right {
  position: absolute;
  top: 20px;
  z-index: 0;
  width: calc(97% - 40px);
  height: calc(100% - 20px);
  border: 1px solid #cda45e;
}

.img-frame-offset {
  left: 0;
}

.img-frame-offset-right {
  right: 0;
}

/* Desktop C-Offset Frames */
.img-frame-c-offset,
.img-frame-c-offset-right {
  position: absolute;
  top: 20px;
  z-index: 0;
  width: calc(97% - 40px);
  height: calc(100% - 30px);
  border: 1px solid #cda45e;
}

.img-frame-c-offset {
  left: 0;
}

.img-frame-c-offset-right {
  right: 0;
}

/* 3. TESTIMONIAL CARD */
.testimonial-card {
  position: relative;
  z-index: 3;
  margin-left: -60px;
  padding: 40px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 15px 45 rgba(0, 0, 0, 0.05);
}

/* Reverse overlap for alternating rows */
.flex-lg-row-reverse .testimonial-card {
  margin-right: -60px;
  margin-left: 0;
}

.wedding-meta {
  display: block;
  margin-bottom: 15px;
  color: #cda45e;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonial-card h3 {
  margin-bottom: 5px;
  color: #1a1a1a;
  font-size: 2rem;
  font-family: "Playfair Display", serif;
}

/* Personalized Glamour Styling for the <h4> Tag */
.testimonial-card p2 {
  color: #cda45e;
  font-weight: 400;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
}

/* Personalized Glamour Styling for the <p> Tag */
.testimonial-card p {
  position: relative;
  display: inline-block; /* Wraps background tightly to text */
  margin-top: 15px;
  padding: 5px 25px;
  color: #bfa37e; /* Sophisticated Champagne */
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3); /* Underline like a signature */
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  font-style: italic;
  letter-spacing: 1px;
  animation: fadeInSignature 2s ease-out;
}

/* Add a "From" label via CSS pseudo-element for extra personalization */
.testimonial-card p::before {
  content: "";
  display: block;
  margin-bottom: 5px;
  color: #999;
  font-size: 9px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes fadeInSignature {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-text p {
  margin-bottom: 25px;
  color: #555;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-line {
  display: block; /* This acts like a <br> but is much cleaner */
  margin-bottom: 0px; /* Control the exact 'glamour' gap between lines */
}

.signature-font {
  display: block;
  margin-top: 10px;
  color: #cda45e;
  font-size: 1.8rem;
  font-family: 'Apple Chancery', 'Lucida Handwriting', 'Brush Script MT', cursive;
  text-align: right;
}

/* 4. MOBILE OPTIMIZATIONS */
@media (max-width: 991px) {
  main > section#testimonials:first-of-type:not(#hero):not(.hero) {
    padding-top: 80px !important;
  }

  .section-title {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .content-title {
    margin-top: 0 !important;
    margin-bottom: 25px;
    font-size: 1.75rem;
    font-family: "Playfair Display", serif !important;
  }

  .testimonial-row {
    flex-direction: column !important;
    margin-bottom: 50px !important;
  }

  .testimonial-row:last-child {
    margin-bottom: 0 !important;
  }

  .testimonial-row > div[class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .testimonial-img-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 -30px 0 !important;
    padding: 0 !important;
  }

  .testimonial-img-wrapper img {
    display: block;
    width: 100% !important;
    margin: 0;
  }

  .img-frame-offset,
  .img-frame-offset-right {
    display: none !important;
  }
	
  .img-frame-c-offset,
  .img-frame-c-offset-right {
    display: none !important;
  }

  .testimonial-card,
  .flex-lg-row-reverse .testimonial-card {
    z-index: 2;
    margin: 0 10px 40px !important;
    padding: 40px 15px 30px !important;
    border-radius: 12px;
    text-align: center;
  }
	
  .testimonial-card h3 {
    margin-bottom: 5px;
    color: #1a1a1a;
    font-size: 1.6rem;
    font-family: "Playfair Display", serif;
  }

  /* Personalized Glamour Styling for the <h4> Tag */
  .testimonial-card p2 {
    color: #cda45e;
    font-weight: 400;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
  }

  .quote-text p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: left;
  }

  .signature-font {
    display: block;
    font-size: 1.5rem;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Discover Taormina Section
--------------------------------------------------------------*/
#discover-taormina {
  padding: 0;
  background-color: #fdfdfd;
}

/* 1. HERO IMAGE WRAPPER */
.taormina-hero-wrap {
  position: relative;
  height: 600px;
  margin-bottom: 3rem;
  overflow: hidden;
  border-radius: 4px;
}

.hero-img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.hero-label {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 2;
  color: #fff;
  text-align: right;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-label span {
  display: block;
  margin-bottom: 5px;
  color: #cda45e;
  font-weight: 400;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.hero-label h3 {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-size: 3rem;
  font-family: var(--heading-font);
}

/* 2. EXPERIENCE CARDS */
.experience-card {
  height: 100%; /* Ensures cards in a row match height */
  background: #fff;
  border: 1px solid #eee;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.experience-card img {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
}

.experience-info {
  padding: 20px;
  text-align: center;
}

.experience-info h4 {
  margin-bottom: 10px;
  color: #1a1a1a;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.experience-info p {
  color: #777;
  font-size: 0.9rem;
  font-family: 'Georgia', serif;
  font-style: italic;
  line-height: 1.6;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* 3. MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
  #discover-taormina {
    padding: 60px 0 !important;
    scroll-margin-top: 70px !important;
  }

  .intro-luxury {
    padding: 0 15px;
    color: inherit;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
  }

  /* Hero Adjustments */
  .taormina-hero-wrap {
    height: 300px;
    margin-bottom: 20px !important;
    border-radius: 12px;
  }

  .hero-label {
    inset: auto 0 0 0; /* Anchors to bottom */
    padding: 20px !important;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    text-align: center;
  }

  .hero-label h3 {
    font-size: 22px !important;
  }

  /* Card Adjustments */
  .experience-card {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
  }

  .experience-card img {
    height: 220px;
  }

  .experience-info h4 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
#faq {
  padding: 0;
  background-color: #fff;
}

/* 1. ACCORDION ITEM & BUTTON */
.faq .accordion-item {
  margin-bottom: 10px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #eee;
}

.faq .accordion-button {
  position: relative;
  display: flex;
  padding: 25px 0;
  color: #1a1a1a;
  font-size: 1.2rem;
  font-family: var(--heading-font);
  font-weight: 400;
  letter-spacing: 1px;
  background: none;
  box-shadow: none;
  transition: color 0.3s ease;
}

.faq .accordion-button:not(.collapsed) {
  color: #cda45e;
  background: none;
}

/* Custom Gold Arrow Icon */
.faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://w3.org' viewBox='0 0 16 16' fill='%23cda45e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 1rem;
}

/* 2. ACCORDION BODY */
.faq .accordion-body {
  padding: 0 0 30px 0;
  color: #666;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  font-style: italic;
  line-height: 1.8;
}

/* 3. MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
  #faq {
    padding: 60px 0 !important;
    scroll-margin-top: 70px !important;
  }

  /* Transform into Card Style */
  .faq .accordion-item {
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
  }

  .faq .accordion-button {
    padding: 20px 15px !important;
    padding-right: 45px !important;
    font-size: 16px !important;
    line-height: 1.4;
  }

  .faq .accordion-body {
    padding: 15px 20px 25px !important;
    background-color: #fafafa;
    font-size: 14px;
  }

  .faq .accordion-button::after {
    position: absolute;
    right: 15px;
  }
}

/*--------------------------------------------------------------
# General Privacy Section Styling
--------------------------------------------------------------*/
.privacy {
  padding: 0;
  overflow: hidden;
  background-color: #f5f1ed;
  color: #444444;
}

/* 1. HEADER TYPOGRAPHY */
.privacy-tag {
  display: block;
  margin-bottom: 10px !important;
  color: #cda45e;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.content-title {
  margin-top: 40px !important;
  margin-bottom: 30px !important;
  color: #1a1a1a;
  font-weight: 400;
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  line-height: 1.1;
}

.title-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px !important;
  width: 60px;
  height: 2px;
  background-color: #cda45e;
}

/* 2. BODY CONTENT TYPOGRAPHY */
.privacy .container p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.privacy h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #2c3e50;
  font-weight: 700;
  font-size: 24px;
}

.privacy h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
  font-size: 20px;
}

.privacy h4 {
  margin-top: 25px;
  color: #cda45e;
  font-weight: 600;
  font-size: 18px;
}

.privacy strong {
  color: #2c3e50;
  font-weight: 700;
}

/* 3. LINKS */
.privacy a {
  color: #cda45e;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.privacy a:hover {
  border-bottom: 1px solid #cda45e;
}

/* 4. LISTS */
.privacy ul {
  margin-bottom: 25px;
  padding-left: 0;
  list-style: none;
}

.privacy ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.privacy ul li::before {
  content: "\f105";
  position: absolute;
  left: 0;
  color: #cda45e;
  font-weight: 900;
  font-family: "bootstrap-icons";
}

/* 5. RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .privacy.section {
    padding: 60px 0;
    scroll-margin-top: 70px !important;
  }

  main > section#privacy:first-of-type:not(#hero):not(.hero) {
    padding-top: 80px !important;
  }

  .content-title {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Social Links Section
--------------------------------------------------------------*/
.social-links-section {
  position: relative;
  padding: 60px 0 50px !important;
  background: linear-gradient(to right, transparent, #cda45e, transparent) top/80% 1px no-repeat;
  text-align: center;
}

.social-links-section h3 {
  margin-bottom: 20px;
  color: #111;
  font-weight: 300;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.social-link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  color: #cda45e;
  font-size: 2rem;
  text-decoration: none;
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-link-item:hover {
  color: #111;
  transform: translateY(-5px);
}

/* Mobile adjustments for Social Links */
@media (max-width: 768px) {
  .social-links-section {
    padding: 40px 0;
  }

  .social-links-section h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .social-link-item {
    margin: 0 12px;
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# General Settings & Layout Fixes
--------------------------------------------------------------*/

/* 1. Global Reset & Browser Normalization */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.main {
  padding-top: 40px;
}

/* 2. Global Section Spacing */
section {
  position: relative;
  padding: 80px 0 60px !important;
  scroll-margin-top: 0px !important;
}

/* 3. Hero Section Specific Fixes */
#hero,
.hero {
  height: auto;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

#hero + section,
.hero + section {
  margin-top: 0 !important;
}

/* 4. Typography & Decorative Elements */
.content-title {
  margin-top: 10px !important;
}

.title-underline {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  padding-bottom: 15px;
}

.title-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 1.5px;
  background-color: #cda45e;
  transform: translateX(-50%);
}

/* 5. Specific Archive Transitions */
#venueArchive.collapsing,
#weddingArchive.collapsing,
#testimonialArchive.collapsing {
  transition: height 0.8s ease !important;
}

/* 6. RESPONSIVE MEDIA QUERIES (CONSOLIDATED & CHRONOLOGICAL) */

/* Desktop: Big gap */
@media (min-width: 769px) {
  main > section:first-of-type:not(#hero):not(.hero) {
    padding-top: 160px !important;
  }
}

/* Mobile: Smaller gap */
@media (max-width: 768px) {
  main > section:first-of-type:not(#hero):not(.hero) {
    padding-top: 80px !important;
  }
}

/* Mobile Specific Overrides (991px and below) */
@media (max-width: 991px) {
  body {
    padding-top: 50px !important;
  }

  html {
    scroll-padding-top: 50px !important;
  }

  section[id] {
    scroll-margin-top: 50px !important;
  }
}
