/* ========================================
   Big Papa's Cocktails & Gaming Lounge
   Vibrant Modern | Emerald + Cream
   ======================================== */

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

:root {
    --emerald-900: #042f23;
    --emerald-800: #064e3b;
    --emerald-700: #065f46;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --emerald-300: #6ee7b7;
    --cream-50: #fefdf8;
    --cream-100: #fef9ef;
    --cream-200: #fdf3e0;
    --cream-300: #f5e6c8;
    --cream-400: #e8d4a8;
    --dark: #0a0f0d;
    --dark-text: #1a2e25;
    --light-text: #f5f0e8;
    --white: #ffffff;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background: var(--cream-50);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Noise overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(4, 47, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cream-50);
}

.logo-mark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    width: 40px;
    height: 40px;
    background: var(--emerald-500);
    color: var(--emerald-900);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    letter-spacing: -0.5px;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    color: var(--cream-200);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-400);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--cream-50);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--emerald-500);
    color: var(--emerald-900) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.2s !important;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: var(--emerald-400) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 2px;
    background: var(--cream-50);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--cream-50);
    transition: all 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--emerald-900) 0%, #0a3d2e 30%, var(--emerald-700) 60%, #0d4f3a 100%);
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(52, 211, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(6, 78, 59, 0.3) 0%, transparent 70%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.08;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--emerald-400);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--cream-300);
    top: 20%;
    left: 5%;
    border-radius: var(--radius-lg);
    transform: rotate(25deg);
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: var(--emerald-300);
    bottom: 20%;
    right: 15%;
    border-radius: 50%;
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: var(--cream-400);
    top: 40%;
    right: 30%;
    border-radius: var(--radius-sm);
    transform: rotate(45deg);
}

.shape-5 {
    width: 60px;
    height: 60px;
    background: var(--emerald-500);
    bottom: 35%;
    left: 15%;
    border-radius: 50%;
}

.shape-6 {
    width: 150px;
    height: 150px;
    border: 2px solid var(--emerald-400);
    border-radius: 50%;
    top: 15%;
    left: 25%;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--emerald-300);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--emerald-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--cream-50);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-headline .highlight {
    background: linear-gradient(135deg, var(--emerald-300), var(--emerald-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--cream-300);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald-500);
    color: var(--emerald-900);
}

.btn-primary:hover {
    background: var(--emerald-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: rgba(254, 253, 248, 0.1);
    color: var(--cream-50);
    border: 1px solid rgba(254, 253, 248, 0.25);
}

.btn-secondary:hover {
    background: rgba(254, 253, 248, 0.18);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--emerald-700);
    border: 2px solid var(--emerald-700);
}

.btn-outline:hover {
    background: var(--emerald-700);
    color: var(--cream-50);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--cream-50);
    border: 2px solid rgba(254, 253, 248, 0.4);
}

.btn-outline-light:hover {
    background: rgba(254, 253, 248, 0.1);
    border-color: var(--cream-50);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--cream-50);
    letter-spacing: -1px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--emerald-300);
    opacity: 0.8;
    margin-top: 4px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(254, 253, 248, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--cream-300);
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

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

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cream-300), transparent);
}

/* ========================================
   SECTION SHARED
   ======================================== */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--emerald-600);
    margin-bottom: 16px;
    background: rgba(5, 150, 105, 0.08);
    padding: 6px 14px;
    border-radius: 100px;
}

.section-tag.light {
    color: var(--emerald-300);
    background: rgba(110, 231, 183, 0.1);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--emerald-900);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--cream-50);
}

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

.text-accent-light {
    color: var(--emerald-400);
}

.section-desc {
    font-size: 1.1rem;
    color: #4a6357;
    max-width: 560px;
    line-height: 1.7;
}

/* ========================================
   FEATURES
   ======================================== */
.section-features {
    padding: 100px 0;
    background: var(--cream-50);
    position: relative;
}

.section-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-600), var(--emerald-400), var(--cream-400), var(--emerald-400), var(--emerald-600));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(6, 78, 59, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--emerald-500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.1);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card--accent {
    background: var(--emerald-800);
    border-color: transparent;
}

.feature-card--accent h3 {
    color: var(--cream-50);
}

.feature-card--accent p {
    color: var(--cream-300);
}

.feature-card--accent::before {
    background: var(--emerald-400);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    margin-bottom: 20px;
}

.feature-card--accent .feature-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald-400);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--emerald-900);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: #4a6357;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   DRINKS
   ======================================== */
.section-drinks {
    padding: 100px 0;
    background: var(--cream-100);
    position: relative;
}

.section-drinks::before {
    content: '';
    position: absolute;
    top: 80px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-desc {
    margin: 0 auto;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.drink-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 78, 59, 0.06);
}

.drink-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(6, 78, 59, 0.12);
}

.drink-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.drink-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--emerald-600);
    color: var(--cream-50);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drink-info {
    padding: 20px;
}

.drink-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--emerald-900);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.drink-info p {
    font-size: 0.88rem;
    color: #5a7a6a;
    line-height: 1.6;
}

.drinks-cta {
    text-align: center;
}

/* ========================================
   GAMES
   ======================================== */
.section-games {
    padding: 100px 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.section-games::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.games-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.games-content .section-tag {
    color: var(--emerald-400);
    background: rgba(52, 211, 153, 0.1);
}

.games-content .section-title {
    color: var(--cream-50);
}

.games-content .section-desc {
    color: var(--cream-300);
    opacity: 0.85;
    margin-bottom: 32px;
}

.games-list {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    gap: 16px;
}

.games-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--cream-200);
    font-size: 1rem;
}

.games-list-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-400);
}

.games-visual {
    position: relative;
}

.games-img-stack {
    position: relative;
    height: 500px;
}

.games-img-main {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
}

.games-img-float {
    position: absolute;
    width: 160px;
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    bottom: -30px;
    left: -40px;
    z-index: 3;
    border: 4px solid var(--emerald-900);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.games-img-accent {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--emerald-600);
    border-radius: var(--radius-md);
    top: -20px;
    right: -20px;
    z-index: 1;
    opacity: 0.6;
}

/* ========================================
   ABOUT
   ======================================== */
.section-about {
    padding: 100px 0;
    background: var(--cream-50);
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(6, 78, 59, 0.12);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--emerald-600);
    color: var(--cream-50);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.3);
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-desc {
    margin-bottom: 20px;
}

.about-content > p {
    color: #4a6357;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-values {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--emerald-200);
    line-height: 1;
    min-width: 48px;
}

.value-text strong {
    display: block;
    color: var(--emerald-900);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.value-text span {
    color: #5a7a6a;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========================================
   CTA / VISIT
   ======================================== */
.section-cta {
    padding: 100px 0;
    background: var(--cream-100);
}

.cta-card {
    background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-800) 50%, #0a3d2e 100%);
    border-radius: var(--radius-xl);
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.08);
    top: -100px;
    right: -50px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(52, 211, 153, 0.06);
    bottom: -60px;
    left: 10%;
}

.cta-shape-3 {
    width: 80px;
    height: 80px;
    background: rgba(110, 231, 183, 0.08);
    top: 30%;
    right: 20%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 48px;
}

.cta-content .section-title {
    margin-bottom: 16px;
}

.cta-desc {
    color: var(--cream-300);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto;
    opacity: 0.85;
}

.cta-info {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.cta-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cta-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-400);
}

.cta-info-item strong {
    display: block;
    color: var(--cream-50);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cta-info-item p {
    color: var(--cream-300);
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.85;
}

.cta-info-item a {
    color: var(--emerald-400);
    text-decoration: none;
    transition: color 0.2s;
}

.cta-info-item a:hover {
    color: var(--emerald-300);
}

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    padding: 64px 0 0;
    color: var(--cream-300);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(254, 253, 248, 0.08);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--cream-300);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: all 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--emerald-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone {
    color: var(--emerald-400);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-phone:hover {
    color: var(--emerald-300);
}

.footer-contact p {
    font-size: 0.88rem;
    opacity: 0.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer-bottom p {
    margin: 0;
}

/* ========================================
   MOBILE MENU
   ======================================== */
@media (max-width: 900px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--emerald-900);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

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

    .nav-menu a {
        font-size: 1.1rem;
        color: var(--cream-200);
    }

    .btn-nav {
        margin-top: 8px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .drinks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .games-img-stack {
        height: 350px;
    }

    .games-img-float {
        width: 120px;
        height: 120px;
        left: -20px;
        bottom: -10px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-main {
        height: 300px;
    }

    .about-badge {
        right: 10px;
        bottom: -10px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .cta-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-headline {
        letter-spacing: -1px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .drinks-grid {
        grid-template-columns: 1fr;
    }

    .drink-img {
        height: 180px;
    }

    .section-features,
    .section-drinks,
    .section-games,
    .section-about {
        padding: 72px 0;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
