:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --text-muted: #c0c0c0;
    /* Lighter for better readability on glass */
    --accent-color: #e6b800;
    --brand-orange: #ff9933;
    --glass-bg: rgba(20, 20, 20, 0.7);
    /* Darker "Liquid Glass" */
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --nav-height: 100px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Full Page Background */
canvas#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Reusable Glass Panel (Liquid Glass) */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 40px;
}

.glass-panel-dark {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.loader-content {
    text-align: center;
    width: 300px;
}

.loader-logo .logo-img {
    height: 150px;
    /* Big initial logo */
    margin-bottom: 20px;
}

.loader-logo {
    opacity: 0;
    animation: fadeIn 1s forwards;
    display: flex;
    justify-content: center;
}

.progress-container {
    width: 100%;
    height: 4px;
    /* Thicker */
    background-color: #333;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.progress-bar {
    background-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    width: 0%;
    height: 100%;
    transition: width 0.1s linear;
}

.percentage {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    transition: background 0.3s;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    /* Darker nav */
    backdrop-filter: blur(10px);
}

/* Logo styling update */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #b0b0b0;
    /* Sophisticated light grey */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: none;
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: #fff;
}

/* Logo Size Increase (2x) */
.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-right a {
    text-decoration: none;
    color: var(--text-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

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

/* Language Button */
.btn-lang {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 10px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-lang:hover {
    background: #fff;
    color: #000;
}

/* Hero & Overlay Content */
#hero-text-container {
    padding-top: 15vh;
    padding-left: 10%;
    position: relative;
    z-index: 10;
}

.text-block {
    position: fixed;
    /* Keep it fixed while we scroll through the spacer */
    top: 30vh;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    max-width: 550px;
    pointer-events: none;
    /* Let scroll pass through when hidden */
}

.text-block.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.drink-name {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.drink-caption {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.drink-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-group {
    display: flex;
    gap: 20px;
}

.btn {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #000;
}

.btn-solid {
    background: var(--accent-color);
    color: #1a1a1a;
}

.btn-solid:hover {
    background: #fff;
    box-shadow: 0 0 15px var(--accent-color);
}

.btn:hover {
    transform: scale(1.05);
}

/* Content Sections */
.content-section {
    padding: 100px 40px;
    background-color: transparent;
    position: relative;
    z-index: 20;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h4 {
    color: var(--accent-color);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.card p {
    color: #ccc;
    line-height: 1.6;
}

/* Ingredients */
.ingredient-list {
    list-style: none;
}

.ingredient-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    color: #ddd;
}

.ingredient-list li strong {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Nutrition */
.nutrition-label {
    border: 3px solid #fff;
    padding: 20px;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.6);
}

.label-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.label-row.header {
    font-weight: 900;
    font-size: 1.2rem;
    border-bottom: 4px solid var(--accent-color);
}

/* Reviews */
.testimonial {
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.testimonial cite {
    font-style: normal;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Footer Layout Update */
.footer-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.branding-col {
    flex: 0 0 100%;
    /* Full width on mobile/tablet default */
    text-align: center;
    margin-bottom: 20px;
}

.logo-small .logo-img {
    height: 80px;
}

.hours-col ul {
    list-style: none;
    padding: 0;
}

.hours-col li {
    color: #ccc;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-col li span {
    color: var(--accent-color);
    font-weight: 600;
    margin-right: 10px;
}

.links-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.links-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.links-col a:hover {
    color: #fff;
}

/* Photo Card Styles */
.photo-card {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 30px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

/* 3x2 Gallery Grid */
.gallery-3x2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-3x2 img {
    height: 250px;
}

@media (max-width: 900px) {
    .gallery-3x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gallery-3x2 {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (min-width: 768px) {
    .branding-col {
        flex: 0 0 auto;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .drink-name {
        font-size: 3rem;
    }

    .drink-caption {
        font-size: 1.2rem;
    }

    .btn {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-col {
        width: 100%;
    }

    .logo-img {
        height: 60px;
    }

    .logo-text {
        font-size: 1.5rem;
    }
}