:root {
    /* Background color will be set dynamically via JS */
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

html.acai-html {
    scroll-snap-type: y mandatory;
}

body {
    background-color: var(--bg-color, #0a0a0a);
    color: #ffffff;
    overflow-x: hidden;
    max-width: 100%;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    margin: 0;
    padding: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
}

.acai-html .text-outline {
    -webkit-text-stroke: 2px #ffffff;
}

.text-outline-neon {
    color: transparent;
    -webkit-text-stroke: 2px #ff00ff;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.magnetic-btn {
    display: inline-block;
    cursor: pointer;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: inline-block;
}

/* Bento Grid */
.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.bento-item:hover {
    border-color: rgba(255, 0, 255, 0.5);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.1);
}

/* Accordion styles */
.accordion-content {
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.bg-radial-glow {
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 50%);
}

/* ─── Shared header ──────────────────────────────────────────────────
   Injected into #header-root by modules/header.js on every page.
   ------------------------------------------------------------------- */

/* Mobile menu — slide-in overlay */
.site-menu {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 700ms cubic-bezier(0.76, 0, 0.24, 1);
}

.site-menu.is-open {
    transform: translateX(0);
}

/* Menu header row: logo + close button */
.site-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .site-menu__header { padding: 2.5rem; }
}

.site-menu__logo { height: 2rem; }

.site-menu__close {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 150ms ease;
}

.site-menu__close:hover { color: #ff00ff; }

/* Nav links block */
.site-menu__links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .site-menu__links {
        gap: 3rem;
        font-size: 4.5rem;
    }
}

/* Each link — slide animation */
.site-menu__link {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.site-menu__link-text {
    display: block;
    transition: transform 500ms ease-out;
}

.site-menu__link-hover {
    position: absolute;
    inset: 0;
    display: block;
    color: #b39b5e;
    transform: translateY(100%);
    transition: transform 500ms ease-out;
}

.site-menu__link:hover .site-menu__link-text  { transform: translateY(-100%); }
.site-menu__link:hover .site-menu__link-hover { transform: translateY(0); }

/* Social row */
.site-menu__social {
    padding: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
}

.site-menu__social-link {
    text-decoration: none;
    color: inherit;
    transition: color 150ms ease;
}

.site-menu__social-link:hover { color: #ffffff; }

/* Desktop navigation bar */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
}

@media (min-width: 768px) {
    .site-nav { padding: 2.5rem; }
}

.site-nav__logo { height: 2rem; }

@media (min-width: 768px) {
    .site-nav__logo { height: 2.5rem; }
}

.site-nav__links {
    display: none;
    gap: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .site-nav__links { display: flex; }
}

.site-nav__link {
    text-decoration: none;
    color: #ffffff;
    transition: color 150ms ease;
}

.site-nav__link:hover      { color: #b39b5e; }
.site-nav__link--active    { color: #b39b5e; }

/* Page transition overlay (acai → drinks redirect) */
#page-transition {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    pointer-events: none;
}

.site-nav__menu-btn {
    font-family: 'Anton', sans-serif;
    font-size: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
}

@media (min-width: 768px) {
    .site-nav__menu-btn { display: none; }
}
