@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
    --bg: #fffbf5;
    --bg-sec: #f8f3eb;
    --text: #1a1a1a;
    --text-muted: #5a5a5a;
    --accent: #8c001a; /* Deep burgundy steak color */
    --accent-hover: #5e0010;
    --accent-light: #fdf2f4;
    --card: #ffffff;
    --border: #1a1a1a;
    --shadow: rgba(26, 26, 26, 0.15);
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans);
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: var(--text);
    transition: all 0.25s ease;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 1.5rem calc(50vw - 50% + 2rem);
    border-bottom: 2px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg);
    margin-bottom: 3.5rem;
}

.logo {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    background: var(--card);
    padding: 0.65rem 2rem;
    border-radius: 50px;
    box-shadow: 3px 3px 0px var(--border);
    border: 2px solid var(--border);
}

nav a {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

nav a:hover, nav a.active {
    color: var(--accent);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    background: var(--accent);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--border);
    box-shadow: 3px 3px 0px var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px var(--border);
    background: var(--accent-hover);
}

.btn-secondary {
    background: var(--bg-sec);
    color: var(--text) !important;
}

.btn-secondary:hover {
    background: var(--card);
}

/* =========================================
   HERO SECTION (HOME)
   ========================================= */
.hero-food {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 0 4rem 0;
    gap: 3.5rem;
}

.hero-food-text {
    flex: 1.1;
}

.hero-food h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text);
    letter-spacing: -0.5px;
}

.hero-food p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-food-img {
    flex: 0.9;
    display: flex;
    justify-content: center;
}

.hero-food-img img {
    width: 100%;
    max-width: 460px;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    border: 2.5px solid var(--border);
    box-shadow: 8px 8px 0px var(--accent);
    transform: rotate(1deg);
    transition: transform 0.3s ease;
}

.hero-food-img img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* =========================================
   GRID & CARDS
   ========================================= */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0 4rem 0;
}

.food-card {
    background: var(--card);
    border-radius: 16px;
    border: 2px solid var(--border);
    padding: 1.25rem;
    box-shadow: 4px 4px 0px var(--border);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.food-card:hover {
    transform: translateY(-4px);
    box-shadow: 6px 8px 0px var(--accent);
}

.food-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--border);
    margin-bottom: 1.25rem;
}

.food-card .card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.4rem;
    letter-spacing: 0.8px;
}

.food-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    flex-grow: 1;
}

.food-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.food-card .btn {
    width: 100%;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* =========================================
   ARTICLE / DETAIL PAGE LAYOUT
   ========================================= */
.article-hero {
    background: var(--accent);
    border: 2.5px solid var(--border);
    border-radius: 20px;
    padding: 3.5rem 2rem;
    text-align: center;
    color: #fff;
    box-shadow: 6px 6px 0px var(--border);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 25%, transparent 25%),
                linear-gradient(225deg, rgba(255,255,255,0.05) 25%, transparent 25%);
    background-size: 40px 40px;
    opacity: 0.3;
}

.article-hero h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    letter-spacing: -0.5px;
}

.article-hero p.meta {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.article-content {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 3rem 3.5rem;
    font-size: 1.05rem;
    line-height: 1.75;
    box-shadow: 6px 6px 0px var(--border);
    margin-bottom: 4rem;
}

.article-content img.main-img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--border);
    margin-bottom: 2rem;
}

.article-content h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin: 2.2rem 0 1rem 0;
    color: var(--text);
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.4rem;
}

.article-content h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin: 1.75rem 0 0.75rem 0;
    color: var(--accent);
}

.article-content p {
    margin-bottom: 1.25rem;
    color: #2c2c2c;
    text-align: left;
}

.article-content ul, .article-content ol {
    margin: 1.2rem 0 1.2rem 1.75rem;
}

.article-content li {
    margin-bottom: 0.4rem;
}

/* =========================================
   FAQ ACCORDION STYLING
   ========================================= */
.faq-list {
    margin-top: 1.75rem;
}

.faq-item {
    border: 2px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    background: var(--card);
    box-shadow: 3px 3px 0px var(--border);
    overflow: hidden;
}

.faq-question {
    padding: 1.1rem 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    background: var(--bg-sec);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: var(--accent-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.35rem;
    font-weight: bold;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.65;
    background: var(--card);
    border-top: 0 solid var(--border);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.1rem 1.5rem;
    border-top: 2px solid var(--border);
}

/* =========================================
   CONTACT US LAYOUT
   ========================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    margin-top: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info {
    background: var(--bg-sec);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 4px 4px 0px var(--border);
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.4rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.contact-info-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-info-item div h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.contact-info-item div p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form-container {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 4px 4px 0px var(--border);
}

.contact-form-container h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--bg-sec);
    outline: none;
    transition: all 0.2s ease;
}

.form-control:focus {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 2px 2px 0px var(--border);
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

/* =========================================
   TABLES IN CONTENT
   ========================================= */
.nutritional-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75rem 0;
    border: 2px solid var(--border);
    box-shadow: 3px 3px 0px var(--border);
    border-radius: 8px;
    overflow: hidden;
    font-size: 0.95rem;
}

.nutritional-table th, .nutritional-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border: 1px solid var(--border);
}

.nutritional-table th {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-family: var(--font-serif);
}

.nutritional-table tr:nth-child(even) {
    background: var(--bg-sec);
}

/* =========================================
   FOOTER (FULL-WIDTH EDGE-TO-EDGE)
   ========================================= */
footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-top: 2px dashed var(--border);
    padding: 4rem 0 2.5rem 0;
    margin-top: auto;
    background: var(--bg-sec);
}

.footer-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-about h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.9rem;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 380px;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   RESPONSIVE OVERRIDES
   ========================================= */
@media(max-width: 992px) {
    .hero-food {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        gap: 2.5rem;
    }
    .hero-food-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-food h1 {
        font-size: 2.5rem;
    }
    .hero-food-img {
        width: 100%;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    .logo {
        font-size: 1.9rem;
        justify-content: center;
    }
    .logo img {
        width: 38px;
        height: 38px;
    }
    nav ul {
        gap: 1rem;
        padding: 0.5rem 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-food h1 {
        font-size: 2rem;
    }
    .hero-food p {
        font-size: 1rem;
    }
    .hero-food-img img {
        height: 260px;
    }
    .article-hero {
        padding: 2.5rem 1.25rem;
    }
    .article-hero h1 {
        font-size: 1.85rem;
    }
    .article-content {
        padding: 2rem 1.25rem;
        font-size: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .food-grid {
        grid-template-columns: 1fr;
    }
    .logo {
        font-size: 1.6rem;
    }
    nav ul {
        gap: 0.75rem;
        padding: 0.5rem 1rem;
    }
    nav a {
        font-size: 0.85rem;
    }
}
