/* Reset & Body */
body {
    margin: 0;
    padding: 0;
    /* === FONT CHANGE: Poppins Body === */
    /* Base font set to Poppins for readability */
    font-family: 'Poppins', sans-serif;
    
    /* === START: New Background Image === */
    /* Make sure to change this path to your actual image */
    background-image: url('images/background-image.jpg'); 
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Makes the background stay in place */
    background-repeat: no-repeat;
    /* === END: New BackgroundImage === */

    color: white;
    overflow-x: hidden;
    text-align: center;
    
    /* === START: Sticky Footer === */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* === END: Sticky Footer === */

    /* === NEW: DISABLE TEXT SELECTION & LONG-PRESS === */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    /* This will create a dark overlay on the background image */
    background: rgba(0, 0, 0, 0.4); /* Darkened overlay (Adjust 0.4 for darkness) */
    backdrop-filter: blur(8px); /* Increased from 5px */
    z-index: -1;
}

/* ===== START: Preloader Styles ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* Solid black background */
  z-index: 10000; /* On top of everything */
  
  /* Center the logo */
  display: flex;
  justify-content: center;
  align-items: center;
  
  /* Fade-out animation */
  opacity: 1;
  transition: opacity 0.75s ease;
}

/* New rule for the preloader emoji */
#preloader .preloader-emoji {
  font-size: 5rem; /* Large size for the emoji */
  /* The .pulse-emoji class already gives it the gradient and pulse */
}

/* Class to be added by JavaScript to hide it */
#preloader.preloader-hidden {
  opacity: 0;
  pointer-events: none; /* Make it unclickable */
}
/* ===== END: Preloader Styles ===== */

/* ===== New Main Header Bar ===== */
.main-header {
    position: sticky; 
    top: 0;
    width: 100%;
    z-index: 1000; 
    
    /* === Unified Glass Style === */
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(255,255,255,0.25);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0; 
}

/* Header Logo */
header.header-logo h1 {
    /* === NEW: Subtle Shadow Added === */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0; 
}
header {
    background: none;
    backdrop-filter: none;
    border-radius: 50px;
    padding: 5px 20px; 
    box-shadow: none;
    width: fit-content;
    margin: 0; 
    font-size: 2.0rem; 
}

.header-banner {
  margin-top: 20px; 
  margin-bottom: 20px; 
  line-height: 0; 
}

/* === START: Availability Feature Styles === */

.glass-btn {
    font-size: 1rem;
    font-family: 'Nova Cut', cursive;
    padding: 14px 32px;
    margin: 20px auto; /* Centering */
    
    /* === Unified Button Style === */
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.glass-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.glass-btn:disabled {
  cursor: default;
  opacity: 0.8;
}

#stayResult {
    margin-top: 15px;
    /* === FONT CHANGE: Poppins Body === */
    font-family: 'Poppins', sans-serif; /* Using your new body font */
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.fade-in {
    opacity: 1 !important;
}

/* Typing dots animation */
.typing span {
    opacity: 0;
    animation: blink 1.2s infinite;
}

.typing span:nth-child(1) { animation-delay: 0s; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* === END: Availability Feature Styles === */

/* Parallax Sections */
.parallax-section {
    /* === Reverted to Original Style === */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px #000;
    border-radius: 20px;
    margin: 20px;
    padding: 20px;
}

.before-section { background-image: url('images/before.jpg'); }
.after-section { background-image: url('images/after.jpg'); }

/* === START: NEW 3D Rates Section === */
.rates-info {
    display: flex;
    flex-wrap: wrap; /* Allows cards to wrap on mobile */
    justify-content: center;
    gap: 15px; /* Reduced gap */
    margin-top: 20px;
    perspective: 1000px; /* This creates the 3D "scene" */
}

/* === REMOVED: .rates-info strong rule === */

/* This styles each rate item as a 3D glass card */
.rate-item {
    /* === Unified Glass Style === */
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-radius: 20px; /* Smaller radius */
    /* === NEW: Reduced Size === */
    padding: 15px 20px;
    border: 1.5px solid rgba(255,255,255,0.25);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
    
    /* 3D and transition properties */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    
    /* === FONT CHANGE: Poppins Body === */
    font-family: 'Poppins', sans-serif; /* Your new body font */
    /* === NEW: Reduced Size === */
    font-size: 1.0rem; 
    font-weight: 400; /* Removed bold */
    min-width: 200px; /* Smaller min-width */
}

/* The 3D hover effect */
.rate-item:hover {
    transform: scale(1.05) rotateY(15deg); /* Tilts the card on hover */
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.5);
}
/* === END: NEW 3D Rates Section === */


/* Gallery Description */
.gallery-description {
    /* === FONT CHANGE: Poppins Body === */
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Glass Containers */
.glass-container {
    /* === Unified Glass Style === */
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-radius: 24px; padding: 25px;
    border: 1.5px solid rgba(255,255,255,0.25);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
    
    margin: 20px;
}

/* This was the old rule, now empty */
section {} 

/* Gallery's inner container adjustments */
.dropdown-inner-container.glass-container {
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
}

/* === START: New Gallery Write-Up Styles === */
#gallery-writeup-container {
  margin: 20px auto; 
  position: relative;
  z-index: 5; /* Sit below dropdown */
  
  /* === Match dropdown width === */
  width: 90vw;
  max-width: 1000px;
  box-sizing: border-box; /* Include padding in width */
}

.gallery-write-ups {
  background: none;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
/* === END: New Gallery Write-Up Styles === */


/* HORIZONTAL DEPTH GALLERY */
.horizontal-gallery {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 5vw;
    /* === REMOVED: Negative margin fix === */
}

.horizontal-gallery::-webkit-scrollbar {
    height: 8px;
}
.horizontal-gallery::-webkit-scrollbar-track {
    background: #1f1f1f;
    border-radius: 10px;
}
.horizontal-gallery::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 10px;
}

/* POP CARDS (Image/Video Cards) */
.pop-card {
    /* === REVERTED: Back to original size === */
    flex: 0 0 55vw;              
    height: calc(55vw * 7 / 5);  
    border-radius: 1.2rem;
    overflow: hidden;
    background-color: #262626;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    will-change: transform, opacity;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pop-card img,
.pop-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Counter */
.tally-counter {
    margin: 20px 0;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer */
.footer-glass {
    /* === Unified Glass Style === */
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(255,255,255,0.25);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
    border-radius: 24px 24px 0 0; /* Keep rounded top corners */
    
    margin-top: auto; /* <-- STICKY FOOTER STYLE */
    padding: 20px;
    
    /* === NEW: Footer Font Change === */
    font-family: 'Neonderthaw', cursive;
    font-size: 1.4rem; /* Added size for legibility */
    
    /* === NEW: Apply Logo Gradient to Footer Text === */
    background: linear-gradient(to right, black, #ff69b4, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === START: New Dropdown Button Styles === */
.glass-button { 
  display: block;
  width: fit-content;
  margin: 20px auto;
}
.dropdown-toggle {
    /* === Unified Button Style === */
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    
    /* Layout */
    padding: 18px 40px; 
    font-size: 19px; 
    font-family: 'Nova Cut', cursive;
    display: flex; 
    align-items: center;
    gap: 15px; 
    justify-content: center;
}
.dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.03);
    border-color: rgba(255,255,255,0.5);
}
.dropdown-toggle::after {
    content: ''; border: solid white; border-width: 0 2px 2px 0;
    display: inline-block; padding: 5px; margin-left: 10px;
    transform: rotate(45deg); transition: transform 0.4s ease;
}
.dropdown-toggle.open::after { transform: rotate(-135deg); }

/* === Dropdown Menu (SLIDE-DOWN) === */
.dropdown-menu {
    transition: max-height 0.7s ease-out;
    max-height: 0;
    overflow: hidden;
    
    /* Re-centering and width */
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto; /* Centered */

    /* === Unified Glass Style === */
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-radius: 24px; 
    /* === NEW: Slimmer horizontal padding === */
    padding: 25px 10px;
    border: 1.5px solid rgba(255,255,255,0.25);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
    box-sizing: border-box; /* Include padding in width */
}
.dropdown-menu.open { 
  max-height: 2000px; /* Large value to fit content */
  transition: max-height 1s ease-in;
  margin-top: 20px; 
  margin-bottom: 0; 
  position: relative;
  z-index: 10;
}
/* === END: New Dropdown Button Styles === */


/* === START: Standalone Booking Form Styles === */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px; /* Wider form */
    margin: auto;
}

#myForm label {
    /* === FONT CHANGE: Poppins Body === */
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem; /* Adjusted for Poppins */
    font-weight: 400; /* Removed bold */
    margin-top: 10px;
    display: block;
}

form input, form select, form textarea {
    /* === FONT CHANGE: Poppins Body === */
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem; /* Adjusted for Poppins */
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 10px;
    border-radius: 10px;
    color: white;
    font-weight: 400; /* Removed bold */
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width */
}

/* === NEW: Digital Font for Date/Time Picker === */
/* Overrides Story Script for a cleaner, "digital" look */
form input[type="date"],
form input[type="datetime-local"] {
    font-family: 'Nova Cut', cursive;
    font-size: 1.1rem; /* Revert to a more standard size */
    letter-spacing: 1px;
}


/* === START: Checkbox 2x2 Grid === */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns */
  gap: 10px;
  padding: 0 10px;
}
.checkbox-group label {
  margin: 0; /* Override default label margin */
  text-align: left; /* Align text to the left of the checkbox */
  display: flex;
  align-items: center;
  gap: 8px; /* Space between checkbox and text */
}

/* === START: Radio/Checkbox Fix === */
.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"] {
  width: auto; /* Revert from 100% width */
  margin-bottom: 0; /* Revert from margin */
}

.radio-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.radio-group label {
  margin: 0;
  display: flex; /* Added */
  align-items: center; /* Added */
  gap: 8px; /* Added */
}
/* === END: Radio/Checkbox Fix === */

/* Submit button font remains Nova Cut for clarity */
button[type="submit"] {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    font-family: 'Nova Cut', cursive;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: all 0.3s ease;
}
button[type="submit"]:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}
/* === END: Standalone Booking Form Styles === */


@keyframes gloss-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* === FONT HIERARCHY === */
/* h1 (logo) uses Neonderthaw */
h1 {
    background: linear-gradient(to right, black, #ff69b4, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Neonderthaw', cursive; 
    /* The text-shadow is in the .header-logo h1 rule */
}

/* === NEW CHANGE: h2 uses Neonderthaw + Shadow === */
h2 {
    background: linear-gradient(to right, black, #ff69b4, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Neonderthaw', cursive; /* New font */
    /* === NEW: Subtle Shadow Added === */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* === NEW: Increased font size === */
    font-size: 2.8rem;
}

/* === FONT CHANGE: Story Script h3 + Shadow === */
h3 {
    background: linear-gradient(to right, black, #ff69b4, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Story Script', cursive; 
    font-size: 2.2rem; /* Bumped size */
    /* === NEW: Subtle Shadow Added === */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* h4, h5, h6 use Nova Cut (no shadow) */
h4,h5,h6 {
    background: linear-gradient(to right, black, #ff69b4, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Nova Cut', cursive; 
    /* === NEW: Subtle Shadow Added === */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* === FONT CHANGE: Poppins Body === */
/* Paragraphs (body text) use Poppins */
p, span, a, li, label {
    color: white;
    font-family: 'Poppins', sans-serif; /* Your requested font */
    font-size: 1.1rem; /* Adjusted base size */
    font-weight: 400; /* Removed bold */
}
/* === END FONT HIERARCHY === */


/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    header { font-size: 1.4rem; } 

    /* === START: Mobile Fixes === */
    h2 {
        font-size: 2.2rem; /* === NEW: Increased mobile h2 size === */
    }
    /* === FONT CHANGE: Story Script h3 === */
    h3 {
        font-size: 2rem; /* Adjust script font for mobile */
    }
    .glass-btn {
        font-size: 0.9rem;
        padding: 12px 28px;
    }
    /* === END: Mobile Fixes === */

    .horizontal-gallery { 
        padding: 0 3vw; 
        /* === REMOVED: Negative margin fix === */
    }

    .pop-card {
        /* === REVERTED: Back to original mobile size === */
        flex: 0 0 70vw;                 
        height: calc(70vw * 7 / 5);     
    }

    .parallax-section {
        font-size: 1.2rem;
        min-height: 35vh;
    }
    
    /* Responsive dropdown */
    .dropdown-menu {
      width: 90vw;
      /* === NEW: Slimmer horizontal padding === */
      padding: 15px 5px;
    }
    .dropdown-toggle {
      padding: 15px 25px;
      font-size: 16px;
    }

    /* === FONT CHANGE: Poppins Body === */
    form input, form select, form textarea { 
        padding: 8px; 
        font-size: 1rem; /* Adjust Poppins for mobile */
    }
    #myForm label {
        font-size: 1rem; /* Adjust Poppins for mobile */
    }
    
    /* === NEW: Digital Font for Date/Time Picker (Mobile) === */
    form input[type="date"],
    form input[type="datetime-local"] {
        font-size: 1.0rem; /* Adjust for mobile */
    }
    
    button[type="submit"] { padding: 8px; }
    
    /* === NEW: Mobile Enhancements === */
    
    /* === NEW: Removed 1-column stack for 2x4 grid === */
    /* .checkbox-group {
      grid-template-columns: 1fr;
    } */
    
    /* === FONT CHANGE: Poppins Body === */
    /* Tweak base font size for mobile */
    p, span, a, li, label {
      font-size: 1rem;
    }
    
    /* Tweak social icons */
    .social-icon i {
      font-size: 1.6rem;
    }

    /* Make 3D rates stack on mobile */
    .rate-item {
        min-width: 80%;
    }
    .rate-item:hover {
        transform: scale(1.03) rotateY(0deg); /* Disable 3D tilt on mobile */
    }
    
    /* === NEW: Footer Font Change (Mobile) === */
    .footer-glass {
        font-size: 1.2rem; /* Adjust Neonderthaw for mobile */
    }
}

/* === Pulse Animation for Emoji === */
.pulse-emoji {
  display: inline-block; /* Allows transform to work */
  animation: soft-pulse 2s infinite ease-in-out;
  
  /* === Added Gradient Properties === */
  background: linear-gradient(to right, black, #ff69b4, #8a2be2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes soft-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

/* === START: Disclaimer Page Styles === */

/* Sets a new background image just for the disclaimer page */
body#disclaimer-page {
    background-image: url('images/disclaimer-background.jpg'); /* <-- Put your new photo path here */
}

/* Styles the "Go Back" button on the disclaimer page (Original .back-btn) */
.back-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-family: 'Nova Cut', cursive;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.3s ease;
}
.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* === END: Disclaimer Page Styles === */


/* === START: Social Icon Styles === */

.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 25px; /* Adds space between icons */
}

.social-icon i {
  font-size: 1.8rem; /* Size of the icons */
  
  /* Applies the same gradient as your logo */
  background: linear-gradient(to right, black, #ff69b4, #8a2be2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  transition: transform 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.15); /* Adds a nice hover effect */
}

/* === END: Social Icon Styles === */


/* === START: Disclaimer Page - New Layout Styles === */

/* Ensures the overlay covers the whole screen */
.disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 999; /* Ensure it's above other content if any */
}

/* Specific styling for the main title on the disclaimer */
.disclaimer-title {
    font-family: 'Neonderthaw', cursive; /* Your current header font */
    font-size: 5rem; /* Large size like "Miss Dior" */
    margin-bottom: 15px; 
    /* Gradient applied from global h1 rule */
}

/* Container for the disclaimer text, similar to the image's text block */
.disclaimer-content {
    /* === Unified Glass Style === */
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-radius: 24px; padding: 25px;
    border: 1.5px solid rgba(255,255,255,0.25);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
    
    margin: 0 10vw 40px 10vw; /* Horizontal margin, and space below */
    max-width: 600px; /* Control width of the text block */
    line-height: 1.6; /* Improved readability */
    /* === FONT CHANGE: Poppins Body === */
    font-family: 'Poppins', sans-serif; /* Using your new body font */
    font-size: 1.1rem; /* Adjusted text size */
    font-weight: 400; /* Removed bold */
}

.disclaimer-content p {
    margin: 0; /* Remove default paragraph margins */
    color: white; /* Ensure text color is white */
}

/* Styling for the "ENTER" button */
.enter-site-btn {
    /* === Unified Button Style === */
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Nova Cut', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box; 
    transition: all 0.3s ease;
    
    /* Layout */
    padding: 15px 40px; 
    font-size: 1.5rem; 
}

.enter-site-btn:hover {
    background: rgba(255, 255, 255, 0.2); 
    transform: translateY(-3px) scale(1.02); 
}

/* Media query for smaller screens on the disclaimer page */
@media (max-width: 768px) {
    .disclaimer-title {
        font-size: 3.5rem; /* Smaller title on mobile */
    }
    .disclaimer-content {
        padding: 20px;
        margin: 0 5vw 30px 5vw; /* Smaller horizontal margins */
        font-size: 1rem; /* Specific smaller size for disclaimer on mobile */
    }
    .enter-site-btn {
        padding: 12px 30px;
        font-size: 1.2rem;
    }
}

/* === END: Disclaimer Page - New Layout Styles === */


/* === START: UNIFIED GLOSS-SWEEP ANIMATION === */
/* This applies the animation to all buttons */

.glass-btn::before,
.dropdown-toggle::before,
.enter-site-btn::before,
button[type="submit"]::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: gloss-sweep 3s infinite;
}

/* === END: UNIFIED GLOSS-SWEEP ANIMATION === */
