/**
 * 3rois Template - CSS Principal
 * Café Restaurant des 3 Rois - Fribourg
 *
 * @copyright  (C) 2025 i-FormaSite
 * @license    GNU General Public License version 2 or later
 */

/* ==========================================================================
   Variables CSS
   ========================================================================== */

:root {
    /* Couleurs principales */
    --3rois-gold: #d4af37;
    --3rois-gold-dark: #b8962e;
    --3rois-gold-light: #e8d48a;
    --3rois-brown: #2c1810;
    --3rois-brown-light: #4a2c1c;
    --3rois-cream: #f5f0e6;
    --3rois-white: #ffffff;
    --3rois-black: #1a1a1a;

    /* Couleurs secondaires */
    --3rois-terracotta: #c17f59;
    --3rois-olive: #6b7b3c;
    --3rois-burgundy: #722f37;

    /* Typographie */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

    /* Espacements */
    --section-padding: 5rem;
    --section-padding-mobile: 3rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--3rois-black);
    background-color: var(--3rois-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--3rois-brown);
    margin-top: 0;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: var(--3rois-gold-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--3rois-gold);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Layout - Container
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 576px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* ==========================================================================
   Topbar
   ========================================================================== */

.topbar {
    background: var(--3rois-brown);
    color: var(--3rois-white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.topbar a {
    color: var(--3rois-gold-light);
}

.topbar a:hover {
    color: var(--3rois-gold);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background: var(--3rois-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.site-header.sticky-top {
    position: sticky;
    top: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
}

.logo-link {
    display: block;
}

.logo-img {
    max-height: 70px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--3rois-brown);
    line-height: 1.2;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--3rois-gold);
    line-height: 1.2;
}

/* Navigation */
.site-nav {
    flex: 1;
    display: none;
}

@media (min-width: 992px) {
    .site-nav {
        display: block;
    }
}

/* Menu Joomla - Toutes variantes */
.site-nav .nav,
.site-nav .navbar-nav,
.site-nav > ul,
.site-nav .mod-menu,
.site-nav ul.mod-menu,
.site-nav ul.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.site-nav .nav-link,
.site-nav .nav > li > a,
.site-nav > ul > li > a,
.site-nav .mod-menu > li > a,
.site-nav ul.menu > li > a,
.site-nav li > a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    color: var(--3rois-brown);
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all var(--transition-normal);
}

.site-nav .nav-link:hover,
.site-nav .nav > li > a:hover,
.site-nav > ul > li > a:hover,
.site-nav .mod-menu > li > a:hover,
.site-nav ul.menu > li > a:hover,
.site-nav li > a:hover,
.site-nav .nav-link.active,
.site-nav .nav > li.active > a,
.site-nav > ul > li.active > a,
.site-nav .mod-menu > li.active > a,
.site-nav .mod-menu > li.current > a,
.site-nav ul.menu > li.active > a,
.site-nav ul.menu > li.current > a {
    background: var(--3rois-cream);
    color: var(--3rois-gold-dark);
}

/* Masquer les liens vides dans le menu */
.site-nav li > a:empty,
.site-nav li > a[href$="?view=article&id=1"]:empty {
    display: none;
}

/* Masquer liens vides (parent) */
.site-nav li:has(> a:empty) {
    display: none;
}

/* ==========================================================================
   Maximenu CK - Override styles
   ========================================================================== */

.site-nav .maximenuck {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    list-style: none !important;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.site-nav .maximenuck > li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.site-nav .maximenuck > li::marker,
.site-nav .maximenuck > li::before {
    display: none !important;
    content: none !important;
}

.site-nav .maximenuck > li > a,
.site-nav .maximenuck > li > a.maximenuck {
    display: block;
    padding: 0.6rem 1rem;
    font-weight: 500;
    color: var(--3rois-brown);
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all var(--transition-normal);
}

.site-nav .maximenuck > li > a:hover,
.site-nav .maximenuck > li.active > a,
.site-nav .maximenuck > li.current > a {
    background: var(--3rois-cream);
    color: var(--3rois-gold-dark);
}

/* Masquer le premier élément (logo dans module) - déjà affiché ailleurs */
.site-nav .maximenuck > li.maximenuckmodule {
    display: none !important;
}

/* Style des icônes réseaux sociaux */
.site-nav .maximenuck .maximenuiconck {
    font-size: 1.1rem;
}

/* Masquer texte "txtacacher" mais garder l'icône */
.site-nav .maximenuck a.txtacacher .titreck-title {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* Header contact */
.header-contact {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--3rois-brown);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.header-phone:hover {
    color: var(--3rois-gold);
}

/* Mobile menu toggle */
.navbar-toggler {
    padding: 0.5rem;
    background: transparent;
    border: 2px solid var(--3rois-gold);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--3rois-brown);
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--3rois-brown);
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    bottom: -7px;
}

/* Mobile menu */
.mobile-menu-inner {
    padding: 1rem;
    background: var(--3rois-cream);
}

.mobile-menu-inner .nav,
.mobile-menu-inner > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-inner .nav-link,
.mobile-menu-inner a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--3rois-brown);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-contact {
    padding: 1rem;
    text-align: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--3rois-brown) 0%, var(--3rois-brown-light) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--3rois-white);
    padding: 2rem;
    max-width: 800px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--3rois-gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--3rois-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-gold,
.btn-primary {
    background: linear-gradient(135deg, var(--3rois-gold) 0%, var(--3rois-gold-dark) 100%);
    color: var(--3rois-white);
}

.btn-gold:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--3rois-white);
}

.btn-outline {
    background: transparent;
    color: var(--3rois-white);
    border: 2px solid var(--3rois-gold);
}

.btn-outline:hover {
    background: var(--3rois-gold);
    color: var(--3rois-white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--3rois-brown);
    border: 2px solid var(--3rois-gold);
}

.btn-outline-dark:hover {
    background: var(--3rois-gold);
    color: var(--3rois-white);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.main-component {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    .main-component {
        padding: var(--section-padding-mobile) 0;
    }
}

.content-top,
.content-bottom {
    padding: 3rem 0;
}

/* ==========================================================================
   Section Titles
   ========================================================================== */

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--3rois-brown);
    margin-bottom: 0.5rem;
}

.section-title .subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--3rois-gold);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--3rois-gold);
}

.section-divider svg {
    color: var(--3rois-gold);
}

/* ==========================================================================
   Cards - Menu Items
   ========================================================================== */

.menu-card {
    background: var(--3rois-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 1.5rem;
}

.menu-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--3rois-brown);
    margin-bottom: 0.5rem;
}

.menu-card-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.menu-card-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--3rois-gold);
}

/* Menu item simple (liste) */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

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

.menu-item-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--3rois-brown);
}

.menu-item-description {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--3rois-gold);
    white-space: nowrap;
    margin-left: 1rem;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--3rois-white);
    font-family: var(--font-heading);
    font-size: 1.125rem;
}

/* ==========================================================================
   Map Section
   ========================================================================== */

.map-section {
    position: relative;
}

.leaflet-map,
#map-container {
    width: 100%;
    height: 400px;
}

@media (min-width: 768px) {
    .leaflet-map,
    #map-container {
        height: 500px;
    }
}

/* Custom Leaflet popup */
.leaflet-popup-content-wrapper {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.leaflet-popup-content {
    margin: 1rem;
    font-family: var(--font-body);
}

.map-popup-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--3rois-brown);
    margin-bottom: 0.5rem;
}

.map-popup-address {
    color: #666;
    margin-bottom: 0.75rem;
}

.map-popup-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--3rois-gold-dark);
    font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--3rois-brown);
    color: var(--3rois-white);
    padding: 4rem 0 2rem;
}

.footer-logo {
    max-height: 80px;
    width: auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--3rois-gold);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--3rois-gold);
    margin-bottom: 1.5rem;
}

.footer-address {
    font-style: normal;
}

.footer-address p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-address svg {
    flex-shrink: 0;
    color: var(--3rois-gold);
    margin-top: 0.125rem;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-address a:hover {
    color: var(--3rois-gold);
}

/* Social links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--3rois-white);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--3rois-gold);
    color: var(--3rois-white);
    transform: translateY(-3px);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--3rois-gold);
}

.footer-bottom a:hover {
    color: var(--3rois-gold-light);
}

/* ==========================================================================
   Restaurant Specific - Menu Categories
   ========================================================================== */

.menu-category {
    margin-bottom: 4rem;
}

.menu-category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--3rois-gold);
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--3rois-brown);
    margin-bottom: 0.5rem;
}

.menu-category-subtitle {
    font-style: italic;
    color: #666;
}

/* Menu legend (pictogrammes) */
.menu-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: var(--3rois-cream);
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.legend-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu grid */
.menu-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Menu box (découvertes, spécialités) */
.menu-box {
    background: var(--3rois-white);
    border: 2px solid var(--3rois-gold);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.menu-box-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--3rois-gold);
    margin-bottom: 1rem;
}

.menu-box-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--3rois-brown);
    margin-bottom: 1rem;
}

.menu-box-price small {
    font-size: 1rem;
    font-weight: 400;
}

.menu-box-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.menu-box-items {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-box-items li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.menu-box-items li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   Article Content Styling
   ========================================================================== */

.com_content.view-article .item-page {
    max-width: 900px;
    margin: 0 auto;
}

.item-page h1.page-header {
    font-size: 2.5rem;
    color: var(--3rois-brown);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--3rois-gold);
}

.item-page .article-info {
    display: none; /* Masquer les métadonnées par défaut */
}

/* ==========================================================================
   Joomla Messages
   ========================================================================== */

.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-danger,
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-gold { color: var(--3rois-gold) !important; }
.text-brown { color: var(--3rois-brown) !important; }
.bg-cream { background-color: var(--3rois-cream) !important; }
.bg-brown { background-color: var(--3rois-brown) !important; }

.section-cream {
    background: var(--3rois-cream);
    padding: var(--section-padding) 0;
}

.section-brown {
    background: var(--3rois-brown);
    color: var(--3rois-white);
    padding: var(--section-padding) 0;
}

.section-brown h2,
.section-brown h3 {
    color: var(--3rois-white);
}

/* Visually hidden for accessibility */
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .header-inner {
        padding: 0.75rem 0;
    }

    .logo-img {
        max-height: 50px;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item-price {
        margin-left: 0;
        margin-top: 0.5rem;
    }

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

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .topbar,
    .site-header,
    .hero-section,
    .map-section,
    .site-footer,
    .navbar-toggler {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
    }

    .menu-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
