/* =========================================================
   CSS VARIABLES (Design Tokens) - OPTIMIZED
========================================================= */
:root {
    /* Theme Colors */
    --color-primary: #ff0000;
    --color-hover: #ff3b3b;
    --color-accent: #ff3b3b;
    
    /* Neutral Colors */
    --color-black: #000000;
    --color-dark: #111111;
    --color-charcoal: #1a1a1a;
    --color-text: #222222;
    --color-text-light: #444444;
    --color-text-muted: #666666;
    --color-text-subtle: #999999;
    --color-white: #ffffff;
    --color-bg: #ffffff;
    --color-bg-light: #f5f5f5;
    --color-bg-dark: #f7f7f7;
    
    /* Zambian Flag Colors */
    --color-zambia-orange: #e85b0f;
    --color-zambia-green: #198d3b;
    
    /* Typography */
    --font-primary: "Poppins", sans-serif;
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    /* Font Sizes - Fluid Typography */
    --font-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --font-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --font-base: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
    --font-lg: clamp(1.125rem, 1rem + 0.5vw, 1.3rem);
    --font-xl: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
    --font-2xl: clamp(2rem, 1.5rem + 2vw, 3rem);
    --font-3xl: clamp(2.5rem, 1.5rem + 2.5vw, 4rem); /* Fixed: Changed 20rem to 1.5rem */
    --font-4xl: clamp(3rem, 2.5rem + 2.5vw, 4.5rem);
    --font-hero: clamp(3.5rem, 2rem + 3vw, 5.5rem); /* Fixed: Proper clamp values */
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Layout */
    --container-width: 92%;
    --container-max: 1400px;
    --header-height: 100px;
    --border-radius-sm: 12px;
    --border-radius-md: 16px;
    --border-radius-lg: 18px;
    --border-radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 70px rgba(0, 0, 0, 0.18);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
    --transition-slower: 0.6s ease;
    --transition-slowest: 0.8s ease;
    
    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-notification: 1080;
    --z-top: 1100;
}

/* =========================================================
   GLOBAL RESET & BASE STYLES
========================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

/* =========================================================
   UTILITY CLASSES
========================================================= */

/* Container */
.container {
    width: min(var(--container-width), var(--container-max));
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Page Container (for non-home pages) */
.page-container {
    padding-top: calc(var(--header-height) + var(--space-lg));
    min-height: 100vh;
}

/* Text Utilities */
.text-primary { color: var(--color-primary); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }

/* Spacing Utilities */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* Fade Animations */
.fade-section,
.fade-pop {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slowest), transform var(--transition-slowest);
}

.fade-section.visible,
.fade-pop.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* =========================================================
   HEADER & NAVIGATION
========================================================= */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
    will-change: transform, backdrop-filter;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #ddd;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    width: var(--container-width);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-sm) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-shrink: 0;
}

.logo {
    display: block;
    line-height: 0;
}

.logo a {
    display: block;
    transition: opacity var(--transition-base);
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 40px;
    background-color: var(--color-white);
    transition: opacity var(--transition-base);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav a {
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    font-size: var(--font-sm);
    letter-spacing: 0.5px;
    position: relative;
    transition: color var(--transition-base);
    padding: var(--space-xs) 0;
}

.nav a:hover,
.nav a:focus {
    color: var(--color-primary);
    outline: none;
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.nav a:hover::after,
.nav a:focus::after {
    width: 100%;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 5.3rem; /* Fixed: Changed from 80px to rem unit */
}

.social-icons a {
    color: var(--color-text);
    font-size: 1.5rem;
    transition: color var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover,
.social-icons a:focus {
    color: var(--color-primary);
    outline: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-text);
    cursor: pointer;
    z-index: var(--z-top);
    position: relative;
    width: 32px;
    height: 32px;
    padding: 0;
    transition: color var(--transition-base);
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
    color: var(--color-primary);
    outline: none;
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.open .open-icon {
    display: none;
}

.mobile-menu-btn.open .close-icon {
    display: block;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 420px;
    height: 100vh;
    background: #fff;
    padding: 120px 40px 40px;
    display: flex;
    flex-direction: column;
    z-index: 1001;
    transition: right 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Open state */
.mobile-menu.open {
    right: 0;
}

/* Close Button */
.close-menu-btn {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    color: var(--color-primary);
    background: #fff;
    border: none; /* Added to remove default button border */
    border-radius: 50%;
    cursor: pointer;
    z-index: 1003;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
}

/* Show close button when menu opens */
.mobile-menu.open .close-menu-btn {
    opacity: 1;
    pointer-events: auto;
}

/* Hover effect */
.close-menu-btn:hover {
    transform: rotate(90deg) scale(1.1);
    background: color-mix(in srgb, var(--color-primary) 15%, white);
}

/* Show close button when menu opens */
.mobile-menu.open::before {
    opacity: 1;
    pointer-events: auto;
}

/* Hover */
.mobile-menu::before:hover {
    transform: rotate(90deg) scale(1.1);
    background: color-mix(in srgb, var(--color-primary) 15%, white);
}

/* Menu Links */
.mobile-menu a {
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--color-text);
    padding: 16px 0;
    font-weight: 700;
    transition: color var(--transition-base);
}

.mobile-menu a:hover,
.mobile-menu a:focus {
    color: var(--color-primary);
}

/* Social */
.mobile-social {
    margin-top:-10px;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 40px;
}

.mobile-social a {
    font-size: 1.3rem;
    color: var(--color-text);
    transition: color var(--transition-base);
}

.mobile-social a:hover,
.mobile-social a:focus {
    color: var(--color-primary);
}

/* Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: opacity .3s ease, visibility .3s ease;
}

.mobile-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero {
    height: 100vh;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.226),
            rgba(0, 0, 0, 0.307)
        ),
        var(--hero-bg, #000);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Changed from fixed for mobile performance */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: var(--z-base);
    padding: 0 var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: var(--font-hero);
    font-weight: var(--font-weight-black);
    letter-spacing: clamp(2px, 1vw, 6px);
    color: var(--color-white);
    text-shadow: 0 4px 40px rgb(0, 0, 0);
    opacity: 0;
    animation: heroPop 1.2s ease-out forwards;
    line-height: 1.1;
}

@keyframes heroPop {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero visibility control */
body:not(.home-page) .hero {
    display: none;
}

/* =========================================================
   SECTIONS - Reusable Components
========================================================= */

/* Base Section */
.section {
    padding: var(--space-5xl) var(--space-md);
}

.section-small {
    padding: var(--space-4xl) var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    font-size: var(--font-2xl);
    letter-spacing: clamp(1px, 0.5vw, 3px);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    display: inline-block;
    margin: 0 var(--space-sm);
    line-height: 1.2;
}

.decorative-dots {
    color: var(--color-primary);
    font-size: var(--font-lg);
    vertical-align: middle;
}

/* =========================================================
   CIRCLE SHOWCASE
========================================================= */
.circle-showcase {
    width: 100%;
    padding: var(--space-5xl) 5%;
    background: var(--color-bg);
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-top: -100px;
}

.circle-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.circle-item {
    width: min(220px, 80vw);
    height: min(220px, 80vw);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    position: relative;
    background: var(--color-white);
    cursor: pointer;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    will-change: transform, opacity;
}

.circle-item:nth-child(1) { animation-delay: 0.2s; }
.circle-item:nth-child(2) { animation-delay: 0.4s; }
.circle-item:nth-child(3) { animation-delay: 0.6s; }

.circle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower), filter var(--transition-slower);
}

.circle-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.1);
}

.circle-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-full);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.circle-item:hover::after {
    opacity: 1;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =========================================================
   STORY SECTION
========================================================= */
.story-section {
    /* Combined margins for cleaner code */
    width: min(var(--container-width), var(--container-max));
    margin: -50px auto -100px auto; 

}

.story-content {
    display: flex; /* Added so 'gap' actually works */
    flex-direction: column;
    gap: var(--space-3xl);
    
    /* The Fix: Justify the text, but center the last line */
    text-align: justify;
    text-align-last: center; 
}

.story-column p {
    margin-bottom: var(--space-lg);
    font-size: var(--font-base);
    color: var(--color-text-light);
    
    /* Improvement: Better readability */
    line-height: 1.6; 
    hyphens: auto; 
}

/* =========================================================
   TIME CARDS (Opening Hours)
========================================================= */
.our-times {
    padding: var(--space-5xl) 5%;
    background: var(--color-bg);
    text-align: center;
}

.times-title {
    font-size: var(--font-3xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: clamp(1px, 0.5vw, 2px);
    margin-bottom: var(--space-3xl);
    color: var(--color-text);
}

.times-title span {
    color: var(--color-primary);
    font-weight: var(--font-weight-black);
}

.times-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: var(--space-xl);
}

.time-card {
    border: 2px solid var(--color-text);
    border-radius: var(--border-radius-sm);
    padding: var(--space-xl) var(--space-lg);
    transition: all var(--transition-slow);
    cursor: pointer;
    background: var(--color-white);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp var(--transition-slowest) forwards;
    will-change: transform, opacity, background-color;
}

.time-card:nth-child(1) { animation-delay: 0.1s; }
.time-card:nth-child(2) { animation-delay: 0.2s; }
.time-card:nth-child(3) { animation-delay: 0.3s; }
.time-card:nth-child(4) { animation-delay: 0.4s; }
.time-card:nth-child(5) { animation-delay: 0.5s; }
.time-card:nth-child(6) { animation-delay: 0.6s; }
.time-card:nth-child(7) { animation-delay: 0.7s; }

.time-card i {
    font-size: 28px;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
    transition: color var(--transition-base);
}

.time-card h4 {
    font-size: var(--font-lg);
    margin-bottom: var(--space-xs);
    color: var(--color-text);
    transition: color var(--transition-base);
}

.time-card p {
    font-size: var(--font-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-base);
}

.time-card:hover,
.time-card:focus-within {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-10px);
}

.time-card:hover p,
.time-card:focus-within p {
    color: #f0f0f0;
}

.time-card:hover i,
.time-card:focus-within i {
    color: var(--color-primary);
}

.time-card:hover h4,
.time-card:focus-within h4 {
    color: var(--color-white);
}

.time-card.highlight {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.time-card.highlight p {
    color: #ccc;
}

.time-card.highlight i {
    color: var(--color-primary);
}

.time-card.highlight h4 {
    color: var(--color-white);
}

/* =========================================================
   PROUDLY ZAMBIAN
========================================================= */
.proudly-section {
    text-align: center;
    padding: var(--space-5xl) var(--space-lg);
    background: var(--color-white);
}

.proudly-content h2 {
    font-size: var(--font-3xl);
    color: var(--color-primary);
    letter-spacing: clamp(2px, 1vw, 4px);
    margin-bottom: var(--space-xs);
}

.proudly-content h3 {
    font-size: var(--font-4xl);
    font-weight: var(--font-weight-black);
    color: var(--color-dark);
    line-height: 1;
}

.flag-ribbon {
    width: min(150px, 80%);
    height: 12px;
    margin: var(--space-xl) auto 0;
    background: linear-gradient(
        to right,
        var(--color-zambia-orange) 33%,
        var(--color-zambia-green) 33%,
        var(--color-zambia-green) 66%,
        var(--color-black) 66%
    );
    border-radius: 20px;
}

/* =========================================================
   GALLERY
========================================================= */
.gallery-section {
    padding: var(--space-5xl) 5%;
    background: var(--color-white);
    margin-top: -80px;
    margin-bottom: -150px;
}

.gallery-header {
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
    text-align: center;
}

.gallery-header h1,
.gallery-header h2 {
    font-size: var(--font-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-sm);
    color: var(--color-text);
    letter-spacing: clamp(1px, 0.5vw, 2px);
}

.gallery-header p {
    font-size: var(--font-base);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.gallery-container {
    max-width: var(--container-max);
    margin: 0 auto;
    
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--space-xl);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    background: var(--color-bg-light);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slower), box-shadow var(--transition-slower);
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slowest);
    display: block;
}

.gallery-item:hover,
.gallery-item:focus-within {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-within .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: var(--font-lg);
    margin-bottom: var(--space-xs);
    color: var(--color-white);
}

.gallery-overlay p {
    font-size: var(--font-sm);
    color: #ccc;
}

/* Gallery Layout Variations */
.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* =========================================================
   MASONRY LAYOUT
========================================================= */
.masonry-section {
    max-width: var(--container-max);
    margin: var(--space-5xl) auto;
    padding: 0 5%;
}

.masonry-title {
    text-align: center;
    font-size: var(--font-2xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: clamp(1px, 0.5vw, 3px);
    margin-bottom: var(--space-3xl);
    color: var(--color-text);
}

.masonry-grid {
    column-count: 3;
    column-gap: var(--space-xl);
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: var(--space-xl);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slower);
    will-change: transform, opacity;
}

.masonry-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform var(--transition-slower);
}

.masonry-item:hover,
.masonry-item:focus-within {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.masonry-item:hover img,
.masonry-item:focus-within img {
    transform: scale(1.05);
}

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-5xl) var(--space-lg) var(--space-xl);
    background: var(--color-bg);
}

.contact-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    gap: var(--space-5xl);
}

.contact-info {
    padding: var(--space-3xl) 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: var(--space-5xl);
}

.contact-info h1 {
    font-size: var(--font-3xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: clamp(2px, 1vw, 4px);
    margin-bottom: var(--space-lg);
    line-height: 1;
    color: var(--color-text);
}

.contact-info .subtitle {
    font-size: var(--font-base);
    letter-spacing: clamp(1px, 0.5vw, 3px);
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-3xl);
}

.info-block {
    margin-bottom: var(--space-3xl);
}

.info-label {
    font-size: var(--font-xs);
    letter-spacing: clamp(1px, 0.5vw, 3px);
    text-transform: uppercase;
    color: var(--color-text-subtle);
    margin-bottom: var(--space-sm);
}

.info-content {
    font-size: var(--font-lg);
    letter-spacing: 1px;
    line-height: 1.8;
    color: var(--color-text);
    transition: color var(--transition-base);
}

.info-content:hover {
    color: var(--color-primary);
}

.info-content a {
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.info-content a:hover,
.info-content a:focus {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    outline: none;
}

/* Contact Form */
.contact-form {
    padding: var(--space-3xl) 0;
}

.form-group {
    margin-bottom: var(--space-xl);
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    color: var(--color-text);
    font-size: var(--font-base);
    padding: var(--space-sm) 0;
    font-family: var(--font-primary);
    letter-spacing: 1px;
    transition: border-color var(--transition-base);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-subtle);
    letter-spacing: 1px;
    font-size: var(--font-sm);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom: 2px solid var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--color-text);
    color: var(--color-white);
    border: 2px solid var(--color-text);
    padding: var(--space-md) var(--space-3xl);
    font-size: var(--font-xs);
    letter-spacing: clamp(1px, 0.5vw, 3px);
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover,
.submit-btn:focus {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--color-primary) 40%, transparent);
    outline: none;
}

/* Hours Section */
.hours-section {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-title {
    font-size: var(--font-xs);
    letter-spacing: clamp(1px, 0.5vw, 3px);
    text-transform: uppercase;
    color: var(--color-text-subtle);
    margin-bottom: var(--space-lg);
}

.hours-list {
    line-height: 2;
    font-size: var(--font-base);
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-text);
}

.hours-list span:first-child {
    color: var(--color-text-muted);
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 60px 0 0;
    margin-top: 80px;
}

/* Floating Food Icons Background */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.03;
    pointer-events: none;
}

.food-icon {
    position: absolute;
    font-size: 40px;
    color: #fff;
    animation: float 20s infinite ease-in-out;
    will-change: transform;
}

.food-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.food-icon:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
.food-icon:nth-child(3) { top: 40%; left: 15%; animation-delay: 4s; }
.food-icon:nth-child(4) { bottom: 30%; right: 20%; animation-delay: 6s; }
.food-icon:nth-child(5) { top: 60%; left: 8%; animation-delay: 8s; }
.food-icon:nth-child(6) { bottom: 15%; left: 25%; animation-delay: 10s; }
.food-icon:nth-child(7) { top: 30%; right: 5%; animation-delay: 12s; }
.food-icon:nth-child(8) { bottom: 40%; right: 30%; animation-delay: 14s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(-5deg); }
    75% { transform: translateY(-20px) rotate(3deg); }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Logo Section */
.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.footer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Main Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #fff;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95em;
}

.footer-section a {
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    margin-bottom: 12px;
}

.footer-section a:hover {
    color: #fff;
    padding-left: 10px;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2em;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item a {
    display: inline;
    margin: 0;
}

.contact-item a:hover {
    padding-left: 0;
    text-decoration: underline;
}

/* Opening Hours */
.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.95em;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 25px;
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2em;
    transition: all 0.3s ease;
    margin: 0;
}

.footer-social a:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
    padding-left: 0;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    text-align: center;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* =========================================================
   VENUE PAGE - THE DARE SECTION
========================================================= */
.dare-section {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.dare-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    padding: 80px 40px;
    text-align: center;
    position: relative;
}

.dare-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffffff;
}

.dare-hero h1 {
    font-size: clamp(3.5rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: clamp(2px, 2vw, 8px);
    color: #ffffff;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.dare-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    text-align: center;
}

.dare-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 700;
    letter-spacing: clamp(1px, 0.5vw, 3px);
    color: #222;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.dare-description {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    line-height: 1.8;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 0.3px;
    font-weight: 400;
}

.dare-toast {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    font-weight: 600;
    line-height: 1.8;
    color: #222;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 0.5px;
}

.dare-illustrations {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(20px, 4vw, 60px);
    margin-top: 40px;
    flex-wrap: wrap;
}

.dare-icon {
    width: clamp(100px, 20vw, 150px);
    height: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIcon 0.8s ease forwards;
    will-change: transform, opacity;
}

.dare-icon:nth-child(1) { animation-delay: 0.2s; }
.dare-icon:nth-child(2) { animation-delay: 0.4s; }
.dare-icon:nth-child(3) { animation-delay: 0.6s; }

.dare-icon img {
    width: 100%;
    height: auto;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.dare-icon:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@keyframes fadeUpIcon {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   VENUE PAGE - MEETINGS SECTION
========================================================= */
.meetings-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 30px 90px;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
}

/* Title */
.meetings-title {
    font-size: clamp(3.5rem, 10vw, 5rem);
    font-weight: 300;
    letter-spacing: clamp(2px, 2vw, 6px);
    margin-bottom: 50px;
    color: #000;
    text-align: center;
}

/* Grid layout */
.meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
    align-items: start;
}

/* Text */
.meetings-text {
    grid-column: 1 / 2;
}

.meetings-text p {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    line-height: 1.8;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    max-width: 420px;
    text-align: center;
}

/* Images */
.meetings-image {
    width: 100%;
    overflow: hidden;
}

.meetings-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Specific placements */
.meetings-image.tall {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    height: 100%;
    min-height: 420px;
}

.meetings-image.wide {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 260px;
}

/* =========================================================
   PRIME PAGE - BIKE ANIMATION
========================================================= */
.bike-container {
    width: 100%;
    height: 220px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #333;
}

.bike-wrapper {
    position: absolute;
    bottom: 10px;
    left: -300px;
    width: 250px;
    animation: rideAcross 6s linear infinite;
    will-change: transform;
}

.bike-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    animation: bounce 0.3s infinite alternate ease-in-out;
}

@keyframes rideAcross {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 300px));
    }
}

@keyframes bounce {
    from { transform: translateY(0); }
    to   { transform: translateY(-3px); }
}

.paused {
    animation-play-state: paused;
}

/* =========================================================
   PRIME PAGE - CONTENT
========================================================= */
.prime-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px 120px;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
}

.prime-title {
    font-size: clamp(2.8rem, 7vw, 4rem);
    font-weight: 300;
    letter-spacing: clamp(2px, 2vw, 6px);
    margin-bottom: 35px;
    color: #000;
    text-align: center;
}

.prime-text {
    max-width: 900px;
    margin: 0 auto 80px;
    font-size: clamp(0.8rem, 1vw, 0.85rem);
    line-height: 1.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    color: #111;
}

.prime-images {
    margin-top: 250px;
    position: relative;
    height: 320px;
}

.prime-image {
    position: absolute;
    background: #ffffff;
    padding: 20px;
}

.prime-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-left {
    width: 80%;
    height: 500px;
    left: 0;
    bottom: 0;
}

.image-right {
    width: 50%;
    height: 440px;
    right: 0;
    top: 0;
}

/* =========================================================
   SPA GALLERY SECTION
========================================================= */
.spa-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 30px;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    text-align: center;
}

.spa-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    letter-spacing: clamp(2px, 1vw, 4px);
    margin-bottom: 18px;
    color: #000;
}

.spa-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: clamp(0.75rem, 1vw, 0.8rem);
    line-height: 1.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
}

.spa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    grid-auto-rows: 420px;
    gap: 20px;
}

.spa-item {
    overflow: hidden;
}

.spa-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spa-item.large {
    grid-column: span 2;
}

.spa-item.wide {
    grid-column: span 3;
}

/* =========================================================
   PAGE LOADER
========================================================= */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-bubbles {
    display: flex;
    gap: 18px;
}

.loader-bubbles span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    animation: bubbleSpin 1.2s infinite ease-in-out;
    will-change: transform, opacity;
}

.loader-bubbles span:nth-child(1) {
    background: #ff3b3b;
    animation-delay: 0s;
}

.loader-bubbles span:nth-child(2) {
    background: #1fa463;
    animation-delay: 0.15s;
}

.loader-bubbles span:nth-child(3) {
    background: #4fb6e8;
    animation-delay: 0.3s;
}

@keyframes bubbleSpin {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-14px) scale(1.3);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s infinite;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    color: white;
    font-size: 30px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float::before {
    content: 'Chat with us';
    position: absolute;
    right: 70px;
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    right: 60px;
    border-left: 8px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float.with-badge::after {
    content: '1';
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff3838;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

/* Large Tablets & Small Desktops */
@media (max-width: 1100px) {
    .masonry-grid {
        column-count: 2;
    }
    
    .times-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .meetings-image.tall {
        grid-column: auto;
        grid-row: auto;
        height: auto;
        min-height: unset;
    }
    
    .meetings-grid {
        grid-template-columns: 1fr;
    }
    
    .meetings-text p {
        max-width: 100%;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .nav,
    .social-icons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo img {
        height: 60px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-right: 0;
        padding-bottom: var(--space-3xl);
    }
    
    .spa-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    
    .spa-item.large,
    .spa-item.wide {
        grid-column: span 1;
    }
    
    .prime-images {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: -5px;
        margin-top: -100px;
    }
    
    .prime-image {
        position: relative;
        width: 100%;
        height: 200px;
    }
    
    .prime-image img {
        height: auto;
    }
     .prime-text{
         margin-bottom: 100px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .footer-logos {
        flex-direction: row;
        gap: 30px;
    }
    
    .footer-logo img {
        height: 60px;
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    .circle-container {
        gap: var(--space-xl);
    }
    
    .circle-item {
        width: 180px;
        height: 180px;
    }
    
    .masonry-grid {
        column-count: 1;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .dare-hero {
        padding: 60px 30px;
    }
    
    .dare-hero h1 {
        letter-spacing: 4px;
    }
    
    .dare-content {
        padding: 40px 30px 60px;
    }
    
    .dare-description {
        text-align: center;
    }
    
    .dare-illustrations {
        gap: 40px;
    }
    
    .dare-icon {
        width: 120px;
    }
    
    .hero {
        height: 70vh;
        background-attachment: scroll;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 26px;
    }
    
    .whatsapp-float::before,
    .whatsapp-float::after {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-bottom {
        padding: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .logo-container {
        gap: var(--space-sm);
    }
    
    .logo img {
        height: 50px;
    }
    .story-section{
        margin-bottom: -150px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-container{
        margin-top: -130px;
    }
    
    .contact-container {
        padding: var(--space-3xl) var(--space-md) var(--space-lg);
    }
    
    .meetings-title,
    .prime-title {
        letter-spacing: 3px;
    }
}

/* Small Mobile */
@media (max-width: 500px) {
    .circle-container {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }
    
    .circle-item {
        width: 200px;
        height: 200px;
    }
    
        .times-title {
    font-size: var(--font-2xl);
}
    .times-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .mobile-menu {
        width: 90%;
    }
    
    .dare-hero {
        padding: 50px 20px;
    }
    
    .dare-content {
        padding: 30px 20px 50px;
    }
    
    .dare-illustrations {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .dare-icon {
        width: 140px;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .logo img {
        height: 40px;
    }
    
    .header-inner {
        padding: var(--space-xs) 0;
    }
}

/* =========================================================
   PRINT STYLES
========================================================= */
@media print {
    .header,
    .mobile-menu,
    .mobile-menu-btn,
    .footer,
    .whatsapp-float {
        display: none;
    }
    
    .page-container {
        padding-top: 0;
    }
    
    body {
        background: white;
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* =========================================================
   ACCESSIBILITY - REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .whatsapp-float,
    .food-icon,
    .bike-wrapper,
    .loader-bubbles span {
        animation: none !important;
    }
    
    .hero-content h1,
    .circle-item,
    .time-card,
    .gallery-item,
    .masonry-item,
    .dare-icon {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}






/* =========================================================
............................................................
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
............................................................
============================================================ */

/* =========================================================
   THEMES - CONFLICT-FREE
========================================================= */

/* =========================================================
............................................................
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
............................................................
============================================================ */






/* =========================================================
   NEW YEAR 2026 POP-UP SYSTEM - CONFLICT-FREE
========================================================= */

/* 1. 2026 CENTER REVEAL ANIMATION */
.new-year-2026-reveal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    font-size: clamp(3rem, 15vw, 8rem);
    font-weight: 900;
    color: transparent;
    background: linear-gradient(45deg, #FFD700 0%, #FF6B6B 25%, #4ECDC4 50%, #45B7D1 75%, #96CEB4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: yearRevealAnimation 5s ease-out forwards;
    font-family: 'Arial Black', 'Segoe UI', sans-serif;
    letter-spacing: 5px;
}

@keyframes yearRevealAnimation {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.1) rotate(-180deg);
        filter: blur(20px);
    }
    15% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3) rotate(0deg);
        filter: blur(0);
    }
    25% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    85% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.8) rotate(180deg);
        filter: blur(10px);
    }
}

/* 2. CONFETTI BACKGROUND */
.confetti-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 1;
    }
}

/* 3. NEW YEAR POPUP MESSAGE */
.new-year-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-width: 90vw;
    background: linear-gradient(135deg, #230a0a 0%, #16213e 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3),
                0 0 0 2px #FFD700,
                0 0 0 4px rgba(255, 215, 0, 0.1);
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(10px);
}

.new-year-popup.show {
    transform: translateX(0);
}

/* Popup Header */
.popup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.popup-header i {
    font-size: 2.5rem;
    color: #FFD700;
    animation: popupIconFloat 3s ease-in-out infinite;
}

@keyframes popupIconFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    33% { transform: translateY(-5px) rotate(5deg); }
    66% { transform: translateY(5px) rotate(-5deg); }
}

.popup-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
    margin: 0;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Popup Content */
.popup-content {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.popup-content p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Popup Buttons */
.popup-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.popup-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.popup-btn.primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #0a0a23;
}

.popup-btn.secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.popup-btn.primary:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

.popup-btn.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #FFD700;
    font-size: 1.2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: rotate(90deg);
}

/* Countdown inside popup */
.new-year-countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    font-family: 'Courier New', monospace;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 12px;
    border-radius: 10px;
    min-width: 60px;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    color: #C0C0C0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* Celebration Emojis */
.celebration-emoji {
    position: absolute;
    font-size: 1.5rem;
    animation: emojiFloat 4s linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: 9997;
}

@keyframes emojiFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .new-year-popup {
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .popup-btn {
        width: 100%;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .new-year-2026-reveal,
    .confetti-piece,
    .popup-header i,
    .celebration-emoji,
    .popup-btn:hover,
    .popup-close:hover {
        animation: none !important;
        transform: none !important;
    }
}