:root {
    --bg-color: #F5F0E6;
    /* Modern Beige */
    --primary-bg: #111111;
    /* Black button */
    --primary-hover: #222222;
    --primary-border: #000000;
    --text-color: #ffffff;
    /* White text */
    --shadow-color: rgba(0, 0, 0, 0.25);
    --title-color: #222222;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--title-color);
    min-height: 100vh;
    min-height: 100dvh;
    /* Mobile browser friendly */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    /* Allow scrolling if taller than screen */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle background glows */
.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.glow-1 {
    top: -50px;
    left: -50px;
    background-color: rgba(255, 255, 255, 0.8);
}

.glow-2 {
    bottom: -100px;
    right: -50px;
    background-color: rgba(0, 0, 0, 0.05);
}

.content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    width: 100%;
    max-width: 400px;
    padding: 30px 0;
    /* Move animation here so everything enters elegantly together */
    animation: zoomIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.brand-logo {
    width: 160px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.brand-title {
    width: 100%;
    padding: 0 16px;
    text-align: center;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--title-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
    max-width: 320px;
    padding: 0 24px;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 72px;
    /* Large touch target */
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
    /* Remove native mobile highlight */
}

/* Primary Button Design (Konum) */
.btn-primary {
    background: var(--primary-bg);
    color: var(--text-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 2px solid var(--primary-border);
}

/* Secondary Button Design (Menü) */
.btn-secondary {
    background: var(--primary-bg);
    color: var(--text-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 2px solid var(--primary-border);
}

/* Hover effects (Mostly for desktop/tablets, though requested mobile-first, it's good practice) */
@media (hover: hover) {
    .btn:hover {
        transform: translateY(-4px);
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        background: var(--primary-hover);
        box-shadow: 0 16px 40px var(--shadow-color);
    }
}

/* Active (Tap) effects - CRITICAL for mobile */
.btn:active {
    transform: translateY(2px) scale(0.96);
}

.btn-primary:active,
.btn-secondary:active {
    box-shadow: 0 4px 15px var(--shadow-color);
    background: #000000;
}

/* Subte shine effect that passes over the button to draw attention */
.shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
}

/* Animate primary button shine immediately */
.btn-primary .shine {
    animation: shine-animation 4s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

/* Delay secondary button shine */
.btn-secondary .shine {
    animation: shine-animation 4s infinite 2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shine-animation {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* =======================================
   MENU PAGE STYLES
   ======================================= */
.menu-page {
    background-color: #ffffff;
    align-items: flex-start;
    height: auto;
    min-height: 100vh;
}

.menu-page .content-wrapper {
    justify-content: flex-start;
    padding-top: 20px;
    gap: 32px;
}

.menu-header {
    position: relative;
    gap: 12px;
}

.back-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--title-color);
    text-decoration: none;
    z-index: 20;
}

.menu-logo {
    width: 100px;
}

.menu-title {
    font-size: 28px;
    padding: 0 40px;
}

.menu-container {
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
}

.menu-wrapper {
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.section-title {
    color: #f39c12;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    margin: 40px 0 30px;
    text-transform: uppercase;
}

.section-title:first-child {
    margin-top: 10px;
}            

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
    padding: 0 16px;
}

.item-name {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    color: #000000;
    margin-bottom: 8px;
}

.item-desc {
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 12px;
    max-width: 300px;
}

.item-price {
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 24px;
    border-radius: 2px;
    text-align: center;
    min-width: 80px;
}

.section-divider {
    border: none;
    border-top: 2px solid #000000;
    margin: 20px 0;
    width: 100%;
}