@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --navy-dark: #0B1B34; /* Deep, luxurious navy */
    --navy-light: #1D2A3B; /* A slightly lighter navy for cards */
    --accent-gold: #C5B358; /* Muted, elegant gold */
    --text-light: #E6F1FF; /* Soft off-white for text */
    --text-dark: #334155; /* Slate gray for text on light backgrounds */
    --bg-light: #F8F9FA;   /* Clean, light background for contrast */
}

#thankyou-message strong {
    color: var(--accent-gold);
    font-weight: 600;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--navy-dark);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding-bottom: 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link:hover::after, 
.nav-link.active::after {
    width: 100%;
}

.luxury-btn {
    background-color: var(--accent-gold);
    color: var(--navy-dark);
    border: 2px solid var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.75rem 1.75rem;
    border-radius: 0; /* Sharp corners for a modern look */
}

.luxury-btn:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #94a3b8; /* A lighter gray-blue for subtitles */
    max-width: 650px;
    margin: 0 auto 4rem auto;
    line-height: 1.8;
}

.light-section {
    background-color: var(--bg-light);
}

.light-section .section-title {
    color: var(--navy-dark);
}

.light-section .section-subtitle {
    color: var(--text-dark);
}

.blinking-cursor {
    color: var(--accent-gold);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent; }
    50% { color: var(--accent-gold); }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================
   SWIPER – LUXURY SLIDER STYLES
   ================================ */

/* Core container */
.swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Slide layout */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Image styling */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Active slide depth */
.swiper-slide-active {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* Pagination bullets */
.swiper-pagination {
  bottom: 16px !important;
}

.swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.4;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: #C5B358;
  opacity: 1;
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #C5B358;
  width: 44px;
  height: 44px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Slider height control */
.mySwiper {
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .mySwiper {
    height: 500px;
  }
}

/* Smooth motion curve */
.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

