/* ========================================
   Font Face Declarations
   ======================================== */
@font-face {
    font-family: 'BootsSharp';
    src: url('./fonts/BootsSharp-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BootsSharp';
    src: url('./fonts/BootsSharp-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BootsSharp';
    src: url('./fonts/BootsSharp-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BootsSharp';
    src: url('./fonts/BootsSharp-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
    /* Color Palette */
    --color-peach: #FFB6A0;
    --color-coral: #FF7B7B;
    --color-yellow: #FFE03D;
    --color-navy: #001E62;
    --color-white: #FFFFFF;
    --color-pink-light: #FF8FA3;
    --color-pink-dark: #FF4D6D;
    --color-pink-medium: #FF6B8A;

    /* Typography */
    --font-primary: 'BootsSharp', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-script: 'Brush Script MT', cursive;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* Animation Durations */
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.6s;

    /* Z-index Layers */
    --z-banner: 10;
    --z-sparkle: 5;
    --z-content: 1;
}

/* ========================================
   CSS Reset & Base Styles
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-navy);
    background-image: url('For website/backgroundCropped.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========================================
   Brand Banner (Top & Bottom)
   ======================================== */
.brand-banner {
    position: relative;
    width: 100%;
    height: 65px;
    background-color: var(--color-yellow);
    overflow: hidden;
    z-index: var(--z-banner);
}

.brand-banner--middle {
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
}

.brand-banner__track {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
    position: absolute;
    white-space: nowrap;
    animation: scroll-banner 40s linear infinite;
    will-change: transform;
}

.brand-banner__track--reverse {
    animation: scroll-banner-reverse 45s linear infinite;
}

.brand-banner__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.brand-banner__item img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-banner__item img[src*="habilogo"] {
    height: 30px;
}

.brand-banner__item img[src*="NEW-ghd-good-hair-day_BLK"] {
    height: 40px;
}

.brand-banner__item img[src*="sacheu_beauty"] {
    height: 40px;
}

.brand-banner__item img[src*="soldejaneiro"] {
    height: 80px;
}

.brand-banner__item img[src*="anua"] {
    height: 22px;
}

.brand-banner__item img[src*="biodance"] {
    height: 40px;
}

.brand-banner__item img[src*="fwee"] {
    height: 22px;
}

.brand-banner__item img[src*="Carolina-Herrera-Logo"] {
    height: 120px;
}

.brand-banner__item img[src*="BOJ"] {
    height: 80px;
}

.brand-banner__item img[src*="sundae"] {
    height: 30px;
}

.brand-banner__item img[src*="milkmakeup"] {
    height: 60px;
}

/* Brand Banner Text */
.brand-banner__item--text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-navy);
    letter-spacing: 0.05em;
    animation: item-bounce 2s ease-in-out infinite;
}

.brand-banner__text-large {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-navy);
    padding: 0 2rem;
    animation: item-bounce 2.5s ease-in-out infinite;
}

/* Brand Banner Shapes */
.brand-banner__item--circle {
    width: 40px;
    height: 40px;
    background-color: var(--color-navy);
    border-radius: 50%;
    animation: shape-rotate 3s ease-in-out infinite;
}

.brand-banner__item--square {
    width: 35px;
    height: 35px;
    background-color: var(--color-coral);
    animation: shape-rotate 2.5s ease-in-out infinite reverse;
}

.brand-banner__item--diamond {
    width: 35px;
    height: 35px;
    background-color: var(--color-pink-medium);
    transform: rotate(45deg);
    animation: shape-pulse 2s ease-in-out infinite;
}

.brand-banner__item--star {
    width: 40px;
    height: 40px;
    background:
        linear-gradient(var(--color-yellow), var(--color-yellow)) no-repeat center,
        linear-gradient(var(--color-yellow), var(--color-yellow)) no-repeat center;
    background-size: 100% 20%, 20% 100%;
    position: relative;
    animation: star-twinkle 1.5s ease-in-out infinite;
}

.brand-banner__item--star::before,
.brand-banner__item--star::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(var(--color-navy), var(--color-navy)) no-repeat center,
        linear-gradient(var(--color-navy), var(--color-navy)) no-repeat center;
    background-size: 100% 15%, 15% 100%;
    transform: translate(-50%, -50%);
}

.brand-banner__item--star::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Beauty Icon Shapes */
.brand-banner__item--lipstick {
    width: 20px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-coral) 60%, var(--color-navy) 60%);
    border-radius: 10px 10px 5px 5px;
    animation: item-bounce 2s ease-in-out infinite;
}

.brand-banner__item--mirror {
    width: 35px;
    height: 35px;
    background-color: var(--color-white);
    border: 3px solid var(--color-navy);
    border-radius: 50%;
    position: relative;
    animation: shape-rotate 3s ease-in-out infinite;
}

.brand-banner__item--mirror::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 15px;
    background-color: var(--color-navy);
    border-radius: 0 0 4px 4px;
}

.brand-banner__item--brush {
    width: 15px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-navy) 70%, var(--color-coral) 70%);
    border-radius: 0 0 8px 8px;
    animation: item-bounce 2.2s ease-in-out infinite;
}

/* ========================================
   Banner Animations
   ======================================== */
@keyframes scroll-banner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-banner-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes item-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes shape-rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

@keyframes shape-pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
    }
    50% {
        transform: rotate(45deg) scale(1.2);
    }
}

@keyframes star-twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.9);
    }
}

/* ========================================
   Main Content
   ======================================== */
.main-content {
    position: relative;
    z-index: var(--z-content);
}

/* Desktop: 25% margins on each side, 50% content width */
@media (min-width: 1024px) {
    .main-content {
        padding-left: 25%;
        padding-right: 25%;
    }
    
    /* Exclude fixed line illustrations from margin constraint */
    .hero__decoration--line-art {
        position: fixed;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    background:
        linear-gradient(var(--color-white), var(--color-white)) no-repeat center,
        linear-gradient(var(--color-white), var(--color-white)) no-repeat center;
    background-size: 100% 20%, 20% 100%;
    animation: twinkle 2s ease-in-out infinite;
    will-change: opacity, transform;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(var(--color-white), var(--color-white)) no-repeat center,
        linear-gradient(var(--color-white), var(--color-white)) no-repeat center;
    background-size: 100% 15%, 15% 100%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.sparkle--1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle--2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.sparkle--3 {
    top: 50%;
    left: 10%;
    animation-delay: 1s;
}

.sparkle--4 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.sparkle--5 {
    bottom: 20%;
    left: 20%;
    animation-delay: 0.8s;
}

.sparkle--6 {
    bottom: 25%;
    right: 25%;
    animation-delay: 1.2s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8) rotate(180deg);
    }
}

/* Lips Illustration */
.hero__lips {
    position: absolute;
    left: 8%;
    top: 15%;
    width: 140px;
    height: 90px;
    animation: float 4s ease-in-out infinite;
    transform: rotate(-12deg);
}

.lips-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(255, 224, 61, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: rotate(-12deg) translateY(0);
    }
    50% {
        transform: rotate(-12deg) translateY(-12px);
    }
}

/* Lipstick Illustration */
.hero__lipstick {
    position: absolute;
    left: 5%;
    top: 50%;
    width: 60px;
    height: 140px;
    animation: float-delayed 4.5s ease-in-out infinite;
}

.lipstick-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(255, 224, 61, 0.3));
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Disco Ball Illustration */
.hero__disco-ball {
    position: absolute;
    right: 8%;
    top: 12%;
    width: 130px;
    height: 170px;
    animation: swing 3s ease-in-out infinite;
    transform-origin: 50% 15%;
}

.disco-ball-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(255, 224, 61, 0.3));
}

@keyframes swing {
    0%, 100% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
}

/* Hero Decorative Elements */
.hero__decoration {
    display: none; /* Hidden by default on mobile and tablet */
    position: absolute;
    top:0; /* Start from the very top of the page */
    z-index: -1;
}

.hero__decoration--line-art {
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    height: auto;
    z-index: -1;
}

/* Show on screens above 1024px (desktop) - stays at top, scrolls with page */
@media (min-width: 1025px) {
    .hero__decoration {
        display: block;
        position: absolute;
        top: -100px; /* Start from the very top of the page */
    }
}

/* Logo */
.hero__logo {
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.hero__logo-lockup {
    width: 476px;
    height: 308.8px;
    margin: 0 auto var(--spacing-sm);
    display: block;
    position: relative;
    z-index: 2;
}

.hero__logo-boots {
    display: block;
    font-family: var(--font-script);
    font-size: 3.5rem;
    color: var(--color-navy);
    font-weight: 400;
}

.hero__logo-beauty {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-navy);
    letter-spacing: 0.1em;
}

/* Event Title */
.hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-navy);
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-md);
    background: var(--color-yellow);
    border: 4px solid var(--color-yellow);
    padding: 0.4rem 1.2rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Details */
.hero__details {
    margin-bottom: var(--spacing-md);
}

.hero__location,
.hero__date {
    font-size: 48px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.hero__date {
    margin-top: -8px;
}

/* Tagline */
.hero__tagline {
    font-size: 36px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0 auto;
    line-height: 1.5;
}

/* ========================================
   Stars Animation
   ======================================== */
.stars-animation {
    text-align: center;
    /* padding: var(--spacing-md) 0; */
}

.stars-animation__gif {
    width: 238px;
    height: 124px;
    display: block;
    margin: 0 auto;
}

/* ========================================
   Activities Section
   ======================================== */
.activities {
    padding: var(--spacing-xl) var(--spacing-md);
    background: transparent;
}

.activities__container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.activities__title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.activities__list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.activities__item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-white);
}

.activities__star {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    transition: transform var(--duration-fast) ease;
}

.star-outline {
    width: 100%;
    height: 100%;
    animation: star-pulse 1.5s ease-in-out infinite;
}

.activities__item:hover .star-outline {
    animation: star-pulse-hover 0.6s ease-in-out;
}

.activities__text {
    font-weight: 400;
    line-height: 1.4;
}

.activities__container h3 {
    font-size: 40px;
    font-weight: 400;
    color: var(--color-white);
    margin-top: var(--spacing-lg);
    text-align: center;
}

.activities__container h3 span {
    color: #FFF200;
    font-weight: 700;
}

@keyframes star-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes star-pulse-hover {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.3) rotate(72deg);
    }
}

/* ========================================
   Location Section
   ======================================== */
.location {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.location__container {
    max-width: 900px;
    margin: 0 auto;
}

.location__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: lowercase;
}

.location__warning {
    font-size: 26px;
    font-weight: 700;
    color: #FFF200;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.location__address {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-white);
    font-style: normal;
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
    text-align: center;
}

.location__address div {
    color: #FFF200;
}

.location__map {
    width: 420px;
    height: 420px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform var(--duration-normal) ease;
}

.location__map:hover {
    transform: scale(1.02);
}

.location__map-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.location__map-link::after {
    content: 'Click to open in Google Maps';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
    pointer-events: none;
    z-index: 10;
}

.location__map-link:hover::after {
    opacity: 0.95;
}

.location__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: 0;
    margin: 0;
}

.faq__container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq__header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: var(--spacing-xl);
    /* padding: var(--spacing-md) 0; */
}

.faq__header-image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.faq__title {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-yellow);
    border: 5px solid var(--color-yellow);
    padding: 0.5rem 2rem;
    background-color: transparent;
    border-radius: 0;
    transform: rotate(-3deg);
    position: relative;
    z-index: 2;
}

.faq__star {
    flex-shrink: 0;
    animation: star-pulse 2s ease-in-out infinite;
}

.faq__star--left {
    width: 60px;
    height: 60px;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.faq__star--right {
    width: 50px;
    height: 50px;
    transform: rotate(20deg);
    animation-delay: 0.5s;
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 700px;
    margin: 0 60px;
}

.faq__item {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0;
    font-size: 26px;
    font-weight: 700;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: opacity var(--duration-fast) ease;
}

.faq__question:hover {
    opacity: 0.9;
}

.faq__question:focus {
    outline: 2px solid var(--color-yellow);
    outline-offset: 2px;
}

.faq__arrow {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    transform: rotate(-90deg);
    transition: transform var(--duration-normal) cubic-bezier(0.4, 0, 0.2, 1);
}

.chevron-icon {
    width: 100%;
    height: 100%;
}

.faq__question[aria-expanded="true"] .faq__arrow {
    transform: rotate(0deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-content {
    padding: var(--spacing-xs) 0 0 2.2rem;
    color: var(--color-white);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

.faq__answer-content p {
    margin-bottom: var(--spacing-xs);
}

.faq__answer-content p:last-child {
    margin-bottom: 0;
}

.faq__answer-content strong {
    font-weight: 400;
    color: var(--color-white);
}

.faq__hours {
    color: #FFF200;
    font-weight: 400;
}

/* ========================================
   Bottom Text
   ======================================== */
.bottom-text {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
}

.bottom-text p {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    line-height: 1.5;
}

.bottom-button {
    display: inline-block;
    width: 330px;
    height: 58px;
    background-color: #171A60;
    color: var(--color-white);
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 29px;
    line-height: 58px;
    text-align: center;
    margin-top: var(--spacing-md);
    transition: transform var(--duration-fast) ease, opacity var(--duration-fast) ease;
}

.bottom-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.bottom-disclaimer {
    margin-top: var(--spacing-md);
    text-align: center;
}

.bottom-disclaimer p {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    line-height: 1.4;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
        --spacing-xxl: 3rem;
    }

    .brand-banner {
        height: 65px;
    }

    .brand-banner__item--text {
        font-size: 1rem;
    }

    .brand-banner__text-large {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero {
        padding: var(--spacing-lg) var(--spacing-sm) 0;
        min-height: 70vh;
        text-align: center;
        margin-bottom: 0;
    }

    .hero__container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__logo-lockup {
        max-width: 90%;
        height: auto;
    }

    .hero__lips {
        width: 150px;
        height: 75px;
    }

    .hero__logo-boots {
        font-size: 2.5rem;
    }

    .hero__logo-beauty {
        font-size: 1.8rem;
    }

    .hero__title {
        font-size: 2.5rem;
        padding: 0.3rem 1rem;
    }

    .hero__location,
    .hero__date {
        font-size: 24px;
        font-weight: 400;
        text-align: center;
    }

    .hero__tagline {
        font-size: 20px;
        font-weight: 400;
        text-align: center;
    }

    .hero + .stars-animation {
        margin-top: -50px;
    }

    .stars-animation__gif {
        width: 166.6px;
        height: 86.8px;
    }

    .activities {
        text-align: center;
    }

    .activities__container {
        width: 100%;
    }

    .activities__title {
        font-size: 18px;
        font-weight: 700;
        text-align: center;
    }

    .activities__list {
        width: 100%;
        max-width: 100%;
    }

    .activities__item {
        font-size: 18px;
        font-weight: 400;
    }

    .activities__container h3 {
        font-size: 20px;
    }

    .activities__star {
        font-size: 1.5rem;
    }

    .location {
        text-align: center;
    }

    .location__container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .location__warning {
        font-size: 18px;
    }

    .location__address {
        font-size: 18px;
    }

    .location__map {
        width: 300px;
        height: 300px;
    }

    .faq {
        text-align: center;
    }

    .faq__container {
        width: 100%;
    }

    .faq__title {
        font-size: 2rem;
        padding: var(--spacing-xs) var(--spacing-md);
        transform: rotate(-3deg);
    }

    .faq__star--left {
        width: 45px;
        height: 45px;
    }

    .faq__star--right {
        width: 38px;
        height: 38px;
    }

    .faq__header {
        gap: 1rem;
    }

    .faq__question {
        font-size: 18px;
        font-weight: 700;
        padding: 0;
    }

    .faq__answer-content {
        font-size: 18px;
        font-weight: 400;
        padding: var(--spacing-xs) 0 0 2rem;
    }

    .bottom-text {
        width: 100%;
        text-align: center;
    }

    .bottom-text p {
        font-size: 18px;
    }

    .bottom-button {
        max-width: 90%;
        font-size: 18px;
    }

    .bottom-disclaimer {
        width: 100%;
        padding: 0 var(--spacing-sm);
    }
    .bottom-disclaimer p {
        font-size: 13px;
    }
}

/* ========================================
   Privacy Notice Popup
   ======================================== */
.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, var(--color-navy) 0%, #002870 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--color-yellow);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.privacy-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.privacy-popup.hide {
    transform: translateY(100%);
    opacity: 0;
}

.privacy-popup__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.privacy-popup__content {
    flex: 1;
}

.privacy-popup__text {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.privacy-popup__link {
    color: var(--color-yellow);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity var(--duration-fast) ease;
}

.privacy-popup__link:hover {
    opacity: 0.8;
}

.privacy-popup__link:focus {
    outline: 2px solid var(--color-yellow);
    outline-offset: 2px;
    border-radius: 2px;
}

.privacy-popup__button {
    flex-shrink: 0;
    background-color: var(--color-yellow);
    color: var(--color-navy);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform var(--duration-fast) ease,
                box-shadow var(--duration-fast) ease,
                background-color var(--duration-fast) ease;
    box-shadow: 0 4px 12px rgba(255, 224, 61, 0.3);
}

.privacy-popup__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 224, 61, 0.4);
    background-color: #FFE859;
}

.privacy-popup__button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 224, 61, 0.3);
}

.privacy-popup__button:focus {
    outline: 3px solid var(--color-white);
    outline-offset: 3px;
}

/* Responsive Styles for Privacy Popup */
@media (max-width: 767px) {
    .privacy-popup__container {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 1rem;
        gap: 1rem;
    }

    .privacy-popup__text {
        font-size: 14px;
        text-align: center;
    }

    .privacy-popup__button {
        width: 100%;
        padding: 1rem;
        font-size: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .privacy-popup__container {
        padding: 1.5rem 1.5rem;
    }

    .privacy-popup__text {
        font-size: 15px;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero__title {
        font-size: 3.5rem;
    }

    .location__map {
        width: 400px;
        height: 400px;
    }
}

/* Desktop Large (1440px+) */
@media (min-width: 1440px) {
    .hero__title {
        font-size: 5rem;
    }

    .activities__title {
        font-size: 26px;
        font-weight: 700;
    }

    .faq__title {
        font-size: 3.5rem;
    }
}

/* ========================================
   Performance Optimizations
   ======================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .brand-banner,
    .sparkle {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}