/* ============================================
   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-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   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: linear-gradient(135deg, 
        rgba(0,0,0,0.7) 0%, 
        rgba(0,0,0,0.4) 50%, 
        rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 3rem;
    animation: fadeInUp 1s ease;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    max-width: 700px;
    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 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

/* ============================================
   Opening Hours Section
   ============================================ */
.opening-hours-section {
    background: var(--light-bg);
}

.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: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hours-day:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.hours-day.closed {
    opacity: 0.6;
    background: #f0f0f0;
}

.day-name {
    font-weight: 700;
    font-size: 1.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-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-preview-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--light-bg);
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--white);
}

.contact-preview-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-preview-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.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: 16px;
    box-shadow: var(--shadow-md);
}

.delivery-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
}

.delivery-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.delivery-table thead th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.delivery-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.delivery-table tbody tr:last-child {
    border-bottom: none;
}

.delivery-table tbody tr:hover {
    background: var(--light-bg);
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.delivery-table tbody td {
    padding: 1.25rem 1rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.delivery-table tbody td:first-child {
    font-weight: 600;
    color: var(--secondary-color);
}

.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);
    font-size: 1.1rem;
}

.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);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        height: 35px !important;
        max-width: 120px !important;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero {
        margin-top: 60px;
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 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;
    }

    .logo {
        font-size: 1rem;
    }

    .logo img {
        height: 30px !important;
        max-width: 100px !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;
    }
}
