/* General Reset */
html {
    scroll-behavior: smooth;
}
body {
    cursor: none;
}


/*Header */

.title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
    animation: typewriter 4s steps(40, end), fadeIn 2s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid #333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    color: #333333;
    overflow-x: hidden;
    background-color: #FFE6EE; /* Light pink background */
}

/* Header Section */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background: linear-gradient(to right, #FCE4EC, #F8BFBF);
    color: #D4AF37;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    z-index: 2;
    gap: 20px;
}

.hero-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-photo {
    width: 100%;
    max-width: 850px;
    height: 350px; /* Increased height */
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-right {
    flex: 1;
    text-align: left;
}
.title {
    font-size: 4.5em;
    color: #D4AF37; /* Metallic gold for text */
    margin-bottom: 10px;
    animation: fadeIn 2s ease-in-out, typewriter 4s steps(40, end), blink 0.5s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid #D4AF37; /* Gold cursor */
}


.hero-right p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #D4AF37;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s ease;
    animation: glow 1.5s infinite alternate;
    margin-top: 20px;
}

.btn:hover {
    background: #E5C27A;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px #D4AF37;
    }
    100% {
        box-shadow: 0 0 20px #E5C27A;
    }
}

/* Floating Petals */
#petals-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.petal {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('images/petals.png') no-repeat center center;
    background-size: contain;
    opacity: 0.8;
    animation: fall 10s infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(700px) rotate(360deg);
        opacity: 0;
    }
}

/* Sticky Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(to right, #FCE4EC, #F8BFBF);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
    padding: 15px 30px;
    z-index: 1000;
    border-bottom: 2px solid #D4AF37;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 15px;
    color: #D4AF37;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #FFD700;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.7), 0 0 8px rgba(255, 215, 0, 0.4);
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.8), 0 0 5px rgba(255, 223, 0, 0.9);
}



   

    .hero-right {
        z-index: 2;
        padding: 10px;
        text-align: center; /* Center-align text */
    }

    .hero-right h1 {
        font-size: 1.8rem; /* Adjust heading size */
        color: #D4AF37; /* Gold text */
        text-shadow: 1px 1px 6px rgba(212, 175, 55, 0.6); /* Gold glow effect */
    }

    .hero-right p {
        font-size: 1.3rem;
        line-height: 1.5; /* Improve readability */
        color: #D4AF37;
    }

    #book-now-btn {
        padding: 12px 30px;
        font-size: 1rem; /* Adjust button size */
        background: #D4AF37; /* Initial gold background */
        color: white;
        border-radius: 5px;
        border: none;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
        transition: transform 0.3s ease;
        animation: bookNowBackground 6s infinite ease-in-out; /* Background animation */
    }
    
    /* Hover effect */
    #book-now-btn:hover {
        transform: scale(1.05); /* Slight pop effect */
    }
    
    /* Keyframes for alternating background color */
    @keyframes bookNowBackground {
        0% {
            background: #D4AF37; /* Gold */
        }
        25% {
            background: #FF69B4; /* Pink */
        }
        50% {
            background: linear-gradient(90deg, #D4AF37 50%, #FF69B4 50%); /* Half gold, half pink */
        }
        75% {
            background: #FF69B4; /* Back to pink */
        }
        100% {
            background: #D4AF37; /* Back to gold */
        }
    }
    



/* Highlight Section with Slanted Boxes */
.slanted-section {
    background: #FCE4EC;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slanted-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
}

.text-container {
    flex: 1;
    position: relative;
    margin-right: -20px; /* Adjust the value to move closer to the image */
}

.image-container {
    flex: 1;
    margin-left: -20px; /* Adjust the value to fine-tune alignment */
}

.slanted-box {
    transform: skew(-10deg);
    text-align: center;
    padding: 20px 40px; /* Padding for left and right space */
    margin-bottom: 0;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    display: inline-block;
    width: auto;
}


  


.professional {
    background-color: #D4AF37; /* Gold background */
    color: white;
    font-size: 3.5rem;
    font-weight: bold;
    padding: 15px 40px; /* Padding for uniformity */
    margin-bottom: 0; /* Align directly with Wedding MC */
    transform: skew(-10deg);
    display: inline-block; /* Align inline */
}

.wedding-mc {
    background-color: #FF91C1; /* Pink background */
    color: white;
    font-size: 3.5rem;
    font-weight: bold;
    padding: 15px 40px; /* Same padding as Professional */
    margin-top: 0; /* Align directly with Professional */
    transform: skew(-10deg);
    display: inline-block; /* Align inline */
}



/* Image Container */
.image-container {
    flex: 1;
}

.slanted-image {
    width: 100%; /* Make it fully responsive */
    max-width: 700px; /* Optional: Limit the maximum width */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure proper fit */
    border-radius: 10px; /* Optional: Keep the styling consistent */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Keep the elegant shadow */
}


/* Slanted Description */
.slanted-description {
    text-align: left; /* Align text to the left */
    font-size: 1.4rem; /* Increase the font size for readability */
    line-height: 2; /* Improve spacing between lines */
    color: #333333; /* Set a contrasting color for better visibility */
    padding: 20px; /* Add padding around the text */
    max-width: 700px; /* Limit the width for a balanced layout */
}

/* Intro Text Section */
.intro-text {
    margin-top: 20px; /* Add spacing from the Wedding MC boxes */
    text-align: left; /* Align the text to the left */
    font-size: 1.4rem; /* Adjusted font size */
    line-height: 2; /* Increased line height for better readability */
    color: #333; /* Neutral text color */
}

.intro-text h3 {
    font-size: 2rem; /* Slightly larger for emphasis */
    color: #D4AF37; /* Gold color for headings */
    margin-bottom: 15px; /* Added more space below each heading */
}

.intro-text p {
    margin-bottom: 25px; /* Increased space between paragraphs */
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    color: #333333;
    background: linear-gradient(to right, #FCE4EC, #F8BFBF);
    overflow-x: hidden;
}




/*gallery */

/* ===== Gallery Variables ===== */

 
:root {
    --light-pink: #fff0f6;
    --gold: #d4af37;
    --dark-pink: #e75480;
    --text-dark: #333;
  }
  
  /* ===== Base Gallery Styles ===== */
  .emcee-gallery {
    padding: 2rem;
    background: linear-gradient(35deg, var(--light-pink) 0%, #FCE4EC 100%);
    position: relative;
    border-top: 2px solid #D4AF37;
  }
  
  .gallery-heading {
    text-align: center;
    font-size: 5.5rem;
    color: var(--dark-pink);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
  }
  
  /* ===== Shuffle Button Styles ===== */
  .shuffle-button {
    display: block;
    margin: 0 auto 2rem;
    padding: 12px 30px;
     background: #D4AF37; /* Initial gold background */
     color: white;
 animation: bookNowBackground 6s infinite ease-in-out; /* Background animation */
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }
  
  .shuffle-button:hover {
    transform: scale(1.05);
    background: var(--dark-pink);
    box-shadow: 0 6px 20px rgba(231, 84, 128, 0.4);
  }
  
  /* ===== Gallery Grid Layout ===== */
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
  }
  
  /* ===== Individual Card Styles ===== */
  .gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .gallery-card:hover {
    transform: translateY(-5px);
  }
  
  /* ===== Image Container Styles ===== */
  .image-container1 {
    position: relative;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
  }
  
  .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
  }
  
  /* ===== Navigation Buttons ===== */
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s ease;
  }
  
  .prev:hover, .next:hover {
    background: var(--dark-pink);
  }
  
  .prev { left: 10px; }
  .next { right: 10px; }
  
  /* ===== Card Content Styles ===== */
  .card-content {
    padding: 1.2rem;
    position: relative;
    z-index: 1;
  }
  
  .card-title {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
  }
  
  .card-text {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  transition: color 0.4s ease, transform 0.3s ease;
  color: #333;
}

@keyframes weddingCaptionFlow {
  0%   { color: #D4AF37; }   /* gold */
  25%  { color: #f7c6d9; }   /* blush pink */
  50%  { color: #ffc8a2; }   /* peach champagne */
  75%  { color: #d6b2ff; }   /* lavender rose */
  100% { color: #D4AF37; }   /* back to gold */
}

.card-text {
  font-family: 'Cinzel Decorative', 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  animation: weddingCaptionFlow 6s infinite ease-in-out;
  transition: transform 0.3s ease;
}


  
  .card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--dark-pink);
  }
  
  /* ===== Responsive Design ===== */
  @media (max-width: 768px) {
    .gallery-container {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    
    .gallery-heading {
      font-size: 2rem;
    }
  }
/* ===== Mobile Responsive Styles ===== */
@media (max-width: 768px) {
    .emcee-gallery {
        padding: 1rem;
    }

    .gallery-heading {
        font-size: 5rem;
        margin-bottom: 1rem;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.9rem;
    }

    .prev, .next {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }

    .shuffle-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-heading {
        font-size: 5rem;
    }

    .card-meta {
        flex-direction: column;
        gap: 0.3rem;
    }

    .image-container {
        padding-top: 100%; /* Square aspect ratio on mobile */
    }

    .prev, .next {
        padding: 0.2rem 0.6rem;
    }
}

/* ===== Touch Device Adjustments ===== */
@media (hover: none) and (pointer: coarse) {
    .gallery-card:hover {
        transform: none;
    }
    
    .prev, .next {
        background: var(--gold); /* Make more visible on mobile */
        padding: 1rem;
    }
    @media (max-width: 360px) {
  /* Adjust gallery container for very small screens */
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
    padding: 0.5rem;
  }

  /* Scale down the heading */
  .gallery-heading {
    font-size: 5 rem;
    margin-bottom: 0.5rem;
  }

  /* Adjust card content spacing */
  .card-content {
    padding: 0.5rem;
  }

  /* Reduce font sizes for titles and text */
  .card-title {
    font-size: 0.9rem;
  }
  
  .card-text {
    font-size: 0.8rem;
  }

  /* Adjust meta info styling */
  .card-meta {
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.8rem;
  }

  /* Use a square aspect ratio for images on very small screens */
  .image-container1 {
    padding-top: 100%;
  }

  /* Shrink navigation buttons */
  .prev, .next {
    padding: 0.2rem 0.4rem;
    font-size: 0.7rem;
  }

  /* Adjust shuffle button size */
  .shuffle-button {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}
@media (max-width: 360px) {
  /* Use a single column so that each card shows fully */
  .gallery-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.5rem;
  }
  
  /* Scale down the heading */
  .gallery-heading {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  /* Adjust individual gallery cards */
  .gallery-card {
    width: 100%;
    margin: 0 auto;
    /* Optional: reduce shadow or spacing if needed */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Adjust card content spacing and text sizes */
  .card-content {
    padding: 0.5rem;
  }
  
  .card-title {
    font-size: 0.9rem;
  }
  
  .card-text {
    font-size: 0.8rem;
  }
  
  .card-meta {
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.8rem;
  }
  
  /* Ensure the image shows as part of the card (full width) */
  .image-container1 {
    position: relative;
    width: 100%;
    /* Instead of a fixed aspect ratio, let the image define its own height */
    padding-top: 0;
  }
  
  .gallery-image {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* Shrink navigation buttons */
  .prev, .next {
    padding: 0.2rem 0.4rem;
    font-size: 0.7rem;
  }
  
  /* Adjust shuffle button size */
  .shuffle-button {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}
@media (max-width: 360px) {
    .emcee-gallery {
      padding: 0.5rem;
      border-top-width: 1px;
    }
  
    .gallery-heading {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }
  
    .shuffle-button {
      padding: 0.7rem 1.2rem;
      font-size: 0.85rem;
      margin-bottom: 1.5rem;
      border-radius: 30px;
    }
  
    .gallery-container {
      grid-template-columns: 1fr;
      gap: 1rem;
      padding: 0.25rem;
    }
  
    .gallery-card {
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }
  
    .image-container1 {
      padding-top: 85%; /* Slightly taller aspect ratio for better image visibility */
    }
  
    .card-content {
      padding: 0.8rem;
    }
  
    .card-title {
      font-size: 1rem;
      margin-bottom: 0.4rem;
    }
  
    .card-text {
      font-size: 0.8rem;
      line-height: 1.3;
      margin-bottom: 0.6rem;
    }
  
    .card-meta {
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.75rem;
    }
  
    .prev, .next {
      padding: 0.4rem 0.8rem;
      font-size: 0.75rem;
      background: rgba(212, 175, 55, 0.9); /* More visible background */
    }
  
    /* Touch target optimization */
    button {
      min-width: 44px;
      min-height: 44px;
    }
  }
  
  /* Separate touch device adjustments */
  @media (hover: none) and (pointer: coarse) {
    .prev, .next {
      padding: 1rem !important;
      font-size: 1rem !important;
    }
  }
}
  /*bookings*/
  /* 🌸 Font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&display=swap');

/* 🌟 Container */
.custom-booking-widget {
  background: linear-gradient(to bottom, #fff0f5, #ffe4e1);
  border: 2px solid #d4af37;
  border-radius: 16px;
  padding: 30px 25px;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  font-family: 'Playfair Display', serif;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.2s ease;
}

/* 🌟 Sparkles Background Animation */
.custom-booking-widget::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 10%, transparent 11%) center center / 10px 10px;
  animation: sparkle 8s linear infinite;
  z-index: 0;
}

/* ✨ Sparkle Keyframe */
@keyframes sparkle {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* 📝 Headers */
.step-heading {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-subtext {
  font-size: 15px;
  color: #b07a7e;
  text-align: center;
  margin-bottom: 25px;
  z-index: 1;
  position: relative;
}

/* 💎 Booking Steps */
.booking-step {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  animation: slideIn 0.6s ease forwards;
  opacity: 0;
}

.booking-step:nth-child(1) { animation-delay: 0.3s; }
.booking-step:nth-child(2) { animation-delay: 0.6s; }
.booking-step:nth-child(3) { animation-delay: 0.9s; }

/* 👑 Card Radio Buttons */
.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  border: 2px solid #f6d8df;
  background: #fffafc;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 16px;
  color: #7a003c;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.service-card:hover {
  background: #fff0f7;
  border-color: #d4af37;
}

.service-card input[type="radio"] {
  accent-color: #d4af37;
  transform: scale(1.3);
}

/* 💬 Input Fields */
.custom-booking-widget input,
.custom-booking-widget select {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1.5px solid #eec9d2;
  border-radius: 10px;
  background-color: #fff9fb;
  transition: border-color 0.3s ease;
}

.custom-booking-widget input:focus,
.custom-booking-widget select:focus {
  border-color: #d4af37;
  outline: none;
  background: #fffafc;
}

/* 💌 Submit Button */
.royal-submit {
   padding: 12px 30px;
        font-size: 1rem; /* Adjust button size */
        background: #D4AF37; /* Initial gold background */
        color: white;
        border-radius: 5px;
        border: none;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
        transition: transform 0.3s ease;
        animation: bookNowBackground 6s infinite ease-in-out; /* Background animation */
}

.royal-submit:hover {
  background-color: #c19e35;
  transform: scale(1.02);
}

/* 🎞️ Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  to { opacity: 1; transform: translateY(0); }
}

/* 📱 Responsive */
@media (max-width: 600px) {
  .custom-booking-widget {
    padding: 20px;
  }

  .step-heading {
    font-size: 24px;
  }
}
/* 🌸 Countdown Section Container */
#countdown-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 60px 40px;
  background: linear-gradient(145deg, #fff0f6, #ffe6f2);
  border: 4px double #D4AF37;
  border-radius: 28px;
  box-shadow:
    0 20px 50px rgba(212, 175, 55, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.8);
  font-family: 'Playfair Display', serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#countdown-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 20%, transparent 70%);
  animation: shimmerOpacity 10s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

#countdown-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%23d4af3722" stroke-width="0.8"/><path d="M20,20 Q50,5 80,20 T100,50 Q85,80 50,100 T0,50 Q15,20 50,0 T100,50" fill="none" stroke="%23d4af3711" stroke-width="0.5"/></svg>');
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

/* 👑 Heading */
#countdown-section > h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  color: #D4AF37;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.3);
  position: relative;
  display: inline-block;
  width: 100%;
  letter-spacing: 1px;
}

#countdown-section > h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  border-radius: 2px;
}

/* 📝 Form Elements */
#countdown-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
}

#countdown-form label {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #5e4034;
  display: block;
  text-align: center;
  width: 100%;
  letter-spacing: 0.5px;
}

/* 🧾 Inputs */
#countdown-form input[type="date"],
#countdown-form input[type="email"] {
  width: 100%;
  max-width: 420px;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  color: #5e4034;
  background-color: #fffdf7;
  border: 2px solid #D4AF37;
  border-radius: 14px;
  outline: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  margin-bottom: 10px;
  text-align: center;
}

#countdown-form input:focus {
  border-color: #c49b2c;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: scale(1.02);
}

/* 💛 Submit Button */
#countdown-form button {
  background: linear-gradient(to right, #D4AF37, #e6c158, #D4AF37);
  background-size: 200% auto;
  color: white;
  font-size: 1.2rem;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.5s ease;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#countdown-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}

#countdown-form button:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#countdown-form button:hover::before {
  left: 100%;
}

/* ⏱️ Countdown Timer Blocks */
#countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 50px 0;
}

.timer-unit {
  background: linear-gradient(145deg, #fffdf7, #fffaf0);
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 
    0 10px 25px rgba(212, 175, 55, 0.15),
    inset 0 0 20px rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  border: 2px solid #e8d9b0;
  transition: all 0.4s ease;
  z-index: 1;
}

.timer-unit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #D4AF37, #FF69B4, #D4AF37);
}

.timer-unit:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.timer-unit span {
  display: block;
  font-size: 3.2rem;
  color: #D4AF37;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
  animation: glow 1.5s infinite alternate;
}

.timer-unit div {
  font-size: 1.2rem;
  color: #8a6d3b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* 💞 Love Quote Section */
#love-quote-container {
  margin: 50px auto 20px;
  padding: 40px 30px;
  max-width: 700px;
  border: 2px solid #D4AF37;
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(212, 175, 55, 0.2), 
    inset 0 0 30px rgba(255, 255, 255, 0.5);
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #5e4034;
  font-size: 1.5rem;
  line-height: 1.6;
  position: relative;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, #fff8f0, #fff0f8);
}

#love-quote-container::before {
  content: '❝';
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: #D4AF37;
  background: linear-gradient(135deg, #fff0f6, #ffe6f2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  z-index: 2;
}

#love-quote-container:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

#love-quote {
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #d43747, #D4AF37, #d43747);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 300%;
  animation: colorFade 8s ease-in-out infinite;
}

/* ✨ Animations */
@keyframes shimmerOpacity {
  0%, 100% { opacity: 0; }
  50%      { opacity: 0.15; }
}

@keyframes glow {
  0% { text-shadow: 0 0 8px rgba(212, 175, 55, 0.5); }
  100% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
}

@keyframes colorFade {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 📱 Responsive Mobile Styles */
@media screen and (max-width: 768px) {
  #countdown-section {
    padding: 40px 20px;
    border-radius: 20px;
    margin: 40px 15px;
  }
  
  #countdown-section > h1 {
    font-size: 2.5rem;
  }
  
  #countdown-timer {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 40px 0;
  }
  
  .timer-unit {
    padding: 20px 10px;
  }
  
  .timer-unit span {
    font-size: 2.5rem;
  }
  
  #countdown-form button {
    font-size: 1.1rem;
    padding: 14px 30px;
  }
  
  #love-quote-container {
    font-size: 1.3rem;
    margin-top: 40px;
    padding: 30px 20px;
  }
  
  #countdown-form input[type="date"],
  #countdown-form input[type="email"] {
    padding: 14px 18px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  #countdown-timer {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .timer-unit {
    padding: 25px 15px;
  }
  
  #countdown-section > h1 {
    font-size: 2.2rem;
  }
  
  #love-quote-container {
    font-size: 1.2rem;
    padding: 25px 15px;
  }
  
  #love-quote-container::before {
    top: -20px;
    font-size: 3rem;
    width: 50px;
    height: 50px;
  }
}



/* Reviews Section */
.reviews-section {
    background: linear-gradient(to bottom, #FCE4EC, #F8BFBF);
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.majestic-heading {
    font-size: 2.5rem;
    color: #D4AF37; /* Gold color for a majestic feel */
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.majestic-subtext {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.reviews-slider-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    animation: slide 10s linear infinite;
}

.review-tile {
    min-width: 300px;
    max-width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #333;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.review-tile p {
    font-style: italic;
    margin-bottom: 10px;
}

.review-tile span {
    font-weight: bold;
    color: #D4AF37; /* Gold color for names */
    display: block;
    margin-top: 10px;
}

@keyframes slide {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* make tip modal’s content area scrollable */
#tip-prompt .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

/* constrain PayPal step and enable its own scroll */
#tip-step-2 {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 1rem; /* avoid cut‐off buttons */
}

/* Decorative elements for majesty */
.reviews-slider-container::before,
.reviews-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(to right, rgba(252, 228, 236, 1), rgba(252, 228, 236, 0));
    z-index: 10;
}

.reviews-slider-container::before {
    left: 0;
}

.reviews-slider-container::after {
    right: 0;
}
/* Make Payment Hero Section */
.make-payment-hero {
    background: linear-gradient(to right, #FCE4EC, #F8BFBF);
    text-align: center;
    padding: 50px 20px;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.make-payment-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.make-payment-hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

.make-payment-hero {
    background: url('hero-bg.jpg') no-repeat center center / cover;
    text-align: center;
    padding: 100px 20px;
    color: white;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
    display: inline-block;
    border-radius: 10px;
}

.make-payment-container {
    display: flex;
    justify-content: center;
    margin: 40px 20px;
}

.payment-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.payment-form h2 {
    text-align: center;
    color: #444;
}

.form-description {
    text-align: center;
    color: #777;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

input:focus, select:focus {
    border-color: #007bff;
    outline: none;
}

.btn-submit {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
}

.btn-submit:hover {
    opacity: 0.9;
}

.loading-spinner {
    text-align: center;
    font-size: 16px;
    color: #007bff;
    margin-top: 10px;
}


/* Consultation Section Styling */
.consultation-section {
    background: linear-gradient(to right, #FCE4EC, #F8BFBF); /* Elegant pink gradient */
    padding: 60px 20px;
    text-align: center;
    border-top: 3px solid #D4AF37; /* Gold border */
    border-bottom: 3px solid #D4AF37; /* Gold border */
}

.consultation-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.majestic-heading {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: #D4AF37; /* Gold text */
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(212, 175, 55, 0.6); /* Subtle glow */
}

.majestic-text {
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    color: #333;
    line-height: 2;
    margin-bottom: 30px;
}
/*──────────────────────────────────────────────────────────────────────────
  Reviews Section Overrides & Modal Form Styling
──────────────────────────────────────────────────────────────────────────*/

/* hide the review modal by default */
#review-modal {
  display: none;
  position: fixed;
  inset: 0;                            /* top:0; right:0; bottom:0; left:0; */
  background: rgba(0, 0, 0, 0.6);      /* semi-opaque backdrop */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* show the modal when JS flips display to flex */
#review-modal.active {
  display: flex;
}

/* modal “window” */
#review-modal .modal-content {
  background: #fff;
  border: 4px solid #D4AF37;          /* royal gold border */
  border-radius: 10px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  position: relative;
  font-family: 'Playfair Display', serif;
}

/* close “×” button */
#review-modal .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: #D4AF37;
  cursor: pointer;
}

/* Form group spacing & labels */
#review-modal .form-group {
  margin-bottom: 20px;
  text-align: left;
}
#review-modal .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #555;
}

/* Inputs, selects, textareas */
#review-modal input[type="text"],
#review-modal select,
#review-modal textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #D4AF37;
  border-radius: 5px;
  background: #fff0f6;
  font-size: 1rem;
  color: #333;
  outline: none;
  transition: box-shadow .2s ease;
}
#review-modal input[type="text"]:focus,
#review-modal select:focus,
#review-modal textarea:focus {
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}

/* Submit button in modal */
#review-modal .btn.royal-glow {
  width: 100%;
  margin-top: 10px;
  font-size: 1.1rem;
}

/* 🌸 Modal (used by both Review & Tip) */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

/* 🌸 Modal Inner Content (shared styles) */
.modal .modal-content {
  background: linear-gradient(to bottom right, #fff0f6, #ffe6f2);
  border: 3px solid #D4AF37;
  border-radius: 20px;
  padding: 30px 25px;
  max-width: 90%;
  width: 400px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.3s ease-out;
}

.modal h2 {
  color: #D4AF37;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.modal p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

/* 🌟 Buttons inside modals */
.modal button {
  padding: 10px 20px;
  margin: 5px 10px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

#tip-yes, #tip-no {
  background-color: white;
  border: 2px solid #D4AF37;
  color: #D4AF37;
}

#tip-yes:hover, #tip-no:hover {
  background-color: #D4AF37;
  color: white;
}

/* 💰 Tip Amount Buttons */
.tip-amount {
  background-color: #FF69B4;
  color: white;
  margin: 6px 5px;
}

.tip-amount:hover {
  background-color: #D4AF37;
  color: white;
}

#submit-tip {
  background-color: #D4AF37;
  color: white;
  margin-top: 10px;
}

/* ✍️ Custom Tip Input */
#custom-tip {
  margin-top: 10px;
  padding: 10px;
  width: 60%;
  border: 2px solid #FF69B4;
  border-radius: 12px;
  text-align: center;
}

/* ✨ Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 💬 Reviews Section Container */
.reviews-section {
  background: linear-gradient(145deg, #fff0f6, #ffe6f2);
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid #D4AF37;
  border-bottom: 4px solid #D4AF37;
  border-radius: 15px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Section Heading */
.majestic-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #D4AF37;
}

/* Section Subtext */
.majestic-subtext {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll Container */
.reviews-slider-container {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

/* Scrolling Content Row */
.reviews-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  transform: translateX(0);
  transition: none;
  animation: none;
  will-change: transform;
}

.reviews-slider.scrolling {
  animation: scrollReviews linear infinite;
  animation-duration: var(--scroll-duration, 30s);
}

/* Scroll Keyframes */
@keyframes scrollReviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual Review Box */
.review-tile {
  flex: 0 0 300px;
  min-height: 200px;
  background: #fff;
  border: 2px solid #D4AF37;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.review-tile:hover {
  background: linear-gradient(135deg, #fffbe6, #ffeccc);
  transform: translateY(-5px);
}

.review-tile:nth-child(even) { background: #FFF8DC; }
.review-tile:nth-child(odd)  { background: #FFE4E1; }

/* Stars (Fixed styling) */
.stars-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.star {
  font-size: 1.8rem;
  color: gold;
  text-shadow: 1px 1px 2px rgba(212, 175, 55, 0.5);
}

.star.empty {
  color: #ddd;
  text-shadow: none;
}

/* Review Content */
.review-tile h3 {
  color: #D4AF37;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.review-comment {
  font-style: italic;
  color: #444;
  margin-top: 15px;
  line-height: 1.5;
}

/* Add a Review Button */
#add-review-btn {
  padding: 12px 30px;
  font-size: 1rem;
  background: #D4AF37;
  color: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  animation: bookNowBackground 6s infinite ease-in-out;
  font-weight: bold;
  cursor: pointer;
}

#add-review-btn:hover {
  transform: scale(1.05);
}

@keyframes bookNowBackground {
  0% { background: #D4AF37; }
  25% { background: #FF69B4; }
  50% { background: linear-gradient(90deg, #D4AF37 50%, #FF69B4 50%); }
  75% { background: #FF69B4; }
  100% { background: #D4AF37; }
}

/* Review Actions */
.review-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.review-actions .btn.soft-outline {
  background: transparent;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

/* ─── Mobile Overrides (≤768px) ─────────────────────────────────── */
@media (max-width: 768px) {
  /* 1. Kill the continuous keyframes so JS takes over */
  .reviews-slider.scrolling {
    animation: none !important;
  }

  /* 2. Make container horizontally scrollable with snap points */
  .reviews-slider-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0;              /* remove extra side padding if any */
  }

  /* 3. Keep the same gap between tiles */
  .reviews-slider {
    gap: 20px;               /* match your desktop gap */
    flex-wrap: nowrap;       /* prevent wrapping */
  }

  /* 4. Each tile fills the viewport width and snaps into place */
  .review-tile {
    flex: 0 0 100%;          /* full width of the container */
    max-width: 100%;
    box-sizing: border-box;
    scroll-snap-align: start;
  }

  /* 5. (Optional) tweak heading & text sizes for smaller screens */
  .majestic-heading {
    font-size: 2rem;
  }
  .majestic-subtext {
    font-size: 1rem;
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  /* Disable scroll snap during auto-scroll */
  .reviews-slider-container.scrolling {
    scroll-snap-type: none !important;
  }
  
  /* Remove gap inconsistencies */
  .reviews-slider {
    gap: 0 !important;
  }
  
  .review-tile {
    margin: 0 10px !important; /* Use symmetrical margins */
    scroll-snap-align: start;
    flex: 0 0 calc(100vw - 20px) !important; /* Account for margins */
  }
  
  /* Hide scrollbar */
  .reviews-slider-container::-webkit-scrollbar {
    display: none;
  }
}



/* Toast Notification */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}



/* Booking Widget Wrapper */
.booking-widget-wrapper {
    position: relative;
    display: inline-block;
    background: white;
    padding: 20px;
    border: 3px solid #D4AF37; /* Gold border */
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* Glow and Hover Animation */
.booking-widget-wrapper::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 25px;
    background: linear-gradient(45deg, #FFD700, #D4AF37, #FF91C1, #FCE4EC);
    opacity: 0.5;
    filter: blur(15px);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.booking-widget-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.booking-widget-wrapper:hover::before {
    opacity: 0.7;
}

/* Iframe Styling */
iframe {
    border-radius: 15px;
    width: 100%;
    height: 400px;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
    .majestic-heading {
        font-size: 2.5rem;
    }

    .majestic-text {
        font-size: 1.2rem;
    }

    iframe {
        height: 300px;
    }
}

#loading-message {
    display: block;
    font-size: 1.5rem;
    color: #D4AF37;
    text-align: center;
    margin: 20px 0;
}

#sparkles-container .sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    animation: sparkle 2s linear infinite;
    opacity: 0.8;
}

@keyframes sparkle {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: #ff007f;
    z-index: 1001;
    transition: width 0.25s ease-in-out;
}

.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ff007f;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
}

.floating-action-btn:hover {
    background: #e60073;
}

.nav-links a.active {
    color: #ff007f;
    font-weight: bold;
    border-bottom: 2px solid #ff007f;
}

/* ===== Booking Widget Container ===== */
:root {
  --clr-primary: #e8c5cf;
  --clr-accent:  #a04e6f;
  --clr-bg:      #ffffff;
  --clr-text:    #333333;
  --clr-highlight: #fad0c4;
  --clr-disabled:  #f5f5f5;
}

/* ── Calendar Navigation ─ */
.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}

.calendar-nav span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-accent);
}

.calendar-nav button {
  background: none;
  border: none;
  color: var(--clr-accent);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color .2s;
}

.calendar-nav button:hover {
  color: var(--clr-primary);
}

/* ── Weekday Header ─ */
.availability-widget-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  color: var(--clr-accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

/* ── Dates Grid ─ */
.availability-widget-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .25rem;
  overflow-x: auto;
  padding-bottom: .5rem;
}

.availability-widget-grid::-webkit-scrollbar {
  height: 6px;
}

.availability-widget-grid::-webkit-scrollbar-thumb {
  background: var(--clr-accent);
  border-radius: 3px;
}

/* ── Day Cell ─ */
.availability-day {
  background: var(--clr-bg);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: .75rem 0;
  text-align: center;
  font-size: 1rem;
  color: var(--clr-text);
  cursor: pointer;
  transition: background .2s, transform .1s, border-color .2s;
}

.availability-day.available:hover {
  background: var(--clr-highlight);
  transform: translateY(-2px);
}

.availability-day.selected {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}

.availability-day.unavailable {
  background: var(--clr-disabled);
  color: #aaa;
  cursor: not-allowed;
}

.availability-day.empty {
  visibility: hidden;
  pointer-events: none;
}

/* ── Mobile Calendar Fix ─ */
@media (max-width: 600px) {
  .calendar-nav span {
    font-size: 1rem;
  }

  .availability-widget-header,
  .availability-widget-grid {
    grid-template-columns: repeat(7, minmax(48px, 1fr));
  }

  .availability-day {
    font-size: .85rem;
    padding: .6rem 0;
    min-width: 48px;
    max-width: 60px;
  }

  .booking-widget-wrapper {
    padding: 16px;
    border-radius: 16px;
    width: 95vw;
    margin: 0 auto;
  }

  .booking-widget-wrapper iframe {
    height: 280px;
  }
}

/* Custom Cursor CSS */
body {
    cursor: none; /* Hide the default cursor */
}

.trail-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255, 182, 193, 1) 60%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 50%;
    pointer-events: none;
    animation: fadeTrail 0.5s ease-out;
    z-index: 9999;
}

@keyframes fadeTrail {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(to right, gold, pink);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: width 0.2s ease-in-out;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 192, 203, 0.8), 0 0 15px gold;
}

body {
    cursor: default; /* Regular cursor */
}
.contact-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #FCE4EC, #F8BFBF); /* Light pink to pink gradient */
    color: #D4AF37; /* Gold text color */
    border-top: 4px solid #D4AF37; /* Gold border at the top */
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #D4AF37; /* Gold for heading */
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for elegance */
    border-bottom: 3px solid #D4AF37; /* Gold underline */
    display: inline-block;
    padding-bottom: 5px;
}

.contact-section p {
    font-size: 1.2rem;
    color: #333; /* Dark text for better readability */
    margin-bottom: 30px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Wrap buttons on smaller screens */
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #D4AF37; /* Gold text */
    background-color: transparent;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    background-color: rgba(248, 191, 191, 0.4); /* Pink overlay on hover */
    transform: translateY(-5px); /* Slight lift effect */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    border-color: #D4AF37; /* Gold border on hover */
}

.contact-logo {
    width: 30px; /* Resize images */
    height: 30px;
    margin-right: 10px;
    border-radius: 50%; /* Make them circular for a polished look */
    border: 2px solid transparent; /* Border to be animated */
    transition: all 0.3s ease-in-out;
}

.contact-btn:hover .contact-logo {
    border-color: #01f606; /* Gold glowing effect */
    transform: scale(1.2); /* Slight zoom on hover */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6); /* Gold glow */
}

/* Instagram Button */
.contact-btn.instagram {
    border-color: #F8BFBF;
    background-color: rgba(248, 191, 191, 0.2); /* Pink tint */
}

.contact-btn.instagram:hover {
    background-color: #F8BFBF;
    color: #fff;
}

/* Email Button */
.contact-btn.email {
    border-color: #D4AF37; /* Gold border */
    background-color: rgba(212, 175, 55, 0.2); /* Gold tint */
}

.contact-btn.email:hover {
    background-color: #D4AF37;
    color: #fff;
}

/* WhatsApp Button */
.contact-btn.whatsapp {
    border-color: #FCE4EC; /* Light pink */
    background-color: rgba(252, 228, 236, 0.2); /* Light pink tint */
}

.contact-btn.whatsapp:hover {
    background-color: #FCE4EC;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-btn {
        padding: 10px 15px;
        font-size: 1rem;
    }

    .contact-logo {
        width: 25px;
        height: 25px;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-section p {
        font-size: 1rem;
    }
}
.footer {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(to bottom, #FCE4EC, #F8BFBF); /* Pink gradient background */
    color: #D4AF37; /* Gold text color */
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    border-top: 4px solid #D4AF37; /* Gold border at the top */
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.footer-content p {
    margin: 0;
    font-family: 'Georgia', serif; /* Elegant serif font */
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-decorations {
    margin-top: 20px;
}

.footer-line {
    width: 100px;
    height: 3px;
    background: #D4AF37; /* Gold line */
    margin: 0 auto 10px;
    border-radius: 10px;
}

.footer-diamonds {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.diamond {
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #F8BFBF, #D4AF37); /* Gradient for diamonds */
    transform: rotate(45deg);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    animation: sparkle 1.5s infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(45deg) scale(1.2);
        opacity: 0.7;
    }
}

.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none; /* Hidden by default */
  }
  
  .cookie-notification button {
    margin: 0 10px;
    padding: 5px 15px;
    background: #4CAF50;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  .cookie-notification button#reject-cookies {
    background: #f44336;
  }
 @media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(252, 228, 236, 0.7); /* semi-transparent pink */
        backdrop-filter: blur(8px); /* blurred background */
        padding: 10px;
        border-top: 2px solid #D4AF37;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(5px);
        border-radius: 50%;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 1001;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .menu-toggle .bar {
        width: 30px;
        height: 3px;
        background-color: #D4AF37;
        margin: 5px 0;
        border-radius: 2px;
    }
}

.navbar {
  display: flex;
  justify-content: flex-start; /* push items to the left */
  align-items: center;
}

#toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  min-width: 240px;
  max-width: 320px;
  background-color: #fff;
  color: #333;
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 0.95em;
  animation: fadeIn 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 6px solid;
}

.toast.success { border-color: #D4AF37; }
.toast.error   { border-color: #e74c3c; }
.toast.info    { border-color: #3498db; }

.toast button {
  background: none;
  border: none;
  font-size: 1.2em;
  color: #999;
  cursor: pointer;
  margin-left: 12px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.inline-enter-btn {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  height: 34px;
  padding: 0 15px;
  font-size: 0.9rem;
  background: #D4AF37;
  color: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 2;
}

.inline-enter-btn:hover {
  background: #c49e30;
}

#booking-time {
  display: block !important;
  opacity: 1 !important;
}
