@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;
}

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

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

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 2px solid var(--border);
}

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

.logo svg {
    fill: var(--accent);
    width: 32px;
    height: 32px;
}

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

nav a {
    font-weight: 600;
    font-size: 1rem;
}

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

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

.btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 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 */
.hero-food {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 0;
    gap: 4rem;
}

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

.hero-food h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hero-food p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

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

.hero-food-img img {
    width: 100%;
    max-width: 500px;
    height: 380px;
    object-fit: cover;
    border-radius: 24px;
    border: 3px solid var(--border);
    box-shadow: 12px 12px 0px var(--accent);
    transform: rotate(1.5deg);
    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: 2.5rem;
    margin: 4rem 0;
}

.food-card {
    background: var(--card);
    border-radius: 20px;
    border: 3px solid var(--border);
    padding: 1.5rem;
    box-shadow: 6px 6px 0px var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.food-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.food-card .btn {
    width: 100%;
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
}

/* Article Page Layout */
.article-hero {
    background: var(--accent);
    border: 3px solid var(--border);
    border-radius: 24px;
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
    box-shadow: 8px 8px 0px var(--border);
    margin-bottom: 3rem;
    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: 3.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

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

.article-content {
    background: var(--card);
    border: 3px solid var(--border);
    border-radius: 24px;
    padding: 4rem;
    font-size: 1.15rem;
    line-height: 1.8;
    box-shadow: 8px 8px 0px var(--border);
    margin-bottom: 5rem;
}

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

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

.article-content h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin: 2rem 0 1rem 0;
    color: var(--accent);
}

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

.article-content ul, .article-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

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

/* FAQ Accordion Styling */
.faq-list {
    margin-top: 2rem;
}

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

.faq-question {
    padding: 1.25rem 1.75rem;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    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.5rem;
    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.75rem;
    font-size: 1.05rem;
    background: var(--card);
    border-top: 0 solid var(--border);
}

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

/* Contact Us Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    margin-top: 2rem;
}

@media(max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background: var(--bg-sec);
    border: 3px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 6px 6px 0px var(--border);
}

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

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

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

.contact-info-item div h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

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

.contact-form-container {
    background: var(--card);
    border: 3px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 6px 6px 0px var(--border);
}

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

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

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

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

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

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

/* Tables in Content */
.nutritional-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border: 2px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.nutritional-table th, .nutritional-table td {
    padding: 0.9rem 1.2rem;
    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 */
footer {
    border-top: 3px dashed var(--border);
    padding: 4rem 0;
    margin-top: 5rem;
    background: var(--bg-sec);
}

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

@media(max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

.footer-about p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 400px;
}

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

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

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

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

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

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

@media(max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Responsive Overrides */
@media(max-width: 992px) {
    .hero-food {
        flex-direction: column;
        text-align: center;
        padding: 3rem 0;
        gap: 3rem;
    }
    .hero-food-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-food h1 {
        font-size: 3rem;
    }
    .hero-food-img {
        width: 100%;
    }
}
