/* ============================================
   Premium Restaurant Website - CSS Styles
   ============================================ */

/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #2c3e50;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title::before {
    display: none;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 15px rgba(0,0,0,0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link::before {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(176, 33, 33, 0.08);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero::after {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 850px;
    padding: 3rem 2rem;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(176, 33, 33, 0.3);
    position: relative;
    z-index: 1;
    font-size: 1rem;
    padding: 1rem 2.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 33, 33, 0.4);
}

/* ============================================
   Opening Hours Section
   ============================================ */
.opening-hours-section {
    background: var(--light-bg);
}

.opening-hours-section::before {
    display: none;
}

.opening-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.hours-day {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-day:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(176, 33, 33, 0.15);
    border-color: var(--primary-color);
}

.hours-day.closed {
    opacity: 0.6;
    background: #f0f0f0;
}

.day-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.day-hours {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.hours-day.closed .day-hours {
    color: var(--text-light);
}

/* ============================================
   Contact Preview Section
   ============================================ */
.contact-preview-section {
    background: var(--white);
}

.contact-preview-section::before {
    display: none;
}

/* Delivery Areas Section on Home */
.delivery-areas-section {
    background: var(--light-bg);
}

.delivery-areas-section::before {
    display: none;
}

.delivery-areas-section .delivery-intro {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-areas-section .delivery-table-container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-preview-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(176, 33, 33, 0.12);
    border-color: var(--primary-color);
    background: var(--white);
}

.contact-preview-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-preview-card:hover .icon {
    transform: scale(1.1);
}

.contact-preview-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-preview-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Page Content (Dynamic Pages)
   ============================================ */
.page-section {
    padding: 5rem 0;
    min-height: 60vh;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.page-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Menu Styling */
.menu-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.menu-section h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.menu-item {
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.item-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.item-description {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Reservation Info */
.reservation-info {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.reservation-info h3 {
    color: var(--primary-color);
    margin-top: 2rem;
}

.reservation-info p.note {
    background: var(--white);
    padding: 1rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    margin-top: 2rem;
    font-style: italic;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   PDF Menu Section
   ============================================ */
.menu-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

/* PDF Viewer Container */
.pdf-viewer-container {
    margin: 3rem 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.pdf-header {
    background: var(--light-bg);
    padding: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.pdf-header h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.pdf-header p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.pdf-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pdf-embed {
    background: #f5f5f5;
    padding: 0;
}

.pdf-embed iframe {
    border: none;
    display: block;
    min-height: 800px;
}

/* Old PDF Grid Styles (kept for backward compatibility) */
.pdf-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pdf-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.pdf-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--white);
}

.pdf-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.pdf-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.pdf-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.btn-pdf {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    margin: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-pdf span {
    margin-right: 0.5rem;
}

.btn-pdf:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.btn-pdf.btn-view {
    background: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.btn-pdf.btn-view:hover {
    background: #1a252f;
    box-shadow: 0 6px 16px rgba(44, 62, 80, 0.4);
}

.no-pdf {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
    font-style: italic;
}

/* ============================================
   Delivery Table Styles
   ============================================ */
.delivery-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.delivery-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.delivery-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.delivery-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.delivery-table thead th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.delivery-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
}

.delivery-table tbody tr:last-child {
    border-bottom: none;
}

.delivery-table tbody tr:hover {
    background: var(--light-bg);
}

.delivery-table tbody td {
    padding: 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.delivery-table tbody td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.delivery-table tbody td:nth-child(2) {
    color: var(--text-light);
    font-weight: 500;
}

.delivery-table tbody td:last-child {
    font-weight: 700;
    color: var(--primary-color);
}

.free-delivery {
    color: #27ae60 !important;
    font-weight: 700 !important;
    position: relative;
}

.free-delivery::after {
    content: ' ✓ Kostenlos';
    font-size: 0.75rem;
    color: #27ae60;
    margin-left: 0.5rem;
    font-weight: 600;
}

.delivery-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    color: var(--text-light);
    font-style: italic;
}

/* Responsive Table */
@media (max-width: 768px) {
    .delivery-table thead th {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .delivery-table tbody td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .free-delivery::after {
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
    }
}

@media (max-width: 480px) {
    .delivery-intro {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .delivery-table thead th {
        padding: 0.875rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .delivery-table tbody td {
        padding: 0.875rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .delivery-table tbody td:last-child {
        font-size: 1rem;
    }
}

/* Responsive PDF Viewer */
@media (max-width: 768px) {
    .pdf-embed iframe {
        min-height: 600px;
    }
    
    .pdf-header {
        padding: 1.5rem;
    }
    
    .pdf-actions {
        flex-direction: column;
    }
    
    .btn-pdf {
        width: 100%;
        margin: 0.25rem 0;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

.footer-legal-link {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
    transition: var(--transition);
}

.footer-legal-link:hover {
    color: var(--primary-color);
}

.footer .social-links {
    justify-content: flex-start;
}

/* Footer SEO Section */
.footer-seo-section {
    margin: 3rem 0 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-seo-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.footer-pages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.footer-pages a {
    display: block;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.footer-pages a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

/* Scroll Animations - Simplified */
.hours-day,
.contact-preview-card,
.delivery-table-container {
    opacity: 1;
}

/* Removed excessive staggered animations */

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .logo {
        font-size: 1.25rem;
        letter-spacing: 0.3px;
    }

    .logo img {
        height: 40px !important;
        max-width: 130px !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        gap: 0.25rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: left;
        border-radius: 6px;
        margin-bottom: 0.25rem;
    }

    .mobile-menu-toggle {
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        margin-top: 60px;
        min-height: 450px;
        height: 70vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .opening-hours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hours-day {
        padding: 1.25rem;
    }

    .contact-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-preview-card {
        padding: 2rem 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-item {
        padding: 1rem;
    }

    .item-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 1.1rem;
    }

    .reservation-info {
        padding: 2rem 1.5rem;
    }

    .page-content {
        padding: 0 0.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    /* PDF Viewer Mobile Optimization */
    .pdf-embed iframe {
        min-height: 600px;
    }
    
    .pdf-header {
        padding: 1.5rem 1rem;
    }

    .pdf-header h3 {
        font-size: 1.3rem;
    }
    
    .pdf-actions {
        flex-direction: column;
    }
    
    .btn-pdf {
        width: 100%;
        margin: 0.25rem 0;
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }

    .pdf-viewer-container {
        margin: 2rem 0;
    }

    .footer-pages {
        grid-template-columns: 1fr;
    }

    .footer-seo-section {
        margin: 2rem 0 1.5rem;
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .nav-container {
        padding: 0.5rem 0.875rem;
    }

    .logo {
        font-size: 1.1rem;
        letter-spacing: 0.2px;
    }

    .logo img {
        height: 35px !important;
        max-width: 110px !important;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.8rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 0.75rem;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .section-title {
        font-size: 1.5rem;
    }

    .hours-day {
        padding: 1rem;
    }

    .day-name {
        font-size: 1rem;
    }

    .contact-preview-card {
        padding: 1.5rem 1rem;
    }

    .contact-preview-card .icon {
        font-size: 2.5rem;
    }

    .pdf-header {
        padding: 1.25rem 0.75rem;
    }

    .pdf-header h3 {
        font-size: 1.2rem;
    }

    .pdf-embed iframe {
        min-height: 500px;
    }

    .btn-pdf {
        padding: 0.875rem 1.25rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   Animations & Transitions
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.page-section {
    animation: fadeIn 0.5s ease;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .btn,
    .footer {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        margin-top: 0;
    }
}

/* ============================================
   SEO Content Styles
   ============================================ */
.seo-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.delivery-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.delivery-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.delivery-list .highlight {
    color: #28a745;
    font-weight: 600;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-box h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-box p {
    margin: 0.5rem 0;
}

.cta-box a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.cta-box a:hover {
    opacity: 0.9;
}

.delivery-info-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 2px solid var(--primary-color);
}

.delivery-info-box p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.free-tag {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.category-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-item h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.category-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   Floating Order Button
   ============================================ */
.floating-order-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(176, 33, 33, 0.3);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(176, 33, 33, 0.4);
}

.floating-order-btn .order-icon {
    font-size: 1.25rem;
}

.floating-order-btn .order-text {
    font-family: var(--font-heading);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    /* Removed overly complex pulse animation */
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ============================================
   Cookie Consent Banner (GDPR)
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 1.5rem;
    border-top: 3px solid var(--primary-color);
    animation: slideInUp 0.4s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(176, 33, 33, 0.3);
}

.cookie-reject {
    background: var(--light-bg);
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-reject:hover {
    background: var(--white);
    border-color: var(--primary-color);
}

/* Responsive Floating Button */
@media (max-width: 768px) {
    .floating-order-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .floating-order-btn .order-icon {
        font-size: 1.3rem;
    }

    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }

    .cookie-text h3 {
        font-size: 1rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem 1rem;
    }

    .cookie-consent {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .floating-order-btn {
        bottom: 15px;
        right: 15px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .floating-order-btn .order-text {
        display: none;
    }
    
    .floating-order-btn {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
    }
    
    .floating-order-btn .order-icon {
        font-size: 1.5rem;
        margin: 0;
    }
}
