:root {
    --primary-color: #ff4500; /* Orange Red */
    --secondary-color: #ffcc00; /* Gold */
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-lighter: #1e1e1e;
    --text-color: #f0f0f0;
    --text-muted: #cccccc;
    --font-heading: 'Rye', serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a { color: var(--secondary-color); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--primary-color); }

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

.section { padding: 60px 0; }
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 10px auto 0;
}

/* Header */
.site-header {
    background: rgba(0, 0, 0, 0.3); /* Transparent initially */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(255, 69, 0, 0.2);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.logo-icon { margin-right: 10px; font-size: 1.8rem; }

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li { margin-left: 20px; }
.nav-menu a {
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
}

.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

/* Hero Section */
.hero-section {
    height: 100vh;
    background-color: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Local image with gradient overlay */
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

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

.main-title {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
    margin-bottom: 0.5rem;
}

.fire-text {
    color: var(--primary-color);
    animation: flicker 1.5s infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #d93600);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

/* About Section */
.about-section { background-color: var(--bg-darker); }

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.about-item {
    background: var(--bg-lighter);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s;
}

.about-item:hover { transform: translateY(-5px); }
.about-item h3 { color: var(--secondary-color); font-size: 1.3rem; }

.about-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: #222;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    position: relative;
}

.about-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-style: italic;
}

/* Menu Section */
.menu-section {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at center, #221000 0%, var(--bg-dark) 70%);
}

.menu-category { margin-bottom: 50px; }
.category-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.menu-list { list-style: none; max-width: 800px; margin: 0 auto; }

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.item-name { font-weight: bold; font-size: 1.1rem; color: #fff; }
.item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #555;
    margin: 0 10px;
    position: relative;
    top: -5px;
}
.item-price-wrapper {
    display: flex;
    align-items: center;
}
.item-price { font-weight: bold; color: var(--secondary-color); font-size: 1.1rem; }
.item-weight { color: #888; font-size: 0.9rem; margin-left: 5px; }
.item-desc { width: 100%; color: #888; font-size: 0.9rem; margin-top: 5px; }

/* Info Section */
.info-section { background: var(--bg-darker); }
.info-box {
    background: linear-gradient(135deg, #331100, #110500);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.2);
}

.info-content p { margin-bottom: 15px; font-size: 1.1rem; }
.btn-call {
    background: #fff;
    color: var(--bg-dark);
    padding: 15px 30px;
    display: inline-block;
    border-radius: 50px;
    margin-top: 20px;
    font-weight: bold;
    text-decoration: none;
}
.btn-call:hover { background: var(--secondary-color); }

/* Gallery */
.gallery-carousel {
    margin: 0 -10px; /* Offset the padding of items */
    opacity: 0; /* Hide initially until slick inits */
    transition: opacity 0.5s ease;
}
.gallery-carousel.slick-initialized {
    opacity: 1;
}

.gallery-item {
    padding: 0 10px; /* Spacing between slides */
    outline: none;
}

.gallery-item img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.gallery-item:hover img {
    transform: scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

/* Slick Carousel Customization */
.slick-dots li button:before {
    color: #fff;
}
.slick-dots li.slick-active button:before {
    color: var(--primary-color);
}
.slick-prev:before, .slick-next:before {
    color: var(--primary-color);
    font-size: 30px;
}
.slick-prev { left: -35px; }
.slick-next { right: -35px; }

/* Magnific Popup Overrides */
.mfp-bg {
    background: #0b0b0b;
    opacity: 0.9;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.placeholder-img {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    border: 1px dashed #444;
    border-radius: 8px;
}

/* Contact */
.contact-section { background: var(--bg-lighter); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 { font-size: 2rem; color: var(--primary-color); }
.opening-hours { margin-top: 30px; background: rgba(0,0,0,0.2); padding: 20px; border-radius: 8px; }
.opening-hours ul { list-style: none; }
.opening-hours li { display: flex; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px solid #333; padding-bottom: 5px; }

/* Footer */
.site-footer {
    background: #000;
    padding: 40px 0 20px;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; color: #666; font-size: 0.9rem; }

/* Animations */
@keyframes flicker {
    0%, 100% { text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--secondary-color); }
    50% { text-shadow: 0 0 20px var(--primary-color), 0 0 30px orange; }
}

/* Mobile */
.page-content, .single-post-content, .posts-list {
    background-color: var(--bg-lighter);
    padding: 40px;
    border-radius: 8px;
    margin-top: 100px; /* Offset for fixed header */
    min-height: 50vh;
}

.entry-title {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.entry-content {
    color: var(--text-color);
}

.entry-content h2, .entry-content h3 {
    margin-top: 20px;
    color: var(--primary-color);
}

.entry-content p {
    margin-bottom: 15px;
}

.post-meta {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: bold;
}

.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination .page-numbers {
    padding: 5px 10px;
    background: #333;
    color: #fff;
    margin: 0 2px;
    border-radius: 3px;
}

.pagination .current {
    background: var(--primary-color);
}

@media (max-width: 768px) {
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
    }
    
    .nav-menu.active { display: flex; }
    .nav-menu li { margin: 0 0 15px 0; text-align: center; }
    .menu-toggle { display: block; }
    
    .contact-grid { grid-template-columns: 1fr; }
    .main-title { font-size: 2.5rem; }
}

