:root {
    --primary-blue: #1b4d89;
    --brand-orange: #f39c12;
    --dark-grey: #333333;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-grey);
    background-color: #3e2723;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/wood_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-wrapper {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 10px 15px;
    backdrop-filter: blur(2px);
}

.banner-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    width: 100%;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 10px;
}

.header-bottom {
    width: 100%;
    text-align: center;
}

.logo-area {
    flex-shrink: 0;
}

.main-logo {
    width: 170px;
    height: 170px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

/* .text-area removed in HTML restructure */

.brand-group {
    position: relative;
    margin-bottom: 5px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 1px 1px 0 #fff;
}

.brand-nat {
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    margin-top: -15px;
    margin-left: 5px;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-top: 10px;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
}

.menu-content {
    flex: 1;
}

.menu-section {
    background-color: var(--glass-bg);
    border-radius: 18px;
    border: 2px solid #333;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: slideUpFade 0.4s ease-out forwards;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 6px;
    color: #000;
}

.section-header i {
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.section-header h2 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.menu-items {
    padding: 0 5px;
}

.menu-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 4px;
}

.item-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #222;
}

.dots {
    flex: 1;
    border-bottom: 1.5px dotted #ccc;
    margin: 0 8px;
    position: relative;
    top: -4px;
}

.item-price {
    font-weight: 900;
    font-size: 1rem;
    color: #000;
}

.item-options {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: 600;
    font-style: italic;
}

.app-footer {
    margin-top: auto;
    padding: 15px 0;
    display: flex;
    justify-content: center;
}

.home-indicator {
    width: 35%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

body::-webkit-scrollbar {
    width: 0;
}

@media (max-height: 700px) {
    .main-logo { width: 130px; height: 130px; }
    .brand-name { font-size: 1.8rem; }
    .brand-nat { font-size: 2.6rem; }
}