/* 
  Franchino SF - Authentic Italian Dining
  Archetype: Ultra-Premium Typographic Noir
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=Montserrat:wght@200;300;400;500&display=swap');

:root {
    --primary: #722F37;
    /* Deep Merlot */
    --primary-dim: #4a1a21;
    --bg-dark: #050505;
    /* Near Black */
    --bg-panel: #111111;
    --text-main: #EAEAE0;
    /* Bone / Off-White */
    --text-muted: #888888;
    --gold: #C5A059;
    /* Muted Champagne Gold */
    --gold-dim: #8a703e;

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;

    --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Overrides */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-main);
}

h1 {
    font-size: 5rem;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

h2 {
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

p {
    font-weight: 300;
    color: #ccc;
    font-size: 1.05rem;
}

.italic {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.text-center {
    text-align: center;
}

/* Navigation - Minimal & Floating */
.site-header {
    padding: 2rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: var(--border-subtle);
    transition: all 0.4s ease;
}

.logo {
    display: block;
    text-align: center;
    margin-bottom: 0;
    /* Reset */
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 1.5rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: 0.3s;
    opacity: 0.7;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section - Visual Focus */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 8rem;
    background:
        linear-gradient(to bottom, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.9)),
        url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ... existing code ... */

/* New Featured Section */
.featured-overlay {
    background: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.9)), url('../images/featured.png');
    background-size: cover;
    background-position: center;
    padding: 10rem 0;
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, #050505 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 7rem;
    background: linear-gradient(to bottom, #fff, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.8));
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    background: transparent;
    margin-top: 2rem;
}

.btn:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

/* Menu Section - Elegant List */
.menu-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}

/* Menu Item Refinement - Fixing the "Invisible" text */
.menu-item {
    margin-bottom: 4rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid var(--primary-dim);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--gold);
    transform: translateX(15px);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    font-size: 1.6rem;
    font-family: var(--font-serif);
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.menu-desc {
    font-size: 1rem;
    color: #bbb;
    /* Corrected to be significantly more visible */
    font-style: italic;
    font-family: var(--font-serif);
    line-height: 1.5;
    opacity: 0.9;
}

.menu-header span:last-child {
    color: var(--gold);
    font-size: 1.2rem;
    font-family: var(--font-sans);
    font-weight: 300;
}

/* New Featured Section */
.featured-overlay {
    background: linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.9)), url('https://images.unsplash.com/photo-1473093226795-af9932fe5856?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    padding: 10rem 0;
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
}

/* Footer - Minimal */
footer {
    padding: 6rem 0;
    background: #080808;
    border-top: var(--border-subtle);
    text-align: center;
    color: #444;
}

/* Mobile & Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .nav-links {
        position: fixed;
        background: var(--bg-dark);
        height: 100vh;
        width: 100%;
        top: 0;
        left: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 90;
        margin-top: 0;
        gap: 2rem;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: block !important;
        position: fixed;
        right: 2rem;
        top: 2rem;
        z-index: 101;
        font-size: 1.5rem;
        color: var(--gold);
        mix-blend-mode: difference;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-toggle {
    display: none;
}

/* Search Bar */
.search-wrapper {
    margin: 0 auto 3rem;
    max-width: 500px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 4px;
    color: white;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-align: center;
    transition: 0.3s;
}

.search-input::placeholder {
    color: #666;
    font-style: italic;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

/* Blog/Article Styles */
.blog-card {
    display: block;
    background: #1a1a1a;
    padding: 2rem;
    border: 1px solid #333;
    border-left: 2px solid var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--gold);
    background: #222;
}

.blog-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.blog-card p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

.category-tag {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
    font-family: var(--font-sans);
}

/* Single Article Design */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    min-height: 80vh;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #333;
    padding-bottom: 2rem;
}

.article-title {
    font-size: 3rem;
    margin: 1rem 0;
    line-height: 1.2;
    color: white;
}

.meta {
    color: #666;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    font-style: italic;
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ddd;
}

.article-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body strong {
    color: white;
}

.author-box {
    background: #1a1a1a;
    padding: 2rem;
    border: 1px solid #333;
    border-left: 4px solid var(--primary);
    margin-top: 4rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.author-box h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.trust-badges {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}