/* ==========================================
   1. RESET & BASE STYLES
   ========================================== */


/* IMPORTS */

@import url('https://fonts.googleapis.com/css2?family=Lato&family=Jost:wght@400..900&display=swap');
@import url("https://use.typekit.net/fsl0gml.css");

/* ==========================================================================
   1. GLOBAL DESIGN TOKENS (Your Site Control Panel)
   ========================================================================== */
:root {
    /* COLORS */
    --color-primary: #000000;       /* Black for the main */
    --color-secondary: #eaeaea;     /* Almost white for text */
    --color-accent: rgb(255, 221, 110);
    --color-other: #727272;       /* Gray for boxes or utility buttons */

    /* Typography Hierarchy */
    --font-heading: 'Jost', serif;
    --font-body: 'Lato', sans-serif;

    /* Layout Sizing & Transitions */
    --border-radius-sm: 4px;
    --transition-smooth: transform 0.5s ease, background-color 0.3s ease;
    --body-background-gradient: linear-gradient(rgb(from var(--color-primary) r g b / 0.6), rgb(from var(--color-primary) r g b / 0.5));
}

/* FONTS */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 2px 5px 5px rgb(0, 0, 0);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

p {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}
p.lead, .text-lg {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1.5px;
}

.text-md {
    font-size: 1rem;
}

p.caption, .text-sm {
    font-size: 0.85rem;
    color: var(--color-other);
}

@media (max-width: 600px) { /* Shrinks text on phones */
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .hero-dark h2 {
        font-size: 1.2rem;
    }
}

/* BUTTONS */

.btn-primary {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-secondary);
    padding: 0.8rem 2rem;
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font: var(--font-heading);
    font-weight: 700;
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 0.8rem 2rem;
    border: 2px solid var(--color-secondary);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-align: center;
    box-shadow: 2px 3px 3px rgb(0, 0, 0);
}

.btn-primary:hover, .btn-secondary:hover {
    background-color: var(--color-primary);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    transition: all 0.3s ease;
    box-shadow: 2px 5px 5px rbg(0, 0, 0);
}

.btn-tertiary {
    color: var(--color-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-tertiary:hover {
    color: var(--color-accent);
}

.text-btn {
    color: var(--color-accent);
}

.nav-btn-primary {
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-secondary);
}

.nav-btn-secondary {
    color: var(--color-other);
    text-decoration: none;
    margin: 0 1rem;
    font: var(--font-heading);
    transition: color 0.3s ease;
}

.nav-btn-primary:hover, .nav-button-secondary:hover {
    color: var(--color-accent);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding-top: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Locks height to small viewport so address bar won't trigger zooms */
    position: relative;
    color: var(--color-secondary);
    padding-top: var(--header-height, 80px);
}

/* 🎯 Creates a locked, non-glitching background layer for mobile */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/static/starfire-site-background.png');
    background-size: cover;
    background-position:center;
    z-index: -1; /* Keeps the photo safely behind all your text and sections */
    will-change: transform;
    transform: translateZ(0);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.blank-section {
    background: none;
    margin: 0 auto;
    padding-bottom: 2rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

/* ==========================================
   2. HEADER & NAVIGATION
   ========================================== */
header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    padding: 2%;
    background: var(--body-background-gradient);
    backdrop-filter: blur(4px);
    
    /* Default: sits naturally at top of page, scrolls away with content */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
    /* Transition for sliding in when scrolling up */
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
    header {
        justify-content: space-between;
    }
}

/* Added via JS ONLY when scrolling UP mid-page */
header.is-sticky {
    position: fixed;
    top: 0;
    animation: slideDown 0.3s forwards;
}

/* Smooth entry animation when it becomes fixed */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-brand a svg {
    height: 60px;
    width: auto;
    fill: var(--color-secondary);
}

/* Target the SVG paths when hovering over the anchor link */
.header-brand a:hover .logo-svg .cls-1 {
    fill: var(--color-accent);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--color-secondary);
}

nav a:hover, nav a.active {
    color: var(--color-accent);
}

/* ==========================================
   3. HERO / WELCOME SECTION
   ========================================== */
.hero {
    height: 80vh;
    margin-top: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    text-align: center;
    color: var(--color-secondary);
}

.hero-dark {
    display: flex;
    justify-content: space-evenly; /* Spreads them evenly across the line */
    align-items: center;
    text-align: center;
    padding: 2rem; /* Combined your padding here */
    color: var(--color-secondary);
    background: var(--body-background-gradient), var(--body-background-gradient);
}

.hero-content {
    max-width: 700px;
    justify-content: center;
    text-align: center;
}

.hero-content h3 {
    padding-bottom: 2rem;
}

.hero-content h2 {
    padding-bottom: 2rem;
    font-family: var(--font-body);
    font-size: 1.8rem;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 4px;
}

/* Carousel Container */
.portfolio-carousel-section {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
    background: var(--body-background-gradient);
}

.photo-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

/* Individual Slide Sizing */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 380px; /* Uniform height across all photos */
    object-fit: cover; /* Prevents image stretching */
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-color: var(--color-secondary);
    transition: color 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--color-accent);
}

.home-nav-section {
    margin-top: -1px;
    display: flex;
    flex-wrap: wrap;
    padding: 3rem;
    gap: 2rem;
    justify-content: center;
}
.home-nav-ind {
    width: 400px;
    height: 300px;
    position: relative; 
    overflow: hidden; 
    box-shadow: 2px 5px 20px black;
}

/* Makes <a> tags wrap the full card dimensions */
.home-nav-ind a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.home-nav-ind img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nav-overlay {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-shadow: 2px 5px 20px black;
    padding: 1rem;
    text-align: center;
    box-sizing: border-box;
}

.home-nav-ind:hover img {
    transform: scale(1.05); /* Soft zoom effect */
}

.home-nav-ind:hover .band-bio-overlay {
    opacity: 1; /* Fade in the overlay text */
}


/* ==========================================
            BIO PAGE
============================================= */

.band-bio-section {
    margin-top: -1px;
    display: flex;
    flex-wrap: wrap;
    padding: 3rem;
    gap: 2rem;
    justify-content: center;
}

/* 1. Established positioning context & clipped zoom overflow */
.band-bio-ind-box {
    width: 300px;
    height: 400px;
    position: relative; 
    overflow: hidden; 
    box-shadow: 2px 5px 20px black;
}

/* Makes <a> tags wrap the full card dimensions */
.band-bio-ind-box a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.band-bio-ind-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* 2. Positioned absolute so it sits directly over the image */
.band-bio-overlay {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    text-align: center;
    box-sizing: border-box; /* Prevents padding from distorting dimensions */
}

/* Hover Effects */
.band-bio-ind-box:hover img {
    transform: scale(1.05); /* Soft zoom effect */
}

.band-bio-ind-box:hover .band-bio-overlay {
    opacity: 1; /* Fade in the overlay text */
}




/* ==========================================
                INDIVIDUAL BIOS             
=========================================== */

.ind-bio-section {
    display: flex;
    flex-wrap: wrap;
    padding: 3rem;
    gap: 2rem;
    justify-content: center;
}

.ind-bio-box {
    background: var(--body-background-gradient);
    padding: 2rem;
    margin: 2rem;
    box-shadow: 2px 2px 5px black;
    max-width: 50vw;
    text-align: left;
}

.ind-bio-section img {
    height: 75vh;
    max-width: 25vw;
    object-fit: cover;
    box-shadow: 0px 5px 20px black;
}

.ind-bio-section img.landscape {
    height: auto;
    max-width: 75vh;
}

@media (max-width: 769px) {
    .ind-bio-section {
        width: 95vw;
        padding: 0rem;
    }
    .ind-bio-box {
        max-width: 100%;
    }

    .ind-bio-section img {
        height: 50vh;
        max-width: 90vw;
    }
    
    .ind-bio-section img.landscape {
        max-width: 75vw;
    }
}

/* ==========================================
   4. PORTFOLIO PAGE
   ========================================== */
.portfolio-container {
    margin: 0 auto;
    margin-top: -1px;
    padding: 4rem 2rem;
    overflow: hidden;
    display: flow-root;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    display: flow-root;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    margin-top: 0rem;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.portfolio-cta {
    text-align: center;
    margin-top: 2rem;
}

/* The Magic Masonry Layout */
.portfolio-grid {
    column-count: 3;           /* Creates a beautiful 3-column masonry spread */
    column-gap: 1.5rem;        /* Matches the space between columns to your design */
    width: 100%;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    break-inside: avoid;       /* CRUCIAL: Prevents a photo from splitting awkwardly across two columns */
    display: inline-block;     /* Fixes a rendering bug in some browsers for column items */
    width: 100%;
}

.portfolio-item img {
    width: 100%;
    height: auto;              /* CRUCIAL: Keeps your original aspect ratios completely intact */
    display: block;            /* Cleans up default browser inline spacing below the image */
    transition: transform 0.5s ease;
}

/* Mobile Responsiveness: Scale columns down based on screen size */
@media (max-width: 1024px) {
    .portfolio-grid {
        column-count: 2;       /* Drops to 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        column-count: 1;       /* Stacks into 1 single column on mobile screens */
    }
}
/* ==========================================
   5. ABOUT ME PAGE
   ========================================== */
.about-container {
    background: var(--body-background-gradient);
    margin: 0 auto;
    margin-top: -1px;
    padding: 5rem 3rem;
}

.about-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* 50% split for desktop */
.about-image, .about-content {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft, elegant drop shadow */
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.about-content .subtitle {
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-cta {
    margin-top: 2rem;
}

.btn-dark {
    background-color: #000000;
    color: #ffffff;
    display: inline-block;
}

.btn-dark:hover {
    background-color: #333333;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-layout {
        flex-direction: column; /* Stacks image on top of text on phones */
        gap: 2.5rem;
    }
    
    .about-container {
        padding: 3rem 1.5rem;
    }
}

/* ==========================================================================
   FORM STYLES
   ========================================================================== */

/* Centers the form section on the screen and limits its maximum width */
.form-section {
    background: var(--body-background-gradient);
    margin-top: -1px;
    padding: 3rem;
    display: flex;
    justify-content: center;
}

/* Stack the individual form elements vertically */
.form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Consistent gaps between every input block */
    font-family: var(--font-body);
    max-width: 500px;
}
w
/* Stacks label on top of the input */
.form-group {
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    color: var(--color-secondary);
    gap: 0.5rem; /* Space between the text label and the box */
}

/* Label styling */
.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.honeypot {
    display: none !important;
}

/* Core styling for text fields, dates, and textareas */
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="date"],
.form input[type="time"],
.form input[type="venue"],
.form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-secondary);
    border: 1px solid var(--color-other);
    border-radius: 4px;
    background: var(--body-background-gradient);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Allows textarea to be resized vertically by the user, but not horizontally */
.form textarea {
    resize: vertical;
}

/* 🎯 INTERACTIVE FOCUS STATE */
/* Gives a clean, visual pop when a user clicks into a field */
.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px var(--color-primary-fade, rgba(0, 0, 0, 0.05));
}

/* Layout for the Date and Time fields to sit side-by-side */
.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split evenly into two columns */
    gap: 1.5rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    /* OPTION A: Invert the icon color (turns a dark icon white, or vice versa) */
    filter: invert(1);
    
    /* OPTION B: Make it slightly translucent so it's not jarringly bright */
    opacity: 0.7;
}

/* Optional hover state to make it interactive */
input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Keep the success block completely hidden out of view when the page first loads */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem 1.5rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Mobile adjustments)
   ========================================================================== */
@media (max-width: 480px) {
    /* Stack the side-by-side date and time fields into a single column on phones */
    .form-group-row {
        grid-template-columns: 1fr;
    }

    /* Force button to span full-width on small screens for easy thumb-tapping */
    .btn-submit {
        width: 100%;
        text-align: center;
    }
}


/* PRIVACY POLICY AND TERMS & CONDITIONS */

.policy-container {
    background: var(--body-background-gradient);
    margin: 0 auto;
    margin-top: -1px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.policy-section {
    padding: 2rem;
    width: 75vw;
}

.policy-section p {
    margin-left: 2rem;
    padding: 1rem;
    margin-bottom: 0rem;
}

.policy-subsection{
    margin-left: 2rem;
    padding-bottom: 2rem;
}

.policy-section ul {
    color: var(--color-secondary);
    margin-left: 2rem;
}
.policy-header {
    padding-bottom: 2rem;
    justify-items: center;
    width: 75vw;
}

@media (max-width: 600px) {
    .policy-section, .policy-subsection, .policy-section p, .policy-section ul {
        margin-left: 0rem;
        width: 90vw;
        padding-bottom: 1rem;
    }
}

/* ==========================================
   9. GLOBAL FOOTER
   ========================================== */
footer {
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 2rem 2rem;
    margin-top: auto; /* Pushes footer to bottom on short pages */
    font-size: 0.85rem;
}

.footer-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand,
.footer-links,
.footer-socials {
    flex: 1; /* Forces all three sections to occupy equal space */
}

.footer-links {
    padding-top: 2rem;
    text-align: center;
}

.footer-socials {
    padding-top: 2rem;
    justify-content: right;
    display: flex;
    gap: 2rem;
}

.footer-socials img {
    width: 28px;
    height: 28px;
}

/* Base state: target the paths inside the footer brand link */
.footer-brand a path {
  fill: var(--color-secondary);
  transition: fill 0.3s ease; /* Smoothly animates the color change */
}

/* Hover state: change the path fill when hovering over the link */
.footer-brand a:hover path {
  fill: var(--color-accent); /* Target hover color (bright green) */
}

.footer-brand p {
    color: var(--color-other);
    padding-top: 1rem;
}

.footer-brand svg {
    max-height: 80px;
}

.footer-links a {
    color: var(--color-other);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

/* Hover effects */
.footer-links a:hover {
    color: var(--color-accent);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 2rem;

    }
    
    .footer-links{
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-links a{
        margin: 0;
    }
}

/* ==========================================================================
   MOBILE NAVIGATION (Screens under 768px wide)
   ========================================================================== */
@media (max-width: 768px) {
    .header-brand {
        padding: 0.5rem;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.25rem;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 100;
        margin-right: 1.7rem;
    }

    .menu-toggle .bar {
        height: 2px;
        width: 100%;
        background-color: var(--color-secondary);
        transition: all 0.3s ease;
    }

    /* 2. Full-Screen Fixed Overlay */
    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.85);
        z-index: 90;
        font-size: 2rem;
        
        /* Prevent touch events on the overlay from dragging the menu itself */
        touch-action: pan-y;
        overscroll-behavior: contain;

        /* Slide down out of sight when closed */
        transform: translateY(-100%);
        pointer-events: none; /* Prevents hidden overlay from capturing swipes */
        transition: transform 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
    }

    .nav-menu img {
        height: 25px;
        width: 25px;
    }

    /* 3. Active State (Locked in place) */
    .nav-menu.active {
        transform: translateY(0);
        pointer-events: auto; /* Re-enable clicks on link items when open */
    }
}

/* Prevents the page from scrolling while the mobile menu is open */
body.menu-open {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
}

/* Base setting: Hide the toggle button on desktop views */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    .nav-menu {
        display: flex; /* Keep your desktop side-by-side row behavior intact */
    }

    .nav-menu img {
        height: 25px;
        width: 25px;
    }
}
/* close button */
@media (max-width: 768px) {
    .close-menu-btn {
        position: absolute;
        top: 1.5rem;
        right: 1.7rem;
        background: transparent;
        border: none;
        color: var(--color-other);
        font-size: 2.5rem;
        line-height: 1;
        cursor: pointer;
        padding: 0.5rem;
    }
}

/* Hide close button on desktop */
@media (min-width: 769px) {
    .close-menu-btn {
        display: none;
    }
}

/* ==========================================
                COOKIES
===========================================*/

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--body-background-gradient), var(--body-background-gradient);
    color: var(--color-secondary);
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    font-size: 0.85rem;
    line-height: 1.4;

    /* Smooth Fade/Slide Animation Properties */
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none; /* Prevents clicking while invisible */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Active class added via JS after delay */
.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner p {
    margin: 0 0 1rem 0;
    color: var(--color-other, #cccccc);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: var(--color-accent, #00ff66);
    color: #000000;
}

.decline-btn {
    background: transparent;
    color: var(--color-secondary, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.decline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}