/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #EFEFEC;
    background-color: #31251B;
    position: relative;
    overflow-x: hidden;
}

/* Static Background */
.static-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-image: url('assets/images/ktcafe coffee.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(49, 37, 27, 0.85) 0%,
        rgba(49, 37, 27, 0.6) 30%,
        rgba(49, 37, 27, 0.3) 60%,
        rgba(49, 37, 27, 0.1) 80%,
        transparent 100%
    );
    z-index: 1;
}


/* Ensure content is above background */
.header, .main, .footer {
    position: relative;
    z-index: 10;
}

/* Adjust header for better visibility over background */
.header {
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(10px);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #31251B, #2a1f17);
    color: #EFEFEC;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(49, 37, 27, 0.4);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    min-width: 200px;
    max-width: 300px;
}

.logo-image {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes the logo white */
}


.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}


.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-list li {
    flex-shrink: 0;
}

.nav-link {
    color: #EFEFEC;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.95rem;
    white-space: nowrap;
}


/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    margin-left: 1rem;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #E8AB15;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
    margin: 2px 0;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Social Section */
.social-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(232, 171, 21, 0.1);
    border-radius: 50%;
    color: #E8AB15;
    text-decoration: none;
    border: 1px solid rgba(232, 171, 21, 0.3);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Scroll Indicators */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(49, 37, 27, 0.9);
    color: #E8AB15;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 171, 21, 0.3);
}

/* Mobile Navigation Touch Handling */
@media (max-width: 768px) {
    .nav {
        position: relative;
        z-index: 150;
    }
    
    .nav-list {
        position: relative;
        z-index: 152;
    }
    
    .hamburger-menu {
        z-index: 160 !important;
        position: relative;
    }
}

.scroll-indicator-left {
    left: 0;
}

.scroll-indicator-right {
    right: 0;
}

.scroll-indicator.show {
    opacity: 1;
}

.scroll-indicator.bounce {
    animation: bounceIndicator 0.6s ease-in-out;
}

@keyframes bounceIndicator {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%) scale(1);
    }
    40% {
        transform: translateY(-50%) scale(1.1);
    }
    60% {
        transform: translateY(-50%) scale(1.05);
    }
}

/* Main Content */
.main {
    padding: 2rem 0;
    margin-top: 80px; /* Add space for fixed header */
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 2rem;
    background: linear-gradient(135deg, rgba(232, 171, 21, 0.1), rgba(232, 171, 21, 0.05));
    color: #E8AB15;
    border: 2px solid rgba(232, 171, 21, 0.3);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(49, 37, 27, 0.3);
    backdrop-filter: blur(10px);
}

.menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.menu-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: white;
    font-style: italic;
    opacity: 0.9;
}

/* Menu Sections */
.menu-section {
    margin-bottom: 4rem;
    background: rgba(49, 37, 27, 0.8);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(49, 37, 27, 0.4);
    border: 1px solid rgba(232, 171, 21, 0.3);
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #EFEFEC;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #E8AB15;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #E8AB15;
}

/* Menu Categories */
.menu-category {
    margin-bottom: 2.5rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #EFEFEC;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #E8AB15;
}

.subcategory-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #E8AB15;
    margin: 1.5rem 0 1rem 0;
    padding-left: 0.5rem;
    border-left: 3px solid #E8AB15;
}

.base-price {
    font-size: 0.9rem;
    color: #E8AB15;
    font-weight: 400;
}

/* Menu Items */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px dotted #bdc3c7;
}


.menu-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
    margin-right: 1rem;
}

.item-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    color: #EFEFEC;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.item-description {
    color: #E8AB15;
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

.item-price {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #E8AB15;
    font-weight: 700;
    white-space: nowrap;
    min-width: fit-content;
}

/* Special Notes */
.section-note, .category-note, .herbal-note {
    background: rgba(232, 171, 21, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #EFEFEC;
    border-left: 4px solid #E8AB15;
}

.special-note {
    background: rgba(232, 171, 21, 0.2);
    color: #E8AB15;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
    border: 1px solid rgba(232, 171, 21, 0.4);
}

.price-note {
    font-size: 0.9rem;
    color: #E8AB15;
    font-weight: 400;
}

/* Table Styles for Coffee, Tea, and Juices */
.coffee-table, .tea-table, .juice-table {
    background: rgba(49, 37, 27, 0.95);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(49, 37, 27, 0.4);
    margin-bottom: 1rem;
    border: 1px solid rgba(232, 171, 21, 0.3);
}

.table-header {
    background: linear-gradient(135deg, #31251B, #2a1f17);
    color: #EFEFEC;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

.coffee-row, .tea-row, .juice-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid #ecf0f1;
    align-items: center;
}


.coffee-row:last-child, .tea-row:last-child, .juice-row:last-child {
    border-bottom: none;
}

.coffee-name, .tea-name, .juice-name {
    font-weight: 600;
    color: #EFEFEC;
}

.coffee-sizes, .tea-sizes, .juice-sizes {
    display: flex;
    justify-content: space-around;
    font-size: 0.9rem;
}

.coffee-prices, .tea-prices, .juice-prices {
    display: flex;
    justify-content: space-around;
    font-weight: 600;
    color: #E8AB15;
}

.size {
    font-size: 0.9rem;
    opacity: 0.8;
}

.price {
    font-family: 'Open Sans', sans-serif;
}

/* Build Your Own Section */
.build-your-own {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.build-your-own .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(49, 37, 27, 0.6);
    border: 1px solid rgba(232, 171, 21, 0.2);
    border-radius: 10px;
}


.build-your-own .item-info {
    margin-right: 0;
    margin-bottom: 1rem;
}

.build-your-own .item-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #EFEFEC;
}

.build-your-own .item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E8AB15;
    margin-top: auto;
}

/* Extras Grid */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.extras-grid .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem 1rem;
    background: rgba(49, 37, 27, 0.6);
    border: 1px solid rgba(232, 171, 21, 0.2);
    border-radius: 8px;
}


.extras-grid .item-info {
    margin-right: 0;
    margin-bottom: 0.8rem;
}

.extras-grid .item-name {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #EFEFEC;
}

.extras-grid .item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E8AB15;
    margin-top: auto;
}

/* Iced Drinks Grid */
.iced-drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.iced-drinks-grid .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem 1rem;
    background: rgba(49, 37, 27, 0.6);
    border: 1px solid rgba(232, 171, 21, 0.2);
    border-radius: 8px;
}


.iced-drinks-grid .item-info {
    margin-right: 0;
    margin-bottom: 0.8rem;
}

.iced-drinks-grid .item-name {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #EFEFEC;
}

.iced-drinks-grid .item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E8AB15;
    margin-top: auto;
}

/* Footer */
.footer {
    background: #31251B;
    color: #E8AB15;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid rgba(232, 171, 21, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #E8AB15;
    color: #31251B;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(232, 171, 21, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.back-to-top-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Responsive Design */
/* Tablet and below - show hamburger menu */
@media (max-width: 1024px) {
    .header .container {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: nowrap;
    }
    
    .logo-container {
        min-width: 180px;
        flex-shrink: 0;
    }
    
    .nav {
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 200px);
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(49, 37, 27, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        width: 100%;
        height: auto;
        overflow: visible;
        padding: 0;
    }
    
    .nav-list li {
        width: 100%;
        flex-shrink: 1;
        min-width: auto;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        text-align: left;
        border-radius: 8px;
        background: rgba(232, 171, 21, 0.1);
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(232, 171, 21, 0.2);
        transform: translateX(5px);
    }
    
    .social-section {
        gap: 0.3rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.5rem !important; /* 24px equivalent */
    }
    
    .social-section {
        gap: 0.4rem !important;
    }
    
    .social-link {
        width: 29px !important;
        height: 29px !important;
    }
    
    .social-icon {
        width: 15px !important;
        height: 15px !important;
    }
    
    
    .menu-header {
        margin-bottom: 2rem !important; /* Reduced from 3rem to 2rem (about 16px less) */
    }
    
    /* Ensure header stays fixed on mobile */
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        min-height: 60px !important;
        z-index: 100 !important;
        overflow: visible !important;
    }
    
    .header .container {
        width: 100% !important;
        max-width: 100vw !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    /* Ensure hamburger menu is always visible on mobile */
    .hamburger-menu {
        display: flex !important;
        flex-shrink: 0 !important;
        margin-left: 1rem !important;
        z-index: 1001 !important;
    }
    
    /* Ensure logo container doesn't take too much space */
    .logo-container {
        flex-shrink: 1 !important;
        min-width: auto !important;
        max-width: 60% !important;
    }
    
    /* Ensure social section doesn't take too much space */
    .social-section {
        flex-shrink: 1 !important;
        max-width: 30% !important;
    }
    
    /* Mobile background and fixed elements */
    .static-background {
        background-attachment: fixed !important;
        background-size: cover !important;
        background-position: center top !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: -2 !important;
        transform: translate3d(0, 0, 0) !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
        -webkit-background-attachment: fixed !important;
    }
    
    .background-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: -1 !important;
        transform: translate3d(0, 0, 0) !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
    }
    
    /* Remove all hover effects and animations on mobile */
    .nav-link:hover,
    .logo-image:hover,
    .menu-item:hover,
    .social-link:hover,
    .back-to-top:hover,
    .coffee-row:hover,
    .tea-row:hover,
    .juice-row:hover,
    .build-your-own .menu-item:hover,
    .extras-grid .menu-item:hover,
    .iced-drinks-grid .menu-item:hover {
        background-color: initial !important;
        transform: initial !important;
        box-shadow: initial !important;
        border-color: initial !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border-radius: initial !important;
    }
    
    /* Remove all text animations and effects on mobile - EXCEPT hamburger menu */
    .nav-link,
    .logo-image,
    .menu-item,
    .social-link,
    .back-to-top,
    .coffee-row,
    .tea-row,
    .juice-row,
    .build-your-own .menu-item,
    .extras-grid .menu-item,
    .iced-drinks-grid .menu-item,
    .item-name,
    .item-price,
    .item-description,
    .section-title,
    .category-title,
    .subcategory-title {
        transition: none !important;
        animation: none !important;
        -webkit-transition: none !important;
        -webkit-animation: none !important;
    }
    
    /* Keep hamburger menu transitions working on mobile */
    .hamburger-menu,
    .hamburger-line,
    .nav {
        transition: all 0.3s ease !important;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top-icon {
        width: 20px;
        height: 20px;
    }
    
    .menu-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .subcategory-title {
        font-size: 1.1rem;
    }
    
    .item-name {
        font-size: 1rem;
    }
    
    .build-your-own .item-name {
        font-size: 1rem !important;
    }
    
    .extras-grid .item-name {
        font-size: 1rem !important;
    }
    
    .iced-drinks-grid .item-name {
        font-size: 1rem !important;
    }
    
    /* Universal item name size override - ALL item names same size */
    .item-name,
    .build-your-own .item-name,
    .extras-grid .item-name,
    .iced-drinks-grid .item-name,
    .coffee-name,
    .tea-name,
    .juice-name {
        font-size: 1rem !important;
    }
    
    .item-description {
        font-size: 0.85rem;
    }
    
    /* Supporting messages - same size as descriptions */
    .section-note, 
    .category-note, 
    .herbal-note,
    .special-note,
    .price-note {
        font-size: 0.85rem !important;
    }
    
    .item-price {
        font-size: 1rem;
    }
    
    .build-your-own .item-price {
        font-size: 1rem;
    }
    
    .extras-grid .item-price {
        font-size: 1rem;
    }
    
    .iced-drinks-grid .item-price {
        font-size: 1rem;
    }
    
    .coffee-prices, .tea-prices, .juice-prices {
        font-size: 1rem;
    }
    
    /* Universal price size override - ALL prices same size */
    .item-price, 
    .build-your-own .item-price,
    .extras-grid .item-price,
    .iced-drinks-grid .item-price,
    .coffee-prices, 
    .tea-prices, 
    .juice-prices,
    .price {
        font-size: 1rem !important;
    }
    
    .menu-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .menu-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .item-info {
        flex: 1;
        margin-right: 1rem;
    }
    
    .item-price {
        flex-shrink: 0;
        font-size: 1.1rem;
    }
    
    .table-header, .coffee-row, .tea-row, .juice-row {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 0.5rem;
    }
    
    .coffee-sizes, .tea-sizes, .juice-sizes,
    .coffee-prices, .tea-prices, .juice-prices {
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .build-your-own, .extras-grid, .iced-drinks-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .build-your-own .menu-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        justify-content: space-between;
        padding: 1rem 0.8rem;
    }
    
    .build-your-own .item-info {
        margin-right: 1rem;
        margin-bottom: 0;
        flex: 1;
    }
    
    .build-your-own .item-price {
        margin-top: 0;
        flex-shrink: 0;
    }
    
    .extras-grid .menu-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        justify-content: space-between;
        padding: 1rem 0.8rem;
    }
    
    .extras-grid .item-info {
        margin-right: 1rem;
        margin-bottom: 0;
        flex: 1;
    }
    
    .extras-grid .item-price {
        margin-top: 0;
        flex-shrink: 0;
    }
    
    .iced-drinks-grid .menu-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        justify-content: space-between;
        padding: 1rem 0.8rem;
    }
    
    .iced-drinks-grid .item-info {
        margin-right: 1rem;
        margin-bottom: 0;
        flex: 1;
    }
    
    .iced-drinks-grid .item-price {
        margin-top: 0;
        flex-shrink: 0;
    }
}

    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
        }
        
        .header .container {
            flex-direction: row;
            gap: 0.5rem;
            flex-wrap: nowrap;
        }
        
        .logo-container {
            min-width: 150px;
            flex-shrink: 0;
        }
        
        .nav {
            flex: 1;
            min-width: 0;
            max-width: calc(100% - 170px);
        }
        
        .menu-title {
            font-size: 1.5rem;
        }
        
        .section-title {
            font-size: 1.3rem;
        }
        
        .category-title {
            font-size: 1.1rem;
        }
        
        .subcategory-title {
            font-size: 1rem;
        }
        
        .item-name {
            font-size: 0.9rem;
        }
        
        .build-your-own .item-name {
            font-size: 0.9rem !important;
        }
        
        .extras-grid .item-name {
            font-size: 0.9rem !important;
        }
        
        .iced-drinks-grid .item-name {
            font-size: 0.9rem !important;
        }
        
        /* Universal item name size override - ALL item names same size */
        .item-name,
        .build-your-own .item-name,
        .extras-grid .item-name,
        .iced-drinks-grid .item-name,
        .coffee-name,
        .tea-name,
        .juice-name {
            font-size: 0.9rem !important;
        }
        
        .item-description {
            font-size: 0.8rem;
        }
        
        /* Supporting messages - same size as descriptions */
        .section-note, 
        .category-note, 
        .herbal-note,
        .special-note,
        .price-note {
            font-size: 0.8rem !important;
        }
        
        .item-price {
            font-size: 0.9rem;
        }
        
        .build-your-own .item-price {
            font-size: 0.9rem;
        }
        
        .extras-grid .item-price {
            font-size: 0.9rem;
        }
        
        .iced-drinks-grid .item-price {
            font-size: 0.9rem;
        }
        
        .coffee-prices, .tea-prices, .juice-prices {
            font-size: 0.9rem;
        }
        
        /* Universal price size override - ALL prices same size */
        .item-price, 
        .build-your-own .item-price,
        .extras-grid .item-price,
        .iced-drinks-grid .item-price,
        .coffee-prices, 
        .tea-prices, 
        .juice-prices,
        .price {
            font-size: 0.9rem !important;
        }
        
        .build-your-own .menu-item {
            flex-direction: row;
            align-items: center;
            text-align: left;
            justify-content: space-between;
            padding: 0.8rem 0.6rem;
        }
        
        .build-your-own .item-info {
            margin-right: 0.8rem;
            margin-bottom: 0;
            flex: 1;
        }
        
        .build-your-own .item-price {
            margin-top: 0;
            flex-shrink: 0;
            font-size: 1.1rem;
        }
        
        .extras-grid .menu-item {
            flex-direction: row;
            align-items: center;
            text-align: left;
            justify-content: space-between;
            padding: 0.8rem 0.6rem;
        }
        
        .extras-grid .item-info {
            margin-right: 0.8rem;
            margin-bottom: 0;
            flex: 1;
        }
        
        .extras-grid .item-price {
            margin-top: 0;
            flex-shrink: 0;
            font-size: 1.1rem;
        }
        
        .iced-drinks-grid .menu-item {
            flex-direction: row;
            align-items: center;
            text-align: left;
            justify-content: space-between;
            padding: 0.8rem 0.6rem;
        }
        
        .iced-drinks-grid .item-info {
            margin-right: 0.8rem;
            margin-bottom: 0;
            flex: 1;
        }
        
        .iced-drinks-grid .item-price {
            margin-top: 0;
            flex-shrink: 0;
            font-size: 1.1rem;
        }
        
        /* Navigation styles removed - using tablet styles that work */
        
        /* Ensure hamburger menu is visible on very small screens */
        .hamburger-menu {
            display: flex !important;
            flex-shrink: 0 !important;
            margin-left: 0.5rem !important;
            z-index: 1001 !important;
        }
        
        .logo-container {
            max-width: 50% !important;
        }
        
        .social-section {
            max-width: 25% !important;
        }
        
        .logo-text {
            font-size: 1.8rem;
        }
        
        .logo-image {
            height: 35px;
        }
        
        .logo-container {
            gap: 0.8rem;
        }
        
    }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation - Removed for better performance */

/* Hover Effects - Background only, no text color changes */

/* Social Media Section */
.social-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(232, 171, 21, 0.1);
    color: #EFEFEC;
    text-decoration: none;
    border: 1px solid rgba(232, 171, 21, 0.3);
}

.social-link:hover {
    background-color: #E8AB15;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 171, 21, 0.3);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


/* Print Styles */
@media print {
    .header, .footer {
        display: none;
    }
    
    .menu-section {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .menu-item {
        border-bottom: 1px solid #ccc;
    }
}
