/* ================= Base Variables & Reset ================= */
:root {
    --primary-color: #d32f2f; /* Appetizing Red */
    --secondary-color: #212121; /* Dark Gray */
    --light-bg: #f9f9f9;
    --text-color: #333333;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.bg-light { background-color: var(--light-bg); }

/* ================= Buttons ================= */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}
.btn-primary:hover { background-color: #b71c1c; }

/* ================= Header & Navigation ================= */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.main-nav ul {
    display: flex;
    gap: 30px;
}
.main-nav a {
    font-weight: 500;
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--primary-color); }
.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary-color);
}

/* ================= Hero Section ================= */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
}
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-inline: auto; }
.page-header { background-color: var(--secondary-color); color: #fff; padding: 60px 0; text-align: center; }

/* ================= Body Sections ================= */
.content-section { padding: 80px 20px; }
.seo-article h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--secondary-color); }
.seo-article p { font-size: 1.1rem; margin-bottom: 15px; color: #555; }

/* ================= Grids (Reviews, About, Contact) ================= */
.reviews-section { padding: 80px 0; }
.reviews-section h2 { margin-bottom: 40px; font-size: 2.2rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}
.stars { color: #FFD700; font-size: 1.5rem; margin-bottom: 15px; }
.review-card p { font-style: italic; margin-bottom: 20px; color: #666; }

.about-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.placeholder-box { background: #eee; height: 400px; display: flex; align-items: center; justify-content: center; color: #999; border-radius: 8px;}
.hours-list li { border-bottom: 1px solid #ddd; padding: 10px 0; }

/* ================= Forms ================= */
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 8px; font-weight: 500; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary-color); }

/* ================= Footer ================= */
.site-footer { background-color: var(--secondary-color); color: #fff; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: var(--primary-color); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid #444; padding-top: 20px; font-size: 0.9rem; color: #aaa; }

/* ================= Mobile Responsiveness ================= */
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .main-nav {
        display: none; position: absolute; top: 70px; left: 0; width: 100%;
        background: #fff; box-shadow: 0 5px 10px rgba(0,0,0,0.1); padding: 20px 0;
    }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; text-align: center; gap: 20px; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
}