        /* Font declaration */
        @font-face {
            font-family: 'Forte MT';
            src: url('fortemtstd.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: #F8F9F3;
            padding: 20px;
            line-height: 1.6;
            color: #1B3A5C;
        }
        
        .menu-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            padding: 20px 40px 40px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo-header {
            text-align: center;
            margin-bottom: 10px;
        }
        
        .menu-logo {
            width: 180px;
            height: auto;
        }
        
        .logo {
            text-align: center;
            margin-bottom: 40px;
        }
        
        h1 {
            font-family: 'Forte MT', Georgia, serif;
            font-size: 2.5em;
            margin: 20px 0 20px 0;
            color: #1B3A5C;
            padding-top: 10px;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 20px;
        }
        
        h1 .spanish-header {
            text-align: right;
        }
        
        h1 .center-icon {
            text-align: center;
            min-width: 100px;
        }
        
        h1 .english-header {
            text-align: left;
        }
        
        h1.subcategory {
            font-size: 1.8em;
            margin: 20px 0 15px 0;
            color: #143E49;
        }
        
        .menu-item {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 20px;
            margin-bottom: 12px;
            padding-bottom: 8px;
        }
        
        .spanish {
            text-align: right;
        }
        
        .price {
            text-align: center;
            min-width: 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .english {
            text-align: left;
        }
        
        h2 {
            font-size: 1.3em;
            margin-bottom: 3px;
            color: #1B3A5C;
            line-height: 1.2;
        }
        
        h3 {
            font-family: Georgia, serif;
            font-size: 0.9em;
            font-weight: normal;
            color: #143E49;
            font-style: italic;
            line-height: 1.2;
            margin-top: 2px;
        }
        
        .price-text {
            font-size: 1.2em;
            font-weight: bold;
            color: #C4644A;
        }
        
        .weight {
            font-size: 0.85em;
            color: #143E49;
            margin-top: 3px;
        }
        
        .note {
            text-align: center;
            font-style: italic;
            color: #143E49;
            margin: 20px 0;
            padding: 12px;
            background: #F8F9F3;
            border-radius: 5px;
        }
        
        /* ========== HOMEPAGE STYLES ========== */
        
        .hero-section {
            position: relative;
            margin: 0 auto 40px auto;
            max-width: 500px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .hero-image {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .hero-text-overlay {
            position: absolute;
            top: 20px;
            width: 100%;
            z-index: 2;
            text-align: center;
        }
        
        .hero-title {
            font-family: 'Forte MT', Georgia, serif;
            font-size: 3.2em;
            margin: 0 auto;
            color: #E85D44;
            font-weight: normal;
            line-height: 1;
            text-align: center;
            white-space: nowrap;
            display: inline-block;
        }
        
        .hero-tagline {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 1.3em;
            margin-top: 5px;
            color: #1B3A5C;
            line-height: 1;
            text-align: center;
        }
        
        .menu-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 500px;
            margin: 20px auto 60px auto;
            padding: 0;
        }
        
        .menu-card {
            background: white;
            padding: 25px 30px;
            text-align: center;
            text-decoration: none;
            color: #1B3A5C;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }
        
        .menu-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        
        .menu-card h2 {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 2em;
            margin: 0;
            color: #C4644A;
            font-weight: normal;
            text-transform: uppercase;
        }
        
        .menu-card p {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 2em;
            color: #143E49;
            margin: 0;
            font-weight: normal;
            text-transform: uppercase;
        }
        
        .site-footer {
            text-align: center;
            padding: 40px 20px 20px 20px;
            border-top: 1px solid #ddd;
            color: #143E49;
            font-size: 0.9em;
        }
        
        .footer-links {
            margin-bottom: 20px;
            line-height: 2;
            font-size: 1.2em;
        }
        
        .footer-links a {
            color: #C4644A;
            text-decoration: none;
            margin: 0 15px;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .map-container {
            max-width: 500px;
            margin: 20px auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            display: block;
        }
        
        .footer-credit {
            font-size: 0.85em;
            color: #143E49;
            margin-top: 15px;
        }
        
        .footer-credit a {
            color: #1B3A5C;
            text-decoration: none;
        }
        
        .footer-credit a:hover {
            text-decoration: underline;
        }
        
        /* ========== DRINKS MENU TWO-COLUMN STYLES ========== */
        
        .drinks-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            padding: 25px 25px 140px 25px;
            position: relative;
        }
        
        .drinks-two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .drinks-half {
            display: flex;
            flex-direction: column;
        }
        
        .drinks-section-header {
            font-family: 'Forte MT', Georgia, serif;
            font-size: 1.8em;
            color: #1B3A5C;
            text-align: center;
            margin: 15px 0 12px 0;
            line-height: 1.3;
        }
        
        .header-english {
            font-family: 'Forte MT', Georgia, serif;
            font-size: 1em;
            color: #1B3A5C;
            font-style: normal;
        }
        
        .drinks-item {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 15px;
            margin-bottom: 8px;
            align-items: baseline;
        }
        
        .drink-name h2 {
            font-size: 1.1em;
            color: #1B3A5C;
            margin-bottom: 2px;
            line-height: 1.2;
        }
        
        .drink-name h3 {
            font-family: Georgia, serif;
            font-size: 0.85em;
            font-weight: normal;
            color: #143E49;
            font-style: italic;
            margin-top: 1px;
            line-height: 1.1;
        }
        
        .drink-price {
            text-align: right;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .drink-price .price {
            color: #C4644A;
            font-weight: bold;
            font-size: 1em;
        }
        
        .drink-price .size {
            color: #143E49;
            font-size: 0.85em;
        }
        
        .drinks-logo {
            position: absolute;
            bottom: 20px;
            right: 25px;
            width: 120px;
        }
        
        .drinks-logo img {
            width: 100%;
            height: auto;
        }
        
        /* Print styles for drinks menu */
        @media print {
            .drinks-container {
                padding: 15px;
                max-width: 100%;
            }
            
            .drinks-two-column {
                gap: 25px;
            }
            
            .drinks-section-header {
                margin: 10px 0 8px 0;
            }
            
            .drinks-item {
                margin-bottom: 6px;
            }
            
            .drinks-logo {
                bottom: 15px;
                right: 20px;
                width: 100px;
            }
        }
        
        /* Mobile optimization - keeps 3 columns but makes everything smaller */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }
            
            .hero-section {
                margin-bottom: 30px;
            }
            
            .hero-text-overlay {
                top: 15px;
                right: 15px;
            }
            
            .hero-title {
                font-size: 2.2em;
            }
            
            .hero-tagline {
                font-size: 1em;
            }
            
            .menu-cards {
                gap: 15px;
                margin-top: 15px;
                margin-bottom: 40px;
            }
            
            .menu-card {
                padding: 20px 25px;
                gap: 10px;
            }
            
            .menu-card h2 {
                font-size: 1.5em;
            }
            
            .menu-card p {
                font-size: 1.5em;
            }
            
            .footer-links a {
                display: block;
                margin: 10px 0;
            }
            
            .menu-container {
                padding: 15px;
            }
            
            .logo-header {
                margin-bottom: 10px;
            }
            
            .menu-logo {
                width: 150px;
            }
            
            .logo {
                margin-bottom: 20px;
            }
            
            h1 {
                font-size: 1.2em;
                margin: 20px 0 15px 0;
                gap: 10px;
            }
            
            h1.subcategory {
                font-size: 1em;
                margin: 15px 0 10px 0;
            }
            
            .menu-item {
                gap: 8px;
                margin-bottom: 15px;
                padding-bottom: 12px;
            }
            
            .price {
                min-width: 60px;
            }
            
            h2 {
                font-size: 0.85em;
                margin-bottom: 3px;
            }
            
            h3 {
                font-size: 0.7em;
                line-height: 1.3;
            }
            
            .price-text {
                font-size: 0.9em;
            }
            
            .weight {
                font-size: 0.65em;
                margin-top: 2px;
            }
            
            .note {
                font-size: 0.75em;
                margin: 15px 0;
                padding: 10px;
            }
        }

        /* Print styles */
        @media print {
            body {
                background-color: white;
                padding: 0;
            }
            
            .menu-container {
                max-width: 100%;
                padding: 20px;
                box-shadow: none;
            }
            
            /* Manual page break class */
            .page-break {
                page-break-after: always;
                break-after: page;
            }
            
            /* Hide logo in print */
            .logo-header {
                display: none;
            }
            
            /* Prevent page breaks inside menu items */
            .menu-item {
                page-break-inside: avoid;
                break-inside: avoid;
            }
            
            /* CRITICAL: Prevent page breaks after section headers */
            h1, h1.subcategory {
                page-break-after: avoid;
                break-after: avoid;
                page-break-inside: avoid;
                break-inside: avoid;
            }
            
            /* Force headers to stay with next element */
            h1 + .menu-item,
            h1.subcategory + .menu-item {
                page-break-before: avoid;
                break-before: avoid;
            }
            
            /* Keep menu item groups together when possible */
            .menu-item + .menu-item {
                page-break-before: auto;
            }
            
            /* Slightly reduce spacing for print to fit more content */
            .menu-item {
                margin-bottom: 15px;
                padding-bottom: 10px;
            }
            
            h1 {
                margin: 15px 0 15px 0;
            }
            
            h1.subcategory {
                margin: 15px 0 10px 0;
            }
            
            /* Ensure logo doesn't create orphan headers */
            .logo-header {
                page-break-after: avoid;
                break-after: avoid;
            }
        }

