/* Smoked & Tasty — Main Stylesheet */
/* Design spec: colors, typography, layout */

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

/* Variables */
:root {
    --primary: #c0582f;      /* Terracotta */
    --secondary: #8e2839;    /* Burgundy (fallback) */
    --background: #f8f5f2;   /* Warm off‑white */
    --alt-background: #fff1e8;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --container-max: 1200px;
    --section-padding: 5rem 2rem;
    --mobile-padding: 3rem 1.5rem;
}

/* Typography */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, .section-label {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem; /* 56px */
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem; /* 40px */
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem; /* 28px */
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.section-label {
    font-size: 1.25rem; /* 20px */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}

p {
    margin-bottom: 1.5rem;
    max-width: 65ch;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

/* Utility */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: var(--section-padding);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--secondary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(248, 245, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background: url('https://images.unsplash.com/photo-1529193591184-b1d58069ecdd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    padding: 0 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 3rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 3.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Services */
.services {
    background-color: var(--text-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary);
}

.service-card p {
    padding: 0 1.5rem 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
    flex-grow: 1;
}

.service-link {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    font-weight: 600;
    color: var(--primary);
}
/* Service mobile elements - hidden on desktop */
.service-short,


.service-link:hover {
    color: var(--secondary);
}

/* Gallery */
.gallery {
    padding: var(--section-padding);
    background-color: var(--alt-background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.gallery-item img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-more {
    text-align: center;
    margin-top: 2rem;
}

.gallery-more-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.gallery-more-link:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-source {
    margin-bottom: 0.75rem;
}

.review-source img {
    height: 20px;
    width: auto;
    opacity: 0.9;
}

.review-card p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.review-author {
    font-weight: 600;
    color: var(--text-primary);
    margin-top: auto;
}

/* Contact */
.contact {
    background: url('https://images.unsplash.com/photo-1529193591184-b1d58069ecdd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80&blur=10') center/cover no-repeat;
    position: relative;
    text-align: center;
}


.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.contact-note {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: var(--text-light);
    padding: 2rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-brand img {
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.6);
}



.footer-social {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-social-line {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-social img {
    filter: brightness(0) invert(1);
    transition: filter 0.2s;
}

.footer-social a:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(-10deg);
}




.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    width: 100%;
    margin-top: 1rem;
}

/* Mobile */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    z-index: 2001;
    background-color: var(--background);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 1rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.modal-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.modal-contact {
    display: inline-block;
}

/* Mobile modal adjustments */
@media (max-width: 768px) {
    .modal-container {
        padding: 2rem 1.5rem;
        width: 95%;
        margin: 0.5rem;
    .footer-contact-line {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        text-align: center;
    }
    .footer-social-line {
        margin-top: 0.75rem;
        justify-content: center;
    }
    }
    .modal-title {
        font-size: 1.75rem;
    }
    .modal-description {
        font-size: 1rem;
    }
}
@media (max-width: 1024px) {
    .services-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero {
        padding-top: 80px;
        height: 80vh;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .services-grid,
    .reviews-grid,
    .gallery-grid,
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-brand,
    .footer-contact {
        min-width: 100%;
    }
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .section-padding {
        padding: var(--mobile-padding);
    }
    .container {
        padding: 0 1.5rem;
    }
    .hero .container {
        padding: 2rem;
    }

    /* Services mobile single column */
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Service card expandable content */
    .service-short,
    .service-full {
        display: none;
    }
}