/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    background-attachment: fixed;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive container widths for better space utilization */
@media (min-width: 1600px) {
    .container, .nav-container {
        max-width: 1600px;
        padding: 0 20px;
    }
    
    .hero {
        min-height: 70vh;
        padding: 120px 0 50px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
    }
}

@media (max-width: 1200px) {
    .container, .nav-container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    .hero {
        min-height: 75vh;
        padding: 130px 0 55px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
    }
}

/* Desktop-specific hero layout */
@media (min-width: 769px) {
    .hero-content {
        text-align: center !important;
        align-items: center !important;
        max-width: 100% !important;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .container, .nav-container {
        padding: 0 20px;
    }
    
    .footer {
        padding: 15px 0 10px;
        background-size: 130%;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
        margin-bottom: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .footer-section {
        padding: 0.8rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        letter-spacing: 0.2px;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        line-height: 1.3;
    }
    
    .footer-bottom {
        padding: 0.8rem 0.5rem 0.3rem;
        font-size: 0.75rem;
    }
    
    .footer-bottom p {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .footer-bottom p::after {
        font-size: 1em;
        margin-top: 0.25rem;
    }
    
    /* Hours table mobile optimization */
    .hours-table-container {
        margin-top: 2rem;
        max-width: 95%;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 6px 15px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .hours-table {
        font-size: 1.1rem;
    }
    
    .hours-table thead th {
        padding: 1.2rem 1rem !important;
        font-size: 1.2rem !important;
        letter-spacing: 0.5px !important;
        text-align: center !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    }
    
    .hours-table tbody td {
        padding: 1.2rem 1rem !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2) !important;
    }
    
    .hours-table tbody td:first-child {
        text-align: center !important;
        border-right: 2px solid rgba(139, 0, 0, 0.2) !important;
        font-weight: 700 !important;
    }
    
    .hours-table tbody td:last-child {
        font-size: 1rem !important;
        letter-spacing: 0.5px !important;
        text-align: center !important;
        font-family: 'Courier New', monospace !important;
        font-weight: 800 !important;
    }
    
    .hours-note,
    .hours-disclaimer {
        max-width: 95%;
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .hours-note p,
    .hours-disclaimer p {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    /* Enhanced mobile spacing */
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-bottom: 1.5rem;
    }
    
    .features {
        padding: 3rem 0;
        margin: 1rem 0;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Enhanced mobile text readability */
    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-title {
        padding: 15px 25px;
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 5vw, 1.4rem);
        color: white;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        color: white;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    }
}

/* Seasonal Message Styling */
.seasonal-message {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85), rgba(102, 0, 0, 0.8)) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 15px !important;
    margin-top: 15px !important;
    display: inline-block !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px) !important;
    text-align: center !important;
    line-height: 1.4 !important;
}

/* Typography - Enhanced Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
}

.section-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: #8B0000;
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.2vw, 1.375rem);
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.5;
}

.section-description {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons - Enhanced Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    min-height: 48px;
    min-width: 48px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #8B0000, #660000);
    color: white;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, #A00000, #770000);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #404040, #2c2c2c);
}

.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #8B0000;
    border: 2px solid #8B0000;
    box-shadow: none;
}

.btn-outline:hover {
    background: #8B0000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid #8B0000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-menu {
    margin-left: auto;
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Pacifico', cursive;
    color: #8B0000;
    font-size: 1.2rem;
    white-space: nowrap;
}

.nav-logo h1 {
    font-family: 'Pacifico', cursive;
    color: #8B0000;
    font-size: 1.1rem;
}

@media (min-width: 769px) {
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 1.5rem;
    }
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    min-height: 40px;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #8B0000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8B0000;
    transition: width 0.3s ease;
}

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fafafa;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #f0f0f0;
    padding: 0.5rem 0;
    max-height: 0;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu .nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f8f8;
}

.dropdown-menu .nav-link:last-child {
    border-bottom: none;
}

.dropdown-menu .nav-link:hover {
    background: #f8f8f8;
    color: #8B0000;
    padding-left: 2rem;
}

.dropdown-menu .nav-link::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 12px;
    margin-left: 8px;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger:focus-visible {
    outline: 2px solid #8B0000;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Hero Section - Enhanced */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(102, 0, 0, 0.1)), 
                url('images/Background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(40, 40, 40, 0.3));
    opacity: 1;
}

.hero-content {
    flex: 1;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(248, 248, 248, 0.15));
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}

.hero-title, .footer-title {
    font-family: 'Pacifico', cursive;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    font-weight: 400;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-photo {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    border-radius: 15px;
    border: 3px solid #8B0000;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo::before {
    content: '📸 Add Parlor Photo Here';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #8B0000;
    font-weight: 600;
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    text-align: center;
    z-index: 1;
}

.hero-photo.has-photo::before {
    display: none;
}

.ice-cream-illustration {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.cone {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: relative;
    z-index: 1;
}

.scoops {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scoop {
    width: 100px;
    height: 60px;
    border-radius: 50px 50px 0 0;
    position: relative;
    margin-bottom: -10px;
}

.scoop-1 {
    background: linear-gradient(135deg, #8B0000, #660000);
    animation: bounce 2s ease-in-out infinite;
}

.scoop-2 {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    animation: bounce 2s ease-in-out infinite 0.3s;
}

.scoop-3 {
    background: linear-gradient(135deg, #000000, #333333);
    animation: bounce 2s ease-in-out infinite 0.6s;
}

.hero-mascot {
    margin-bottom: 2rem;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95), rgba(255, 255, 255, 0.95)), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin: 1rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(102, 0, 0, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.2), 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #8B0000;
}

.feature-card i {
    font-size: 3rem;
    color: #8B0000;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
    color: #660000;
}

.feature-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 1.25rem;
    color: #2c2c2c;
    font-weight: 600;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.feature-photo {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f0f0f0;
    overflow: hidden;
    position: relative;
}

.feature-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-photo:hover img {
    transform: scale(1.05);
}

.feature-photo::before {
    content: '📸 Add Photo Here';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #8B0000;
    font-weight: 600;
    z-index: 1;
}

.feature-photo.has-photo::before {
    display: none;
}

/* Menu Preview */
.menu-preview {
    padding: 2rem 0;
    background: linear-gradient(rgba(235, 235, 235, 0.95), rgba(240, 240, 240, 0.95)), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

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

.menu-category {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.menu-category:hover {
    border-color: #8B0000;
}

.menu-category h3 {
    color: #8B0000;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-family: 'Pacifico', cursive;
    letter-spacing: 1px;
}

.menu-category ul {
    list-style: none;
}

.menu-category li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #4a4a4a;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.menu-category li:hover {
    color: #8B0000;
}

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

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95), rgba(255, 255, 255, 0.95));
    position: relative;
    margin: 1rem 0;
}

/* Enhanced Our Story Title */
.about-section .section-title {
    font-size: clamp(3rem, 7vw, 5rem) !important;
    text-align: center;
    margin-bottom: 3rem !important;
    color: #8B0000;
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.about-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #FF6B6B);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
    background: linear-gradient(rgba(240, 240, 240, 0.95), rgba(245, 245, 245, 0.95)), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #8B0000;
    margin-bottom: 1.5rem;
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about-description {
    font-size: clamp(1.1rem, 2.2vw, 1.25rem) !important;
    color: #4a4a4a;
    margin-bottom: 2rem !important;
    line-height: 1.9 !important;
    font-weight: 400;
    text-align: justify;
}

.about-description strong {
    color: #8B0000;
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #FF6B6B);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-item h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    color: #8B0000;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Pacifico', cursive;
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #4a4a4a;
    line-height: 1.7;
    font-weight: 400;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #8B0000;
    transition: transform 0.3s ease;
}

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

.vintage-photo {
    width: 300px;
    height: 300px;
    position: relative;
}

.photo-frame {
    width: 100%;
    height: 100%;
    border: 10px solid #8B0000;
    border-radius: 10px;
    background: linear-gradient(135deg, #8B0000, #660000);
    position: relative;
    overflow: hidden;
}

.photo-frame::before {
    content: '1950s';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Local Guide Section */
.local-guide-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95), rgba(255, 255, 255, 0.95));
    position: relative;
    margin: 1rem 0;
}

/* Local Guide Preview */
.local-guide-preview {
    padding: 100px 0;
    background: linear-gradient(rgba(235, 235, 235, 0.95), rgba(240, 240, 240, 0.95)), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

.guide-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    padding: 0 20px;
}

.guide-category {
    text-align: center;
    padding: 2.5rem;
    background: #fafafa;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.guide-category:hover {
    transform: translateY(-5px);
    border-color: #8B0000;
}

.guide-category i {
    font-size: 3rem;
    color: #8B0000;
    margin-bottom: 1rem;
}

.guide-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.guide-category p {
    color: #666;
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background: linear-gradient(rgba(240, 240, 240, 0.95), rgba(245, 245, 245, 0.95)), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

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

.order-option {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #f0f0f0;
}

.order-option:hover {
    transform: translateY(-5px);
    border-color: #8B0000;
}

.order-option i {
    font-size: 3rem;
    color: #8B0000;
    margin-bottom: 1rem;
}

.order-option h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.order-option p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: #ffffff;
    padding: 40px 0 20px;
    min-height: auto;
    border-top: 3px solid #8B0000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.footer-section {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.3rem;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #8B0000;
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #8B0000;
    color: white;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #660000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-links a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 1rem 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #b0b0b0;
    font-weight: 400;
    font-size: 0.85rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-bottom p::after {
    content: "🇺🇸";
    font-size: 1.1em;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.7));
    transition: transform 0.3s ease;
}

.footer-bottom p:hover::after {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero .site-logo {
    animation: retro-bounce 1.2s cubic-bezier(.68,-0.55,.27,1.55) 0.2s 1;
}

.hero-tagline {
    font-family: 'Pacifico', cursive;
    color: #8B0000;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-shadow: none;
}

/* Optimized Mobile Navigation */
@media (max-width: 768px) {
    /* Mobile logo optimization */
    .logo-img {
        height: 35px;
        width: auto;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-logo {
        gap: 0.4rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(139,0,0,0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        border-top: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        color: white;
        padding: 0.75rem 1rem;
        border-radius: 5px;
        transition: all 0.3s ease;
        text-decoration: none;
        font-weight: 500;
        display: block;
    }

    .nav-link:hover {
        background: rgba(255,255,255,0.1);
        color: #FFB6C1;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        padding: 10px;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        background: rgba(255,255,255,0.2);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Dropdown menu mobile optimization */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(139, 0, 0, 0.05);
        border-radius: 0;
        margin: 0;
        padding: 0;
        border: none;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: none;
    }

    .dropdown-toggle {
        position: relative;
    }

    .dropdown-toggle::after {
        content: '';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #8B0000;
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 15px 40px;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 0.8rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 0.8rem;
        text-shadow: none;
        line-height: 1.3;
    }

    .hero-description {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        margin-bottom: 1.2rem;
        text-shadow: none;
        line-height: 1.4;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: 200px;
        padding: 15px 30px;
        font-size: 1.1rem;
        border-radius: 12px;
        min-height: 48px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .features-grid,
    .menu-grid,
    .guide-categories,
    .order-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
        text-align: center;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .feature-card i {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        color: #8B0000;
    }

    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .feature-card p {
        font-size: 1rem;
        line-height: 1.6;
        color: #333;
        font-weight: 500;
    }

    .hero::after,
    .features::after,
    .hours-section::after,
    .menu-preview::after,
    .about-preview::after,
    .local-guide-preview::after,
    .order-section::after,
    .footer::after {
        font-size: 0.9rem;
        padding: 8px 16px;
        bottom: 20px;
        right: 20px;
        top: 20px;
        left: 20px;
    }
    
    .hero,
    .features,
    .hours-section,
    .menu-preview,
    .about-preview,
    .local-guide-preview,
    .order-section,
    .footer {
        background-attachment: scroll;
    }

    .local-guide-preview {
        padding: 80px 0;
        margin: 0;
    }

    .guide-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
        padding: 0;
    }

    .guide-category {
        padding: 1.5rem;
        min-height: 180px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .guide-category i {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        color: #8B0000;
    }

    .guide-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .guide-category p {
        font-size: 1rem;
        line-height: 1.6;
        color: #333;
        font-weight: 500;
    }

    .menu-category {
        padding: 1.5rem;
        text-align: center;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .menu-category ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-category li {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        color: #333;
        font-weight: 500;
    }

    .order-option {
        padding: 1.5rem;
        text-align: center;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .order-option i {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        color: #8B0000;
    }

    .order-option h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .order-option p {
        font-size: 1rem;
        line-height: 1.6;
        color: #333;
        font-weight: 500;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .features,
    .menu-preview,
    .about-preview,
    .local-guide-preview,
    .order-section {
        padding: 80px 0;
    }
}

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

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .hero-buttons .btn {
        min-width: 180px;
        padding: 12px 25px;
        font-size: 1rem;
    }

    .feature-card,
    .menu-category,
    .guide-category,
    .order-option {
        padding: 2rem;
        min-height: 200px;
    }

    .feature-card i,
    .guide-category i,
    .order-option i {
        font-size: 2.5rem;
    }

    .feature-card h3,
    .menu-category h3,
    .guide-category h3,
    .order-option h3 {
        font-size: 1.3rem;
    }

    .local-guide-preview {
        padding: 40px 0;
        margin: 10px 0;
    }

    .guide-categories {
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 0 10px;
    }

    .guide-category {
        padding: 1.5rem;
        min-height: 180px;
    }
}

/* Hours Section */
.hours-section {
    padding: 40px 0;
    background: url('product-images/Screenshot_20250701_175108_ChatGPT.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    position: relative;
    color: white;
}

.hours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 0, 0, 0.3) !important;
    z-index: 1;
    pointer-events: none;
}

.hours-section .section-title {
    position: relative;
    z-index: 2;
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    margin-bottom: 2rem !important;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 1px 1px 3px rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    font-weight: 400;
}

.hours-table-container {
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 8px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
}

.hours-table thead {
    background: linear-gradient(135deg, #8B0000, #A00000);
    color: white;
}

.hours-table thead th {
    padding: 1.5rem 2rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    font-size: 1.3rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    letter-spacing: 1px !important;
}

.hours-table thead th:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-table tbody tr {
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.hours-table tbody tr:last-child {
    border-bottom: none;
}

.hours-table tbody tr:hover {
    background-color: rgba(139, 0, 0, 0.05);
}

.hours-table tbody tr:nth-child(even) {
    background-color: rgba(248, 248, 248, 0.8);
}

.hours-table tbody tr:nth-child(even):hover {
    background-color: rgba(139, 0, 0, 0.08);
}

.hours-table tbody td {
    padding: 1.5rem 2rem !important;
    color: #8B0000 !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2) !important;
    font-size: 1.2rem !important;
    text-align: center !important;
}

.hours-table tbody td:first-child {
    font-weight: 700 !important;
    border-right: 2px solid rgba(139, 0, 0, 0.2) !important;
    width: 50% !important;
    text-align: center !important;
}

.hours-table tbody td:last-child {
    text-align: center !important;
    font-family: 'Courier New', monospace !important;
    letter-spacing: 1px !important;
    font-weight: 800 !important;
}

.hours-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(139, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.hours-note i {
    color: #8B0000;
    margin-right: 0.75rem;
    font-size: 1.3rem;
    vertical-align: middle;
}

.hours-note p {
    color: #8B0000;
    margin: 0;
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}

.hours-disclaimer {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 248, 225, 0.98);
    border-radius: 12px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hours-disclaimer i {
    color: #F57C00;
    margin-right: 0.75rem;
    font-size: 1.3rem;
    vertical-align: middle;
}

.hours-disclaimer p {
    color: #E65100;
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    display: inline-block;
    vertical-align: middle;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Highlight current day - now using table rows */
.hours-table tbody tr.today {
    background-color: rgba(139, 0, 0, 0.1) !important;
    border: 2px solid rgba(139, 0, 0, 0.3);
}

.hours-table tbody tr.today td {
    font-weight: 700;
    color: #660000;
}

.site-logo {
    height: 60px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 2px 12px #8B0000) drop-shadow(0 0px 2px #fff);
    background: transparent;
    border-radius: 12px;
}
.site-logo.hero {
    height: 120px;
    margin-bottom: 1.5rem;
}
.site-logo:hover {
    transform: scale(1.05);
}

/* Testimonials Hero Section - Thin & Mountain-Focused */
.testimonials-hero {
    background: linear-gradient(rgba(139, 0, 0, 0.5), rgba(102, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 90px 0 25px;
    text-align: center;
    position: relative;
    min-height: 200px;
}

.testimonials-hero h1 {
    font-family: 'Pacifico', cursive;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.testimonials-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars i {
    color: #FFD700;
    font-size: 1.5rem;
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.rating-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.rating-count {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95), rgba(255, 255, 255, 0.95));
    position: relative;
    margin: 1rem 0;
}

.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    border-color: #8B0000;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.testimonial-card.featured::before {
    content: 'Featured Review';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #8B0000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8B0000;
}

.customer-details h3 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.customer-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-date {
    color: #999;
    font-size: 0.8rem;
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #333;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.verified-badge {
    color: #28a745;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.favorite-flavor {
    color: #8B0000;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Review Statistics */
.review-stats {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-stats h2 {
    text-align: center;
    color: #8B0000;
    font-family: 'Pacifico', cursive;
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Leave Review Section */
.leave-review-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leave-review-section h2 {
    text-align: center;
    color: #8B0000;
    font-family: 'Pacifico', cursive;
    margin-bottom: 1rem;
}

.leave-review-section p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.5rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 2rem;
    color: #ddd;
    transition: color 0.3s ease;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input[type="radio"]:checked ~ label {
    color: #FFD700;
}

/* Responsive Design - Thin & Efficient */
@media (max-width: 768px) {
    .testimonials-hero {
        padding: 70px 0 20px;
        min-height: 160px;
    }
    
    .testimonials-hero h1 {
        font-size: 1.8rem;
    }
    
    .overall-rating {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-hero {
        padding: 60px 0 15px;
        min-height: 140px;
    }
    
    .testimonials-hero h1 {
        font-size: 1.6rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .customer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Loading States */
.form-loading {
    position: relative;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

.form-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #8B0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

/* Order Tracking Modal */
.order-tracking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-tracking-modal.active {
    opacity: 1;
    visibility: visible;
}

.tracking-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.order-tracking-modal.active .tracking-container {
    transform: translateY(0);
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.tracking-header h3 {
    color: #8B0000;
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    margin: 0;
}

.tracking-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tracking-close:hover {
    background: #f0f0f0;
    color: #8B0000;
}

.order-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.order-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8B0000;
    margin-bottom: 0.5rem;
}

.order-total {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.order-time {
    font-size: 0.9rem;
    color: #666;
}

.tracking-timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -30px;
    width: 2px;
    background: #ddd;
    z-index: 1;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item.active::before {
    background: #8B0000;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-icon {
    background: #8B0000;
    color: white;
    transform: scale(1.1);
}

.timeline-icon i {
    font-size: 1.2rem;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.notification.active {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-error .notification-content i {
    color: #dc3545;
}

.notification-content span {
    flex: 1;
    color: #333;
    font-size: 0.9rem;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: #f0f0f0;
    color: #333;
}

/* Form Validation Styles */
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1) !important;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.field-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.field-error::before {
    content: '⚠';
    font-size: 0.9rem;
}

/* Tracking Button */
.tracking-btn {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design for Tracking */
@media (max-width: 768px) {
    .tracking-container {
        padding: 1.5rem;
        width: 95%;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-icon {
        margin: 0 auto 1rem;
    }
    
    .timeline-item::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.active {
        transform: translateY(0);
    }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    margin-top: 80px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #8B0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #660000;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(255, 255, 255, 0.1)) !important;
    background-color: #fafafa !important;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.02) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(139, 0, 0, 0.02) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(139, 0, 0, 0.02) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(139, 0, 0, 0.02) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    pointer-events: none;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.faq-item:hover {
    box-shadow: 0 12px 30px rgba(139, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: rgba(139, 0, 0, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 0, 0, 0.05);
}

.faq-question h3 {
    color: #8B0000;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #8B0000;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(139, 0, 0, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question,
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* Performance Dashboard Styles */
.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8f9fa;
    min-height: 100vh;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dashboard-header h1 {
    color: #8B0000;
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: #666;
    font-size: 1.1rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: #8B0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.metric-content h3 {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.metric-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #28a745;
}

.metric-change.negative {
    color: #dc3545;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.chart-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chart-card h3 {
    color: #8B0000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.performance-metrics {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.performance-metrics h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 2rem;
}

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

.performance-card {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.performance-card h4 {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.performance-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.performance-value.good {
    color: #28a745;
}

.performance-value.needs-improvement {
    color: #ffc107;
}

.performance-value.poor {
    color: #dc3545;
}

.performance-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.error-tracking {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.error-tracking h2 {
    color: #8B0000;
    margin-bottom: 1.5rem;
}

.error-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.error-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
}

.error-severity {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.error-severity.low {
    background: #d4edda;
    color: #155724;
}

.error-severity.medium {
    background: #fff3cd;
    color: #856404;
}

.error-severity.high {
    background: #f8d7da;
    color: #721c24;
}

.error-details h4 {
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.error-details p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.error-time {
    color: #999;
    font-size: 0.8rem;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem;
    }
    
    .dashboard-header h1 {
        font-size: 2rem;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-card {
        padding: 1rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .error-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Allergy Information Styles */
.allergy-hero {
    background: linear-gradient(rgba(139, 0, 0, 0.9), rgba(102, 0, 0, 0.9)), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.allergy-hero h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.allergy-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.allergy-warning-banner {
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.allergy-warning-banner i {
    font-size: 1.5rem;
}

.allergy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.allergy-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #8B0000;
}

.allergy-card.warning {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.allergy-card.legal {
    border-left-color: #6c757d;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.allergy-card.emergency {
    border-left-color: #fd7e14;
    background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
}

.allergy-card.acknowledgment {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
}

.allergy-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #8B0000;
    font-family: 'Pacifico', cursive;
}

.allergy-card.warning h2 {
    color: #dc3545;
}

.allergy-card.legal h2 {
    color: #6c757d;
}

.allergy-card.emergency h2 {
    color: #fd7e14;
}

.allergy-card.acknowledgment h2 {
    color: #28a745;
}

/* Allergen Grid */
.allergen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.allergen-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.allergen-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.allergen-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.allergen-icon.dairy {
    background: #8B0000;
}

.allergen-icon.nuts {
    background: #fd7e14;
}

.allergen-icon.eggs {
    background: #ffc107;
}

.allergen-icon.wheat {
    background: #6f42c1;
}

.allergen-icon.soy {
    background: #28a745;
}

.allergen-icon.fish {
    background: #17a2b8;
}

.allergen-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.allergen-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Warning Content */
.warning-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-text h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #8B0000;
}

.warning-text p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.warning-text ul {
    color: #333;
    line-height: 1.6;
    margin-left: 1.5rem;
}

.warning-text li {
    margin-bottom: 0.5rem;
}

/* Legal Content */
.legal-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.disclaimer-section {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #6c757d;
}

.disclaimer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #8B0000;
}

.disclaimer-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-section ul {
    color: #333;
    line-height: 1.6;
    margin-left: 1.5rem;
}

.disclaimer-section li {
    margin-bottom: 0.5rem;
}

/* Allergen Table */
.allergen-table-container {
    overflow-x: auto;
}

.allergen-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.allergen-table th {
    background: #8B0000;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    border: 1px solid #660000;
}

.allergen-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #e9ecef;
    font-weight: 600;
}

.allergen-table td:first-child {
    text-align: left;
    font-weight: 600;
    background: #f8f9fa;
}

.contains {
    color: #dc3545;
    background: #f8d7da;
}

.may-contain {
    color: #856404;
    background: #fff3cd;
}

.free {
    color: #155724;
    background: #d4edda;
}

.table-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

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

.legend-symbol {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.legend-symbol.contains {
    background: #dc3545;
    color: white;
}

.legend-symbol.may-contain {
    background: #ffc107;
    color: #333;
}

.legend-symbol.free {
    background: #28a745;
    color: white;
}

/* Emergency Content */
.emergency-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.emergency-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #8B0000;
}

.emergency-info ol {
    color: #333;
    line-height: 1.6;
    margin-left: 1.5rem;
}

.emergency-info li {
    margin-bottom: 0.75rem;
}

.emergency-contacts {
    background: #fff8f0;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #fd7e14;
}

.emergency-contacts h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #8B0000;
}

.emergency-contacts p {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Acknowledgment */
.acknowledgment-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 600;
}

.acknowledgment-content ul {
    color: #333;
    line-height: 1.6;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

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

.acknowledgment-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f0fff4;
    border-radius: 10px;
    border: 2px solid #28a745;
}

.acknowledgment-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.acknowledgment-checkbox label {
    color: #333;
    line-height: 1.4;
    font-weight: 600;
}

/* Allergy Disclaimer Banner */
.allergy-disclaimer-banner {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 0.3rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    border-bottom: 1px solid #bd2130;
    position: relative;
    z-index: 100;
    line-height: 1.3;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.allergy-disclaimer-banner i {
    margin-right: 0.3rem;
    font-size: 0.8rem;
}

.allergy-disclaimer-banner a {
    color: white;
    text-decoration: underline;
    margin-left: 0.4rem;
    font-weight: 500;
    font-size: 0.7rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .allergy-hero h1 {
        font-size: 2rem;
    }
    
    .allergy-disclaimer-banner {
        padding: 0.25rem 1rem;
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .allergy-disclaimer-banner i {
        font-size: 0.75rem;
        margin-right: 0.25rem;
    }
    
    .allergy-disclaimer-banner a {
        font-size: 0.65rem;
        margin-left: 0.25rem;
        display: inline-block;
        margin-top: 0.1rem;
    }
    
    .allergen-grid {
        grid-template-columns: 1fr;
    }
    
    .warning-content {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-content {
        grid-template-columns: 1fr;
    }
    
    .table-legend {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .acknowledgment-checkbox {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .allergy-card {
        padding: 1.5rem;
    }
    
    .allergen-table {
        font-size: 0.8rem;
    }
    
    .allergen-table th,
    .allergen-table td {
        padding: 0.5rem;
    }
}

/* Quick Links Section Styles */
.quick-link-card:hover {
    transform: translateY(-5px);
    border-color: #8B0000 !important;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.2) !important;
}

.quick-link-card:hover span {
    background: linear-gradient(135deg, #660000, #8B0000) !important;
    transform: scale(1.05);
}

.quick-link-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.quick-link-card i {
    transition: transform 0.3s ease;
}

.quick-link-card span {
    transition: all 0.3s ease;
}

/* Responsive adjustments for quick links */
@media (max-width: 768px) {
    .quick-links-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .quick-link-card {
        padding: 1rem !important;
    }
    
    .quick-link-card h4 {
        font-size: 1.1rem !important;
    }
    
    .quick-link-card p {
        font-size: 0.85rem !important;
    }
}

/* Additional Testimonials Page Enhancements */
.testimonials-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.testimonials-hero h1 {
    position: relative;
    z-index: 2;
}

.testimonials-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Featured Review in Hero */
.featured-review {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Additional Featured Reviews Container */
.additional-featured-reviews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Secondary Featured Reviews */
.featured-review.secondary {
    max-width: none;
    margin: 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 15px;
}

.featured-review.secondary .review-stars {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.featured-review.secondary .review-quote {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.featured-review.secondary .review-quote::before,
.featured-review.secondary .review-quote::after {
    font-size: 2.5rem;
}

.featured-review.secondary .review-author {
    font-size: 0.9rem;
}

.review-stars {
    font-size: 2rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.review-quote {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    text-align: center;
    position: relative;
}

.review-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.review-quote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    font-family: serif;
}

.review-author {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.review-author strong {
    color: white;
    font-weight: 600;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
    margin-top: 0.5rem;
}

.rating-summary .stars {
    font-size: 2rem;
    color: #FFD700;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.review-count {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.review-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #8B0000;
    background: white;
    color: #8B0000;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8B0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.reviewer-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-title {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.favorite-flavor {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

#loadMoreBtn {
    background: linear-gradient(135deg, #4285f4, #34a853) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3) !important;
}

#loadMoreBtn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4) !important;
    background: linear-gradient(135deg, #3367d6, #2d8f47) !important;
}

#loadMoreBtn:active {
    transform: translateY(0) !important;
}

#loadMoreBtn i {
    color: #FFD700 !important;
    font-size: 1.2rem !important;
}

/* Submit Review Section */
.submit-review-section {
    padding: 4rem 0;
    background: white;
}

.submit-review-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    font-size: 2.5rem;
}

.submit-review-section > .container > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #8B0000;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input[type="radio"]:checked ~ label {
    color: #FFD700;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}


/* Responsive Design for Testimonials - Compact */
@media (max-width: 768px) {
    .featured-review {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .additional-featured-reviews {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .featured-review.secondary {
        padding: 1.25rem;
    }
    
    .review-stars {
        font-size: 1.8rem;
    }
    
    .review-quote {
        font-size: 1.1rem;
    }
    
    .review-quote::before,
    .review-quote::after {
        font-size: 3rem;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .review-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .submit-review-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .review-form {
        padding: 1.5rem;
    }
    
}

@media (max-width: 480px) {
    .testimonials-hero {
        padding: 2rem 1rem 1rem;
    }
    
    .featured-review {
        padding: 1rem;
        margin-top: 0.75rem;
    }
    
    .additional-featured-reviews {
        margin-top: 1rem;
        gap: 0.75rem;
    }
    
    .featured-review.secondary {
        padding: 1rem;
    }
    
    .review-stars {
        font-size: 1.6rem;
    }
    
    .review-quote {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .review-quote::before,
    .review-quote::after {
        font-size: 2.5rem;
    }
    
    .review-author {
        font-size: 0.9rem;
    }
    
    .rating-summary .stars {
        font-size: 1.5rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .review-form {
        padding: 1rem;
    }
}

/* External Reviews Section */
.external-reviews-section {
    background: linear-gradient(135deg, #8B0000, #660000);
    color: white;
    padding: 4rem 0;
}

.external-reviews-title {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
}

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

.social-review-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.social-review-card h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.social-review-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.social-review-btn {
    background: white;
    color: #8B0000;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-review-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-reviews-cta {
    text-align: center;
}

.cta-main {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

.cta-sub {
    opacity: 0.8;
    line-height: 1.5;
}

/* Mobile Responsive for External Reviews */
@media (max-width: 768px) {
    .external-reviews-section {
        padding: 3rem 0;
    }
    
    .external-reviews-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .social-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .social-review-card {
        padding: 1.5rem;
    }
    
    .social-icon {
        font-size: 2.5rem;
    }
    
    .social-review-card h3 {
        font-size: 1.3rem;
    }
    
    .social-review-btn {
        padding: 15px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-main {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .external-reviews-section {
        padding: 2rem 0;
    }
    
    .external-reviews-title {
        font-size: 1.8rem;
    }
    
    .social-review-card {
        padding: 1.25rem;
    }
    
    .social-icon {
        font-size: 2rem;
    }
    
    .social-review-card h3 {
        font-size: 1.2rem;
    }
    
    .social-review-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
  .hero-mascot img { height: 70px; }
}

/* Mobile Dropdown Styles */
.dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f8f8f8;
    margin: 0.5rem 0;
    border-radius: 5px;
    padding: 0;
}

.dropdown-menu .nav-link {
    padding: 0.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
}

.dropdown-menu .nav-link:hover {
    background: #e8e8e8;
    color: #8B0000;
    padding-left: 2.5rem;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.hamburger {
    /* Keep flex-direction and cursor, but do not override display here to avoid hiding it on mobile */
    flex-direction: column;
    cursor: pointer;
}

/* Icon Fallbacks and Error Handling */
.icon-fallback {
    position: relative;
}

.icon-fallback::before {
    content: "📋";
    font-style: normal;
    font-weight: normal;
}

/* Specific icon fallbacks */
.fas.fa-camera::before,
.fas.fa-camera-alt::before {
    content: "📷" !important;
}

.fas.fa-upload::before,
.fas.fa-cloud-upload-alt::before {
    content: "📤" !important;
}

.fas.fa-eye::before {
    content: "👁️" !important;
}

.fas.fa-sync::before,
.fas.fa-sync-alt::before {
    content: "🔄" !important;
}

.fas.fa-copy::before {
    content: "📋" !important;
}

.fas.fa-chevron-down::before {
    content: "▼" !important;
}

.fas.fa-chevron-up::before {
    content: "▲" !important;
}

.fas.fa-ice-cream::before {
    content: "🍦" !important;
}

.fas.fa-heart::before {
    content: "❤️" !important;
}

.fas.fa-home::before {
    content: "🏠" !important;
}

.fas.fa-female::before {
    content: "👩" !important;
}

.fas.fa-star::before {
    content: "⭐" !important;
}

.fas.fa-phone::before {
    content: "📞" !important;
}

.fas.fa-envelope::before {
    content: "✉️" !important;
}

.fas.fa-clock::before {
    content: "🕐" !important;
}

.fas.fa-users::before {
    content: "👥" !important;
}

.fas.fa-birthday-cake::before {
    content: "🎂" !important;
}

.fas.fa-graduation-cap::before {
    content: "🎓" !important;
}

.fas.fa-briefcase::before {
    content: "💼" !important;
}

.fas.fa-calendar-alt::before {
    content: "📅" !important;
}

.fas.fa-exclamation-triangle::before {
    content: "⚠️" !important;
}

.fas.fa-info-circle::before {
    content: "ℹ️" !important;
}

.fas.fa-check::before {
    content: "✅" !important;
}

.fas.fa-times::before {
    content: "❌" !important;
}

.fas.fa-shopping-cart::before {
    content: "🛒" !important;
}

.fas.fa-credit-card::before {
    content: "💳" !important;
}

.fas.fa-money-bill-wave::before {
    content: "💵" !important;
}

.fas.fa-print::before {
    content: "🖨️" !important;
}

.fas.fa-paper-plane::before {
    content: "📤" !important;
}

.fas.fa-user::before {
    content: "👤" !important;
}

.fas.fa-quote-left::before {
    content: "💬" !important;
}

/* Social media icon fallbacks */
.fab.fa-facebook::before,
.fab.fa-facebook-f::before {
    content: "📘" !important;
}

.fab.fa-instagram::before {
    content: "📷" !important;
}

.fab.fa-tiktok::before {
    content: "🎵" !important;
}

.fab.fa-cc-paypal::before {
    content: "💳" !important;
}

/* Business/Feature icon fallbacks */
.fas.fa-medal::before {
    content: "🏅" !important;
}

.fas.fa-truck::before {
    content: "🚚" !important;
}

.fas.fa-palette::before {
    content: "🎨" !important;
}

.fas.fa-dollar-sign::before {
    content: "💰" !important;
}

.fas.fa-handshake::before {
    content: "🤝" !important;
}

.fas.fa-utensils::before {
    content: "🍽️" !important;
}

.fas.fa-coffee::before {
    content: "☕" !important;
}

.fas.fa-store::before {
    content: "🏪" !important;
}

.fas.fa-hotel::before {
    content: "🏨" !important;
}

.fas.fa-mobile-alt::before {
    content: "📱" !important;
}

/* Additional icon fallbacks for missing icons */
.fas.fa-mountain::before {
    content: "🏔️" !important;
}

.fas.fa-trophy::before {
    content: "🏆" !important;
}

.fas.fa-hiking::before {
    content: "🥾" !important;
}

.fas.fa-road::before {
    content: "🛣️" !important;
}

.fas.fa-film::before {
    content: "🎬" !important;
}

.fas.fa-map-marker-alt::before {
    content: "📍" !important;
}

.fas.fa-spinner::before {
    content: "⏳" !important;
}

.fas.fa-minus::before {
    content: "➖" !important;
}

.fas.fa-plus::before {
    content: "➕" !important;
}

.fas.fa-trash::before {
    content: "🗑️" !important;
}

.fas.fa-image::before {
    content: "🖼️" !important;
}

.fas.fa-check-circle::before {
    content: "✅" !important;
}

.fas.fa-exclamation-circle::before {
    content: "⚠️" !important;
}

.fas.fa-smile::before {
    content: "😊" !important;
}

.fas.fa-folder-open::before {
    content: "📁" !important;
}

.fas.fa-images::before {
    content: "🖼️" !important;
}

/* Additional missing icon fallbacks */
.fas.fa-eye-slash::before {
    content: "🙈" !important;
}

.fas.fa-arrow-left::before {
    content: "⬅️" !important;
}

.fas.fa-arrow-up::before {
    content: "⬆️" !important;
}

.fas.fa-arrow-down::before {
    content: "⬇️" !important;
}

.fas.fa-shield-alt::before {
    content: "🛡️" !important;
}

.fas.fa-sync-alt::before {
    content: "🔄" !important;
}

.fas.fa-spinner::before {
    content: "⏳" !important;
}

.fas.fa-spinner.fa-spin::before {
    content: "🔄" !important;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Additional missing icon fallbacks */
.fas.fa-crown::before {
    content: "👑" !important;
}

.fas.fa-code::before {
    content: "💻" !important;
}

.fas.fa-cloud-upload-alt::before {
    content: "☁️" !important;
}

.fas.fa-user-circle::before {
    content: "👤" !important;
}

/* Additional admin panel icon fallbacks */
.fas.fa-sign-out-alt::before {
    content: "🚪" !important;
}

.fas.fa-edit::before {
    content: "✏️" !important;
}

.fas.fa-save::before {
    content: "💾" !important;
}

.fas.fa-percentage::before {
    content: "%" !important;
}

.fas.fa-download::before {
    content: "⬇️" !important;
}

.fas.fa-cog::before {
    content: "⚙️" !important;
}

/* Consistent styling for common icons */
.upload-overlay i,
.menu-item-photo i,
.feature-photo i {
    font-size: 1.5rem;
    color: #8B0000;
    transition: all 0.3s ease;
}

.upload-overlay:hover i,
.menu-item-photo:hover i,
.feature-photo:hover i {
    transform: scale(1.1);
    color: #660000;
}

/* Social media icons consistency */
.social-links i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    line-height: 1;
}

.social-links a:hover i {
    transform: scale(1.1);
}

/* Ensure all social icons are properly aligned */
.social-links .fab {
    display: inline-block;
    vertical-align: middle;
}

/* Navigation icons consistency */
.nav-link i,
.dropdown-toggle i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Icon error detection and fallback */
@supports not (content: "test") {
    .fas::before,
    .fab::before {
        display: none;
    }
    
    .fas::after,
    .fab::after {
        content: "●";
        color: #8B0000;
        font-weight: bold;
    }
}

/* Ensure icons are visible even if Font Awesome fails to load */
.fas,
.fab,
.far {
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Consistent icon sizing and spacing */
.fas,
.fab,
.far {
    display: inline-block;
    vertical-align: middle;
}

/* Icon size utilities */
.icon-sm {
    font-size: 0.875rem;
}

.icon-md {
    font-size: 1rem;
}

.icon-lg {
    font-size: 1.25rem;
}

.icon-xl {
    font-size: 1.5rem;
}

.icon-2xl {
    font-size: 2rem;
}

.icon-3xl {
    font-size: 3rem;
}

/* Icon color utilities */
.icon-primary {
    color: #8B0000;
}

.icon-secondary {
    color: #666;
}

.icon-white {
    color: white;
}

.icon-success {
    color: #28a745;
}

.icon-warning {
    color: #ffc107;
}

.icon-danger {
    color: #dc3545;
}

.icon-info {
    color: #17a2b8;
}
.fab {
    display: inline-block;
    width: 1em;
    text-align: center;
}

/* Icon loading state */
.icon-loading {
    opacity: 0.5;
    animation: icon-pulse 1.5s infinite;
}

@keyframes icon-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes icon-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Image Placeholder Styles */
.image-placeholder {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.image-placeholder > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border: 2px dashed #8B0000;
    color: #8B0000;
    font-weight: 600;
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.image-placeholder:hover > div {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-color: #660000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.1);
}

.image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.image-placeholder:hover i {
    opacity: 0.8;
}

.image-placeholder .placeholder-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.image-placeholder .placeholder-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.25rem;
    font-style: italic;
}

/* Responsive adjustments for image placeholders */
@media (max-width: 768px) {
    .image-placeholder > div {
        min-height: 150px;
        padding: 1rem;
    }
    
    .image-placeholder i {
        font-size: 1.5rem;
    }
    
    .image-placeholder .placeholder-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .image-placeholder > div {
        min-height: 120px;
        padding: 0.75rem;
    }
    
    .image-placeholder i {
        font-size: 1.25rem;
    }
    
    .image-placeholder .placeholder-title {
        font-size: 0.9rem;
    }
    
    .image-placeholder .placeholder-subtitle {
        font-size: 0.75rem;
    }
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000, #660000);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-action-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

.floating-action-btn:active {
    transform: translateY(-1px) scale(1.05);
}

.floating-action-btn i {
    transition: transform 0.3s ease;
}

.floating-action-btn:hover i {
    transform: scale(1.2);
}

.floating-action-btn .btn-label {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-action-btn .btn-label::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid rgba(0, 0, 0, 0.9);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.floating-action-btn:hover .btn-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-action-btn.contact-btn {
    background: linear-gradient(135deg, #0066cc, #004499);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.floating-action-btn.contact-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.floating-action-btn.order-btn {
    background: linear-gradient(135deg, #8B0000, #660000);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.floating-action-btn.order-btn:hover {
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

/* Pulse animation for attention */
@keyframes pulse-attention {
    0% {
        box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 15px rgba(139, 0, 0, 0.6), 0 0 0 10px rgba(139, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    }
}

.floating-action-btn.pulse {
    animation: pulse-attention 2s infinite;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .floating-action-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .floating-action-btn .btn-label {
        right: 60px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .floating-actions {
        bottom: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .floating-action-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .floating-action-btn .btn-label {
        right: 55px;
        font-size: 0.75rem;
        padding: 5px 8px;
    }
}

/* Enhanced Mobile Optimization */
/* Touch Interactions */
.btn, .nav-link, .feature-card, .menu-category, .guide-category, .order-option {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Touch feedback for interactive elements */
.btn:active, .nav-link:active, .feature-card:active, 
.menu-category:active, .guide-category:active, .order-option:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: rgba(139, 0, 0, 0.98);
        touch-action: pan-y;
        overscroll-behavior: contain;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        color: white;
        padding: 0.75rem 1rem;
        border-radius: 5px;
        transition: all 0.3s ease;
        text-decoration: none;
        font-weight: 500;
        display: block;
    }
    
    .nav-link:hover {
        background: rgba(255,255,255,0.1);
        color: #FFB6C1;
    }
    
    /* Enhanced mobile accessibility */
    .btn, .nav-link, .feature-card {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better focus indicators for mobile */
    .btn:focus, .nav-link:focus {
        outline: 2px solid #8B0000;
        outline-offset: 2px;
        border-radius: 4px;
    }
    
    /* High contrast mode support */
    @media (prefers-contrast: high) {
        .btn {
            border: 2px solid currentColor;
        }
    }
    
    /* Optimized animations for mobile */
    .feature-card {
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    /* Reduce motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Mobile-specific performance optimizations */
@media (max-width: 768px) {
    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Improve text readability on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Better spacing for mobile */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Optimize hero section for mobile */
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve button sizing for touch */
    .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        line-height: 1.5;
        border-radius: 8px;
        font-weight: 600;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better form elements for mobile */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 18px 15px;
        border-radius: 12px;
        border: 2px solid #e0e0e0;
        width: 100%;
        box-sizing: border-box;
        transition: all 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
        background: white;
        min-height: 48px;
        line-height: 1.4;
    }
    
    input:focus, textarea:focus, select:focus {
        border-color: #8B0000;
        outline: none;
        box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
        transform: translateY(-1px);
    }

    /* Better button styling for mobile */
    .btn {
        min-height: 48px;
        padding: 15px 25px;
        font-size: 16px;
        border-radius: 12px;
        touch-action: manipulation;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 600;
        border: none;
        cursor: pointer;
    }

    .btn:active {
        transform: translateY(1px);
    }

    /* Form groups spacing */
    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
        font-size: 1rem;
    }
}

/* Enhanced mobile animations */
@media (max-width: 768px) {
    /* Smooth page transitions */
    .page-transition {
        transition: opacity 0.3s ease;
    }
    
    /* Optimized hover effects for touch */
    .feature-card:hover,
    .menu-category:hover,
    .guide-category:hover,
    .order-option:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    /* Better loading states */
    .loading {
        opacity: 0.7;
        pointer-events: none;
    }
    
    /* Smooth animations for mobile */
    .feature-card,
    .menu-category,
    .guide-category,
    .order-option {
        transition: all 0.3s ease;
    }
    
    /* Icon animations */
    .feature-card i,
    .guide-category i,
    .order-option i {
        transition: transform 0.3s ease, color 0.3s ease;
    }
    
    .feature-card:hover i,
    .guide-category:hover i,
    .order-option:hover i {
        transform: scale(1.1);
        color: #8B0000;
    }
}

/* Mobile-specific accessibility improvements */
@media (max-width: 768px) {
    /* Larger touch targets */
    .social-links {
        gap: 1rem;
        justify-content: center;
    }
    
    .social-links a {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background: #660000;
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
    
    /* Better focus management */
    .nav-link:focus,
    .btn:focus,
    .feature-card:focus,
    .menu-category:focus,
    .guide-category:focus,
    .order-option:focus {
        outline: 2px solid #8B0000;
        outline-offset: 2px;
        border-radius: 4px;
    }
    
    /* Improved color contrast for mobile */
    .hero-description {
        background: rgba(255, 255, 255, 0.95);
        color: #333;
        text-shadow: none;
        padding: 2rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    /* Better text contrast */
    .feature-card p,
    .menu-category li,
    .guide-category p,
    .order-option p {
        color: #333;
        font-weight: 500;
        line-height: 1.6;
    }
    
    /* Enhanced button contrast */
    .btn {
        color: white;
        background: linear-gradient(135deg, #8B0000, #A52A2A);
        border: none;
        box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    }
    
    .btn:hover {
        background: linear-gradient(135deg, #A52A2A, #8B0000);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
    }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    /* Optimize CSS animations */
    .feature-card,
    .menu-category,
    .guide-category,
    .order-option {
        will-change: transform, opacity;
    }
    
    /* Reduce layout shifts */
    .hero-title,
    .hero-subtitle,
    .hero-description {
        min-height: 1.2em;
    }
    
    /* Optimize images */
    .hero-photo img,
    .feature-photo img {
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
    }
    
    /* Better card layouts */
    .feature-card,
    .menu-category,
    .guide-category,
    .order-option {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Consistent spacing */
    .features,
    .menu-preview,
    .about-preview,
    .local-guide-preview,
    .order-section {
        padding: 4rem 0;
    }
    
    /* Better grid spacing */
    .features-grid,
    .menu-grid,
    .guide-categories,
    .order-options {
        gap: 2rem;
        margin: 2rem 0;
    }
}

/* Mobile-specific enhancements for small screens */
@media (max-width: 480px) {
    /* Further optimize for very small screens */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }
    
    /* Better button layout for small screens */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    /* Optimize grid layouts */
    .features-grid,
    .menu-grid,
    .guide-categories,
    .order-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Better spacing for mobile */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile About Section Enhancements */
    .about-section .section-title {
        font-size: clamp(2.5rem, 8vw, 4rem) !important;
        margin-bottom: 2.5rem !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .about-text {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
        padding: 0;
    }
    
    .feature-item {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    /* Optimize card sizing for small screens */
    .feature-card,
    .menu-category,
    .guide-category,
    .order-option {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .feature-card i,
    .guide-category i,
    .order-option i {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card h3,
    .menu-category h3,
    .guide-category h3,
    .order-option h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card p,
    .guide-category p,
    .order-option p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Better container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Optimize section padding */
    .features,
    .menu-preview,
    .about-preview,
    .local-guide-preview,
    .order-section {
        padding: 2rem 0;
    }
}

/* Mobile-specific PWA enhancements */
@media (max-width: 768px) {
    /* Better PWA experience */
    .pwa-install-prompt {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(139, 0, 0, 0.95);
        color: white;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }
    
    /* Mobile-specific floating actions */
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-action-btn {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
}

/* Mobile-specific performance monitoring */
@media (max-width: 768px) {
    /* Optimize for mobile networks */
    .lazy-load {
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .lazy-load.loaded {
        opacity: 1;
    }
    
    /* Better error handling for mobile */
    .error-message {
        background: rgba(220, 53, 69, 0.1);
        border: 1px solid #dc3545;
        color: #dc3545;
        padding: 1rem;
        border-radius: 8px;
        margin: 1rem 0;
    }
    
    /* Loading states for mobile */
    .loading-spinner {
        width: 40px;
        height: 40px;
        border: 3px solid #f3f3f3;
        border-top: 3px solid #8B0000;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mimi's Favorites - Gold Highlighting */
.mimis-favorite {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    border: 3px solid #FF8C00 !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.mimis-favorite::before {
    content: "⭐ Mimi's Favorite ⭐";
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #FFD700;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 10;
}

.mimis-favorite h3 {
    color: #8B0000 !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.mimis-favorite .description {
    color: #333 !important;
    font-weight: 500;
}

.mimis-favorite .location,
.mimis-favorite .distance {
    color: #8B0000 !important;
    font-weight: 600;
}

.mimis-favorite .rating {
    background: rgba(139, 0, 0, 0.1);
    color: #8B0000 !important;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 10px;
    display: inline-block;
    margin: 5px 0;
}

.mimis-favorite .seasonal-note {
    background: rgba(255, 215, 0, 0.2);
    color: #8B0000 !important;
    font-weight: 600;
    border: 1px solid #FF8C00;
}

.mimis-favorite .route-map {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #FF8C00;
}

.mimis-favorite .trail-info {
    background: rgba(255, 215, 0, 0.1);
}

.mimis-favorite .info-item {
    color: #8B0000 !important;
    font-weight: 500;
}

/* Mobile-specific SEO optimizations */
@media (max-width: 768px) {
    /* Ensure proper heading hierarchy on mobile */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    /* Better link accessibility */
    a {
        color: #8B0000;
        text-decoration: none;
    }
    
    a:hover {
        text-decoration: underline;
    }
    
    /* Improve form accessibility */
    label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }
    
    /* Better mobile navigation */
    .nav-menu.active {
        transform: translateX(0);
        transition: transform 0.3s ease;
    }
}

/* Mobile-specific content optimization */
@media (max-width: 768px) {
    /* Optimize text content for mobile reading */
    p {
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    /* Better list formatting - exclude navigation menu */
    ul:not(.nav-menu), ol {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }
    
    li {
        margin-bottom: 0.5rem;
    }
    
    /* Optimize tables for mobile */
    table {
        font-size: 0.9rem;
        overflow-x: auto;
        display: block;
    }
    
    /* Better mobile forms */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Mobile-specific interaction improvements */
@media (max-width: 768px) {
    /* Better scroll behavior */
    html {
        scroll-behavior: smooth;
    }
    
    /* Optimize for mobile gestures */
    .swipeable {
        touch-action: pan-y;
        overscroll-behavior: contain;
    }
    
    /* Better mobile modals */
    .modal {
        padding: 1rem;
        border-radius: 12px;
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    /* Mobile-specific tooltips */
    .tooltip {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.8);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        z-index: 1000;
    }
}

/* Mobile-specific performance enhancements */
@media (max-width: 768px) {
    /* Optimize CSS for mobile rendering */
    * {
        box-sizing: border-box;
    }
    
    /* Better mobile typography */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Optimize mobile images */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Better mobile spacing */
    .section {
        padding: 2rem 0;
    }
    
    /* Optimize mobile buttons */
    .btn {
        border-radius: 8px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }
    
    /* Mobile-specific shadows */
    .feature-card,
    .menu-category,
    .guide-category {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
}

/* Mobile-specific accessibility compliance */
@media (max-width: 768px) {
    /* Ensure proper color contrast */
    .text-muted {
        color: #6c757d !important;
    }
    
    /* Better focus indicators */
    .btn:focus,
    .nav-link:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid #8B0000;
        outline-offset: 2px;
    }
    
    /* Improve screen reader support */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    
    /* Better mobile navigation for screen readers - roles handled in HTML */
}

/* Mobile-specific Core Web Vitals optimization */
@media (max-width: 768px) {
    /* Optimize for Largest Contentful Paint */
    .hero-title {
        font-display: swap;
    }
    
    /* Optimize for First Input Delay */
    .btn,
    .nav-link,
    .feature-card {
        pointer-events: auto;
        touch-action: manipulation;
    }

    /* Better mobile scrolling */
    html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Prevent mobile zoom on double tap */
    * {
        touch-action: manipulation;
    }

    /* Better touch targets - WCAG AA compliant */
    .nav-link,
    .btn,
    button,
    a,
    input,
    textarea,
    select {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 16px;
    }
    
    /* Ensure proper spacing between touch targets */
    .nav-link + .nav-link,
    .btn + .btn {
        margin-left: 8px;
    }
    
    /* Prevent accidental taps on closely spaced elements */
    .nav-menu li {
        margin: 0 4px;
    }
    
    /* Ensure adequate spacing in button groups */
    .hero-buttons .btn + .btn {
        margin-left: 12px;
    }
    
    /* Better spacing for form elements */
    .form-group {
        margin-bottom: 20px;
    }
    
    /* Ensure proper spacing in card layouts */
    .feature-card,
    .menu-category,
    .guide-category,
    .order-option {
        margin-bottom: 16px;
    }
    
    /* Special handling for small interactive elements */
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        padding: 12px;
    }
    
    /* Dropdown menu items */
    .dropdown-menu .nav-link {
        min-height: 44px;
        padding: 12px 16px;
    }

    /* Improve mobile tap highlighting */
    a, button, .btn {
        -webkit-tap-highlight-color: rgba(139, 0, 0, 0.2);
        -webkit-user-select: none;
        user-select: none;
    }

    /* Better mobile focus states */
    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid #8B0000;
        outline-offset: 2px;
    }

    /* Prevent layout shifts on mobile */
    img, video {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Better mobile animation performance */
    .feature-card,
    .btn,
    .nav-link {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    /* Optimize text rendering on mobile */
    body {
        text-rendering: optimizeSpeed;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}
    
    /* Optimize for Cumulative Layout Shift */
    .hero-image,
    .feature-photo {
        aspect-ratio: 16/9;
        background: #f8f9fa;
    }
    
    /* Prevent layout shifts */
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        /* Mobile-specific user experience improvements */
        /* Better mobile feedback */
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Improved mobile scrolling */
    .scroll-container {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Better mobile loading states */
    .loading {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 200px;
    }
    
    /* Mobile-specific error handling */
    .error-container {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .error-container h2 {
        color: #dc3545;
        margin-bottom: 1rem;
    }
    
    .error-container p {
        color: #6c757d;
        margin-bottom: 1.5rem;
    }
    
    /* Better mobile success states */
    .success-message {
        background: rgba(40, 167, 69, 0.1);
        border: 1px solid #28a745;
        color: #28a745;
        padding: 1rem;
        border-radius: 8px;
        margin: 1rem 0;
    }
}

/* Mobile-specific performance monitoring and optimization */
@media (max-width: 768px) {
    /* Optimize for mobile networks */
    .network-slow {
        opacity: 0.8;
    }
    
    /* Better mobile caching */
    .cached-content {
        opacity: 0.9;
    }
    
    /* Mobile-specific error boundaries */
    .error-boundary {
        padding: 1rem;
        text-align: center;
        background: #f8f9fa;
        border-radius: 8px;
        margin: 1rem 0;
    }
    
    /* Better mobile debugging */
    .debug-info {
        font-size: 0.8rem;
        color: #6c757d;
        padding: 0.5rem;
        background: #f8f9fa;
        border-radius: 4px;
        margin: 0.5rem 0;
    }
}

/* Mobile-specific SEO and accessibility final touches */
@media (max-width: 768px) {
    /* Ensure proper semantic structure */
    main {
        min-height: 100vh;
    }
    
    /* Better mobile headings */
    h1 {
        font-size: 1.6rem;
        font-weight: 700;
    }

    h2 {
        font-size: 1.3rem;
        font-weight: 600;
    }
    
    h3 {
        font-size: 1.3rem;
        font-weight: 600;
    }
    
    /* Optimize mobile links */
    a[href^="tel:"] {
        color: #8B0000;
        text-decoration: none;
    }
    
    a[href^="mailto:"] {
        color: #8B0000;
        text-decoration: none;
    }
    
    /* Better mobile contact information */
    .contact-info {
        text-align: center;
        margin: 1rem 0;
    }
    
    .contact-info a {
        display: block;
        padding: 0.5rem;
        margin: 0.25rem 0;
        background: rgba(139, 0, 0, 0.1);
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .contact-info a:hover {
        background: rgba(139, 0, 0, 0.2);
    }
}

/* Final mobile optimization touches */
@media (max-width: 768px) {
    /* Ensure smooth mobile experience */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Optimize mobile performance */
    .performance-optimized {
        will-change: auto;
    }
    
    /* Better mobile accessibility */
    .accessibility-enhanced {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile-specific user experience */
    .mobile-optimized {
        touch-action: manipulation;
    }
}

/* Extra small mobile devices - Logo optimization */
@media (max-width: 480px) {
    .logo-img {
        height: 32px !important;
    }
    
    .logo-text {
        font-size: 1rem !important;
    }
    
    .nav-logo {
        gap: 0.3rem !important;
    }
}

/* Consistent Hero Section Mobile Styles */
@media (max-width: 768px) {
    .menu-hero, .about-hero, .parties-hero, .wholesale-hero, .guide-hero, .order-hero {
        padding: 70px 0 20px !important;
        min-height: 160px !important;
    }
    
    .menu-hero h1, .about-hero h1, .parties-hero h1, .wholesale-hero h1, .guide-hero h1, .order-hero h1 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    .menu-hero, .about-hero, .parties-hero, .wholesale-hero, .guide-hero, .order-hero {
        padding: 60px 0 15px !important;
        min-height: 140px !important;
    }
    
    .menu-hero h1, .about-hero h1, .parties-hero h1, .wholesale-hero h1, .guide-hero h1, .order-hero h1 {
        font-size: 1.6rem !important;
    }
}