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

:root {
    --bg-main: #0f1117;
    --bg-card: #181b24;
    --bg-glass: rgba(24, 27, 36, 0.85);
    --accent: #ff4757;
    --accent-hover: #ff6b81;
    --accent-glow: rgba(255, 71, 87, 0.35);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(255, 71, 87, 0.3);
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 71, 87, 0.05), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 129, 0.04), transparent 30%);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: #fff;
    line-height: 1.25;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.8rem 5%;
    box-shadow: var(--shadow-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-sans);
    color: #fff;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
}

/* Hero */
.hero-food {
    position: relative;
    padding: 6rem 1.5rem 5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.hero-food h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: #fff;
}

.hero-food p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-food-img {
    flex: 1;
    position: relative;
}

.hero-food-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border-accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b81 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--accent-glow);
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: #fff;
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Grids */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.2rem;
    margin: 4rem 0;
}

.food-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.food-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md), 0 0 20px rgba(255, 71, 87, 0.2);
}

.food-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.food-card:hover img {
    transform: scale(1.05);
}

.food-card-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.food-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.food-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
}

.team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.team-info {
    padding: 1.4rem;
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

/* Article single */
.article-hero {
    background: linear-gradient(135deg, #181b24 0%, #0f1117 100%);
    border-bottom: 1px solid var(--border);
    padding: 6rem 1.5rem 3.5rem 1.5rem;
    text-align: center;
}

.article-hero h1 {
    font-size: 3rem;
    max-width: 900px;
    margin: 0 auto 1rem auto;
}

.article-content {
    max-width: 860px;
    margin: 4rem auto 6rem auto;
    padding: 0 1.5rem;
    font-size: 1.1rem;
    line-height: 1.85;
    color: #cbd5e1;
}

.article-content p {
    margin-bottom: 1.6rem;
}

.article-content img {
    width: 100%;
    height: 440px;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.article-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
}

/* Back to top */
.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--bg-glass);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Footer */
footer {
    background: #08090d;
    border-top: 1px solid var(--border);
    padding: 4.5rem 0 2rem 0;
    margin-top: auto;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero-food {
        flex-direction: column;
        text-align: center;
    }
    .hero-food h1 {
        font-size: 2.4rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(15, 17, 23, 0.98);
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    nav.active {
        right: 0;
    }
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}
