/* ==========================================
   THE MORNING BREW - DESIGN SYSTEM STYLESHEET
   ========================================== */

/* 1. VARIABLES & SYSTEM TOKENS */
:root {
    /* Color Palette - Inspired by shop interior photo */
    --bg-primary: #FAF9F6;          /* Off-white warm wall trim */
    --bg-secondary: #FFFFFF;        /* Pure white */
    
    --brand-green: #2A3F34;         /* Deep forest green from the wall */
    --brand-green-rgb: 42, 63, 52;
    --brand-green-light: #E7EBE8;   /* Soft sage green accent */
    --brand-brown: #543E30;         /* Dark stained wood brown from slats */
    --brand-brown-rgb: 84, 62, 48;
    --brand-gold: #D4AF37;          /* Accent gold */
    
    --text-primary: #1C2B22;        /* Dark forest-black for elegant readability */
    --text-secondary: #3D4A41;      /* Charcoal with a hint of sage */
    --text-muted: #738278;          /* Muted sage-grey */
    
    --primary-accent: var(--brand-green);
    --primary-accent-rgb: var(--brand-green-rgb);
    --primary-hover: #1E2D25;       
    --secondary-accent: var(--brand-brown);
    --secondary-hover: #433126;
    
    --dark-bg: var(--brand-green);  /* Forest green block backgrounds */
    --dark-text-primary: #FAF9F6;
    --dark-text-secondary: #C5D0C9;
    
    /* UI Containers & Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 30px 0 rgba(42, 63, 52, 0.05);
    --glass-blur: blur(16px);
    
    --dark-glass-bg: rgba(42, 63, 52, 0.8);
    --dark-glass-border: rgba(255, 255, 255, 0.08);
    --dark-glass-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.2);
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* 2. BASE RESET & TYPOGRAPHY */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.text-center {
    text-align: center;
}

/* 3. REUSABLE COMPONENTS & UTILITIES */

/* Glass Card */
.card-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(198, 139, 89, 0.3);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--primary-accent);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(var(--primary-accent-rgb), 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-accent-rgb), 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: var(--text-primary);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-arrow i {
    margin-left: 0.5rem;
    transition: var(--transition-smooth);
}

.btn-arrow:hover i {
    transform: translateX(4px);
}

/* Icons */
.card-icon {
    font-size: 2.2rem;
    color: var(--primary-accent);
    margin-bottom: 1.25rem;
}

/* Badges & Tags */
.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.tag-staff-pick {
    background-color: rgba(212, 175, 55, 0.15);
    color: #B38F1C;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.tag-gluten-free {
    background-color: rgba(76, 175, 80, 0.12);
    color: #2E7D32;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.tag-vegan {
    background-color: rgba(156, 39, 176, 0.1);
    color: #7B1FA2;
    border: 1px solid rgba(156, 39, 176, 0.15);
}

.tag-vegetarian {
    background-color: rgba(0, 150, 136, 0.1);
    color: #00796B;
    border: 1px solid rgba(0, 150, 136, 0.15);
}

/* 4. HEADER & STICKY NAV */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    height: 70px;
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(42, 63, 52, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.nav-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF; /* White by default on dark hero background */
    transition: var(--transition-smooth);
}

.logo-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    color: var(--brand-gold); /* Gold icon by default for contrast */
    transition: var(--transition-smooth);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.85); /* Slightly transparent white by default */
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FFFFFF; /* White hover underline by default */
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
    color: #FFFFFF;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Scrolled transitions for text colors */
.site-header.scrolled .logo {
    color: var(--text-primary);
}

.site-header.scrolled .logo-icon {
    color: var(--primary-accent);
}

.site-header.scrolled .nav-link {
    color: var(--text-secondary);
}

.site-header.scrolled .nav-link::after {
    background-color: var(--primary-accent);
}

.site-header.scrolled .nav-link:hover, 
.site-header.scrolled .nav-link.active {
    color: var(--text-primary);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF; /* White toggle by default */
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.site-header.scrolled .mobile-toggle .bar {
    background-color: var(--text-primary);
}

/* 5. HOMEPAGE HERO SECTION */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    /* Clean CSS background with warm gradient and blurred coffee elements style */
    background: radial-gradient(circle at center, rgba(42, 63, 52, 0.7) 0%, rgba(26, 38, 32, 0.95) 100%), 
                url('/images/hero_coffee.png') center/cover no-repeat;
    margin-bottom: 4rem;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 30, 24, 0.25);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-content {
    max-width: 650px;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    background: rgba(26, 18, 14, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(198, 139, 89, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--brand-gold);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.hero-tagline {
    font-size: 1.4rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--dark-text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

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

/* 6. HIGHLIGHTS & SECTIONS */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.highlights-section {
    margin-bottom: 6rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 350;
}

/* 7. TEASER SECTION */
.about-teaser-section {
    background-color: var(--dark-bg);
    color: var(--dark-text-primary);
    padding: 6rem 0;
    margin-bottom: 6rem;
}

.teaser-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.teaser-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    height: 420px;
}

.teaser-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teaser-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26,18,14,0.3) 0%, rgba(26,18,14,0) 100%);
}

.teaser-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.teaser-badge {
    color: var(--primary-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.teaser-title {
    color: #FFFFFF;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.teaser-text {
    color: var(--dark-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.teaser-text:last-of-type {
    margin-bottom: 2.5rem;
}

/* 8. VISIT & CONTACT SECTION */
.visit-section {
    margin-bottom: 6rem;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.visit-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(198, 139, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-details p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.info-details a:hover {
    color: var(--primary-accent);
    text-decoration: underline;
}

.social-links-inline {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-accent);
}

.social-link-item:hover {
    color: var(--primary-hover);
}

.social-link-item i {
    margin-right: 0.25rem;
}

.visit-map-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    height: 380px;
}

.map-link-container {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 30, 24, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.map-btn {
    background-color: var(--dark-bg);
    color: #FFFFFF;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: var(--transition-smooth);
}

.map-link-container:hover .map-image {
    transform: scale(1.03);
}

.map-link-container:hover .map-overlay {
    background-color: rgba(44, 30, 24, 0.35);
}

.map-link-container:hover .map-btn {
    background-color: var(--primary-accent);
    transform: translateY(-2px);
}

/* 9. THEME LAYOUT PAGES - PAGES HERO */
.page-hero {
    height: 40vh;
    min-height: 280px;
    background: radial-gradient(circle at center, rgba(42, 63, 52, 0.7) 0%, rgba(26, 38, 32, 0.95) 100%), 
                url('/images/hero_beans.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 4rem;
}

.page-hero-content {
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--dark-text-secondary);
    font-weight: 300;
}

.page-article {
    margin-bottom: 6rem;
    max-width: 800px;
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.entry-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.entry-content ul, .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* 10. MENU PAGE STYLING */
.menu-hero {
    background-image: radial-gradient(circle at center, rgba(42, 63, 52, 0.7) 0%, rgba(26, 38, 32, 0.95) 100%), 
                     url('/images/hero_menu.png');
}

.menu-page-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
}

/* Category Sidebar */
.menu-categories-nav {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-left: 2px solid rgba(44, 30, 24, 0.08);
    padding-left: 1rem;
}

.category-nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.35rem 0;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.category-nav-link.sub-link {
    padding-left: 1rem;
    font-size: 0.85rem;
    font-weight: 400;
}

.category-nav-link:hover, .category-nav-link.active {
    color: var(--primary-accent);
    padding-left: 0.25rem;
}

.category-nav-link.active {
    font-weight: 600;
}

.menu-sections {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.menu-section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px dashed rgba(198, 139, 89, 0.2);
    padding-bottom: 0.75rem;
}

.menu-section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 700px;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.menu-item-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-accent);
    flex-shrink: 0;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 1rem;
}

.menu-item-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.menu-subsection {
    margin-top: 3.5rem;
}

.menu-subsection-title {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.menu-subsection-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* 10.1 ABOUT PAGE STYLING */
.about-hero {
    background-image: radial-gradient(circle at center, rgba(42, 63, 52, 0.7) 0%, rgba(26, 38, 32, 0.95) 100%), 
                     url('/images/hero_about.png');
}

.about-page-container {
    max-width: 900px;
    margin: 0 auto 6rem auto;
}

.about-section-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-section-grid.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.about-photo-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.about-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-intro-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 350;
    margin-bottom: 2rem;
}

.about-quote-box {
    border-left: 3px solid var(--primary-accent);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-primary);
    font-family: 'Playfair Display', Georgia, serif;
}

/* 11. FOOTER STYLING */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--dark-text-primary);
    padding: 5rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 4rem;
}

.footer-col h3, .footer-col h4 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.footer-col h3 {
    font-size: 1.5rem;
}

.footer-col h4 {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--dark-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    transform: translateY(-3px);
}

.footer-link {
    color: var(--dark-text-secondary);
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary-accent);
    text-decoration: underline;
}

.hours-text {
    font-size: 1.05rem !important;
    font-weight: 500;
    color: var(--secondary-accent) !important;
}

.hours-sub {
    font-size: 0.85rem;
    color: var(--dark-text-secondary);
    opacity: 0.7;
    display: block;
}

.footer-col i {
    width: 20px;
    margin-right: 0.5rem;
    color: var(--primary-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.75rem 0;
    background-color: #120C09;
}

.footer-bottom-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--dark-text-secondary);
    opacity: 0.8;
    flex-wrap: wrap;
    gap: 1rem;
}

.made-by {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.heart-icon {
    color: #E24C38;
}

/* 12. ANIMATIONS & HOVER EFFECTS */
.animate-hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

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

/* 13. RESPONSIVE BREAKPOINTS (MEDIA QUERIES) */

/* Large Tablets / Laptops */
@media (max-width: 1024px) {
    .teaser-container {
        gap: 2rem;
    }
    .teaser-image-wrapper {
        height: 350px;
    }
}

/* Tablets (Portrait) */
@media (max-width: 768px) {
    body {
        padding-top: 0; /* Keep header relative on mobile if needed */
    }
    
    .site-header {
        background: rgba(250, 248, 245, 0.95) !important;
        backdrop-filter: var(--glass-blur);
        border-bottom: 1px solid rgba(44, 30, 24, 0.06);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Navigation drawer */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-primary);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        border-top: 1px solid rgba(44, 30, 24, 0.06);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    /* Burger Menu Animation */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    body.no-scroll {
        overflow: hidden;
    }
    
    /* Hero */
    .hero-section {
        height: auto;
        padding: 7rem 0 4rem 0;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    /* Grid sections */
    .teaser-container, .visit-grid, .about-section-grid, .about-section-grid.reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .teaser-image-wrapper {
        order: 2;
        height: 300px;
    }
    
    .teaser-content {
        order: 1;
    }
    
    .menu-page-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .menu-categories-nav {
        position: relative;
        top: 0;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        border-left: none;
        border-bottom: 2px solid rgba(44, 30, 24, 0.08);
        padding-left: 0;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-nav-link {
        padding: 0.5rem 1rem;
    }
    
    .category-nav-link.sub-link {
        display: none; /* Hide sublinks on mobile to save space */
    }
    
    .category-nav-link:hover, .category-nav-link.active {
        padding-left: 1rem;
        border-bottom: 2px solid var(--primary-accent);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons, .social-links-inline {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.65rem;
    }
    
    .section-title, .teaser-title, .page-title {
        font-size: 1.8rem;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
}
