
        :root {
            --primary-color: #A32D2D; /* A deep red to match "fire" */
            --secondary-color: #D4AF37; /* A golden color */
            --dark-color: #2c2c2c;
            --light-color: #f8f8f8;
            --text-color: #333;
            --doordash-color: #FF3008;
        }

        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--light-color);
            color: var(--text-color);
            scroll-behavior: smooth;
            padding-top: 70px;
        }

        /* General styles */
        .container {
            max-width: 1100px;
            margin: auto;
            overflow: hidden;
            padding: 0 2rem;
        }

        /* Skip-link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--dark-color);
            color: white;
            padding: 8px;
            z-index: 1001;
        }

        .skip-link:focus {
            top: 0;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--dark-color);
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background: #8b2828;
        }

        /* Header */
        #header {
            background: rgba(255, 255, 255, 0.9);
            color: var(--dark-color);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        #header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        #header .logo img {
            height: 100px;
            width: auto;
            display: block;
        }

        @media (max-width: 768px) {
            #header .logo img {
                height: 55px;
            }
        }

        #header nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        #header nav ul li {
            display: inline-block;
            margin-left: 1.5rem;
        }

        #header nav a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        #header nav a:hover {
            color: var(--primary-color);
        }
        
        /* Hamburger menu */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 2rem;
            color: var(--dark-color);
        }

        @media (max-width: 768px) {
            #header nav {
                display: none;
            }
            #header .container {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            #header nav.active {
                display: block;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.9);
                padding: 1rem 0;
                text-align: center;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            }
            #header nav.active ul li {
                display: block;
                margin: 1rem 0;
            }
            .hamburger {
                display: block;
            }
        }

        /* Hero Section */
        #hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Hero_Section_AnatoliaFire_Halal_Food_Truck_Mountain_View.png') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
        }

        #hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        #hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        /* Menu Section */
        #menu {
            padding: 5rem 0;
            background-color: white;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .menu-category {
            text-align: center;
            background: var(--light-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .menu-category h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        /* This style targets the image directly inside the menu category, for the main category images */
        .menu-category > .menu-item-with-image {
            margin-bottom: 2rem;
        }
        
        .menu-category > .menu-item-with-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px dashed #ccc;
            padding: 1rem 0;
        }

        .menu-item:last-child {
            border-bottom: none;
        }
        
        /* This style targets images within specific menu items */
        .menu-category .menu-item-with-image {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 2rem;
        }

        .menu-category .menu-item-with-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }
        
        .item-info {
            flex-grow: 1;
            text-align: left;
        }

        .item-info h4 {
            margin: 0;
            font-size: 1.2rem;
            color: var(--dark-color);
        }

        .item-info p {
            margin: 0.2rem 0 0;
            font-size: 0.9rem;
            color: #666;
        }

        .item-price {
            font-weight: bold;
            font-size: 1.2rem;
            color: var(--primary-color);
            white-space: nowrap;
            margin-left: 1rem;
            text-align: right;
            min-width: 50px;
        }

        /* Contact Section */
        #contact {
            padding: 5rem 0;
        }

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

        .contact-card, .hours-card, .location-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .contact-card h3, .hours-card h3, .location-card h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
        }

        .contact-card p, .location-card p {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .contact-card a {
            color: var(--dark-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--primary-color);
        }

        .hours-card ul {
            list-style: none;
            padding: 0;
        }

        .hours-card li {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .hours-card li:last-child {
            border-bottom: none;
        }

        .social-links {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .social-links a {
            font-size: 1.5rem;
        }
        
        .social-links img {
            height: 30px;
            width: auto;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .social-links img.google-maps-logo {
            height: 45px; /* 50% larger */
        }

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

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: 0;
            border-radius: 10px;
        }

        /* Footer */
        #footer {
            background: var(--dark-color);
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        #footer p {
            margin: 0;
        }

        /* Back to top button */
        #back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: none;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: background-color 0.3s ease;
        }

        #back-to-top:hover {
            background: #8b2828;
        }

        /* Mobile fixed bottom bar */
        #mobile-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            background: white;
            box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
            padding: 8px 0;
            z-index: 999;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s, opacity 0.5s linear;
        }
        
        @media (max-width: 768px) {
            #mobile-cta {
                visibility: visible;
                opacity: 1;
            }
        }
        
        #mobile-cta a {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--dark-color);
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: bold;
            flex: 1;
        }
        
        #mobile-cta img {
            height: 24px;
            margin-bottom: 4px;
        }

        /* DoorDash Button - Header */
        .btn-doordash {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--doordash-color);
            color: white;
            padding: 0.55rem 1.1rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 0.95rem;
            font-family: 'Roboto', sans-serif;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            white-space: nowrap;
        }

        .btn-doordash:hover {
            background: #d92800;
            transform: scale(1.03);
        }

        .btn-doordash svg {
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .btn-doordash {
                display: none;
            }
        }

        /* DoorDash Button - Hero */
        .hero-buttons {
            display: flex;
            flex-direction: row;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-hero {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            white-space: nowrap;
        }

        .btn-hero:hover {
            transform: scale(1.03);
        }

        .btn-hero-menu {
            background: white;
            color: var(--dark-color);
            border: 2px solid white;
        }

        .btn-hero-menu:hover {
            background: rgba(255,255,255,0.85);
        }

        .btn-hero-doordash {
            background: var(--doordash-color);
            color: white;
            border: 2px solid var(--doordash-color);
        }

        .btn-hero-doordash:hover {
            background: #d92800;
            border-color: #d92800;
        }

        /* Mobile CTA - DoorDash item */
        .mobile-cta-doordash {
            background: var(--doordash-color);
            border-radius: 12px;
            color: white !important;
            flex: 1;
            min-height: 44px;
            padding: 6px 0 !important;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            #hero h1 {
                font-size: 2.5rem;
            }

            #hero p {
                font-size: 1.2rem;
            }

            h2 {
                font-size: 2rem;
            }

            .menu-category {
                padding: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }

            .btn-hero {
                width: 80%;
                max-width: 300px;
            }
        }
    
/* ---------- Sub-page shared ---------- */
#page-hero{background:linear-gradient(rgba(0,0,0,.66),rgba(0,0,0,.66)),url('/hero_section_anatoliafire_halal_food_truck_mountain_view.png');background-size:cover;background-position:center;color:#fff;text-align:center;padding:8rem 0 4.5rem}
#page-hero h1{font-family:'Playfair Display',serif;font-size:2.5rem;margin:0 0 1rem;line-height:1.25}
#page-hero p.lede{font-size:1.1rem;max-width:720px;margin:0 auto 2rem;opacity:.95}
.breadcrumb{font-size:.85rem;padding:1rem 0 0;color:#777}
.breadcrumb a{color:var(--primary-color);text-decoration:none}
.breadcrumb a:hover{text-decoration:underline}
.sec{padding:3.5rem 0}
.sec:nth-of-type(even){background:#fff}
.sec h2{font-family:'Playfair Display',serif;color:var(--primary-color);font-size:2rem;margin-bottom:1.2rem}
.sec h3{font-family:'Playfair Display',serif;color:var(--dark-color)}
.sec p{line-height:1.8;margin-bottom:1rem}
.info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem;margin-top:2rem}
.info-box{background:#fff;padding:1.5rem;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,.07);border-left:4px solid var(--primary-color)}
.sec:nth-of-type(even) .info-box{background:var(--light-color)}
.info-box h3{margin:0 0 .6rem;font-size:1.15rem}
.info-box p{margin:0;font-size:.95rem;color:#555}
.link-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1rem;margin-top:1.5rem}
.link-card{background:#fff;border:1px solid #e8e8e8;border-radius:8px;padding:1.1rem 1.3rem;text-decoration:none;color:var(--text-color);display:flex;justify-content:space-between;align-items:center;gap:1rem;transition:all .25s ease}
.sec:nth-of-type(even) .link-card{background:var(--light-color)}
.link-card:hover{border-color:var(--primary-color);box-shadow:0 4px 14px rgba(0,0,0,.09);transform:translateY(-2px)}
.link-card strong{font-family:'Playfair Display',serif;font-size:1.05rem;display:block}
.link-card small{color:#777;font-size:.85rem;display:block;margin-top:.2rem}
.link-card .price{color:var(--primary-color);font-weight:700;white-space:nowrap}
.faq-item{background:#fff;border-radius:8px;padding:1.3rem 1.5rem;margin-bottom:1rem;box-shadow:0 2px 6px rgba(0,0,0,.06)}
.sec:nth-of-type(even) .faq-item{background:var(--light-color)}
.faq-item h3{margin:0 0 .5rem;font-size:1.05rem}
.faq-item p{margin:0;color:#555;font-size:.95rem}
.pills{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.2rem}
.pills a{background:#fff;border:1px solid #ddd;padding:.5rem 1rem;border-radius:20px;text-decoration:none;color:var(--text-color);font-size:.9rem;transition:all .25s ease}
.sec:nth-of-type(even) .pills a{background:var(--light-color)}
.pills a:hover{background:var(--primary-color);color:#fff;border-color:var(--primary-color)}
.cta-band{background:var(--dark-color);color:#fff;text-align:center;padding:3rem 1rem}
.cta-band h2{color:#fff;margin-bottom:.8rem;font-family:'Playfair Display',serif}
.cta-band p{margin-bottom:1.8rem;opacity:.85}
.item-hero{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center}
.item-hero img{width:100%;border-radius:10px;box-shadow:0 6px 20px rgba(0,0,0,.12)}
.item-price-lg{font-size:2rem;color:var(--primary-color);font-weight:700;font-family:'Playfair Display',serif;margin:.5rem 0 1.2rem}
.spec-list{list-style:none;padding:0;margin:1.5rem 0}
.spec-list li{padding:.6rem 0;border-bottom:1px solid #eee;display:flex;justify-content:space-between;font-size:.95rem}
.spec-list li span:first-child{color:#777}
.spec-list li span:last-child{font-weight:600}
@media(max-width:768px){
  #page-hero{padding:6rem 0 3.2rem}
  #page-hero h1{font-size:1.75rem}
  #page-hero p.lede{font-size:1rem}
  .sec{padding:2.5rem 0}
  .sec h2{font-size:1.5rem}
  .item-hero{grid-template-columns:1fr;gap:1.5rem}
}

/* ---------- Instagram link in contact block ---------- */
.social-links .ig-link{display:inline-flex;align-items:center;justify-content:center;color:var(--primary-color);line-height:0;transition:transform .3s ease,color .3s ease}
.social-links .ig-link:hover{transform:scale(1.1);color:#C13584}
.social-links .ig-link svg{display:block}

/* ---------- Footer ---------- */
#footer a{color:#fff;text-decoration:none;opacity:.85;border-bottom:1px solid transparent;transition:opacity .2s ease,border-color .2s ease}
#footer a:visited{color:#fff}
#footer a:hover,#footer a:focus{opacity:1;border-bottom-color:rgba(255,255,255,.5)}
#footer p{margin:0 0 .5rem;line-height:1.75;font-size:.93rem}
#footer p:last-child{margin-bottom:0;opacity:.55;font-size:.85rem}
.footer-social a{opacity:.7}
#footer [itemprop]{font-style:normal}

.section-photo{width:100%;height:auto;border-radius:10px;box-shadow:0 6px 22px rgba(0,0,0,.13);margin:0 0 1.8rem;display:block;aspect-ratio:16/9;object-fit:cover}
