/* Template restaurant3 Styles */
:root {
            --res3-primary: #EE5A3E; /* Original Coral */
            --res3-secondary: #0C1327;
            --res3-accent: #F9F4F0;
            --res3-text: #4A4A4A;
            --res3-heading: 'Raleway', sans-serif;
            --res3-body: 'Montserrat', sans-serif;
        }

        body {
            font-family: var(--res3-body);
            color: var(--res3-text);
            background-color: var(--res3-accent);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6, .display-serif {
            font-family: var(--res3-heading);
            color: var(--res3-secondary);
            font-weight: 400;
        }

        .text-coral { color: var(--res3-primary); }
        .bg-navy { background-color: var(--res3-secondary); }
        .bg-cream { background-color: var(--res3-accent); }

        .btn-res3 {
            background-color: var(--res3-primary);
            color: white;
            padding: 12px 30px;
            border-radius: 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--res3-primary);
        }

        .btn-res3:hover {
            background-color: transparent;
            color: var(--res3-primary);
        }

        .btn-res3-outline {
            background-color: transparent;
            color: var(--res3-secondary);
            border: 2px solid var(--res3-secondary);
            padding: 12px 30px;
            border-radius: 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-res3-outline:hover {
            background-color: var(--res3-secondary);
            color: white;
        }

        .section-padding { padding: 100px 0; }
        
        .section-subtitle {
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--res3-primary);
            font-weight: 600;
            display: block;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 3.5rem;
            margin-bottom: 30px;
        }

        /* Mobile Fixes */
        @media (max-width: 991.98px) {
            .section-title { font-size: 2.5rem; }
            .display-1 { font-size: 3.5rem; }
            .section-padding { padding: 60px 0; }
            
            .navbar-res3 {
                background: var(--res3-secondary);
                padding: 15px 0;
            }
            .navbar-res3 .nav-link {
                margin: 10px 0;
                text-align: center;
            }
            
            .hero-res3 {
                text-align: center;
            }
            .hero-res3 .d-flex {
                justify-content: center;
            }
        }

        /* Navbar Custom */
        .navbar-res3 {
            padding: 20px 0;
            transition: all 0.3s ease;
            position: absolute;
            width: 100%;
            z-index: 1000;
        }

        .navbar-res3.scrolled {
            background: white;
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .navbar-res3 .nav-link {
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin: 0 15px;
            background: transparent !important;
        }

        .navbar-res3 .nav-link:hover,
        .navbar-res3 .nav-link.active {
            color: var(--res3-primary) !important;
            background: transparent !important;
        }

        .navbar-res3.scrolled .nav-link {
            color: var(--res3-secondary);
        }
        .navbar-res3.scrolled .nav-link:hover,
        .navbar-res3.scrolled .nav-link.active {
            color: var(--res3-primary) !important;
        }

        /* Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--res3-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

