/* ============================================================
   FOODIE STORIES  —  Master stylesheet
   Aesthetic: warm food-blog, amber/gold accents, modern editorial.
   Fully responsive (mobile / tablet / laptop / desktop).
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
    --color-bg:        #fdf9f3;
    --color-surface:   #ffffff;
    --color-dark:      #0f0f10;
    --color-dark-2:    #1a1a1c;
    --color-muted:     #6b6b6b;
    --color-text:      #1d1d1f;
    --color-border:    #ececec;

    --color-accent:    #ffb703;
    --color-accent-2:  #fb8500;
    --color-accent-soft:#fff4df;

    --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 70px rgba(0,0,0,0.2);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --font-display: 'Playfair Display', 'Poppins', serif;
    --font-body:    'Poppins', system-ui, sans-serif;

    --container-pad: clamp(1rem, 3vw, 2rem);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

::selection { background: var(--color-accent); color: #000; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: rgba(15, 15, 16, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    transition: all 0.35s ease;
    z-index: 1030;
}

.navbar.scrolled {
    background: rgba(15, 15, 16, 0.95);
    box-shadow: 0 5px 25px rgba(0,0,0,0.25);
    padding: 8px 0;
}

.navbar-brand {
    color: #fff !important;
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 800;
    letter-spacing: 0.3px;
}

.navbar-brand .brand-text { color: #fff; }
.navbar-brand .brand-accent { color: var(--color-accent); font-style: italic; }

.profile-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255,183,3,0.15);
}

.navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 15px;
    margin: 0 10px;
    padding: 8px 4px !important;
    position: relative;
    transition: color 0.25s;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.navbar .nav-link:hover { color: var(--color-accent) !important; }
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link.active { color: var(--color-accent) !important; }

.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero-section,
.about-hero,
.recipes-hero,
.seasonal-hero,
.blog-hero,
.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 100px var(--container-pad) 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
        url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?q=80&w=2070');
}
.about-hero {
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
        url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?q=80&w=2070');
}
.recipes-hero {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
        url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?q=80&w=2070');
}
.seasonal-hero {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)),
        url('https://images.unsplash.com/photo-1473093295043-cdd812d0e601?q=80&w=2070');
}
.blog-hero {
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?q=80&w=2070');
}
.contact-hero {
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
        url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?q=80&w=2070');
}

.hero-content { max-width: 900px; }

.hero-logo {
    width: clamp(110px, 14vw, 160px);
    height: clamp(110px, 14vw, 160px);
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    padding: 4px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    margin-bottom: 24px;
    animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.hero-section h1,
.about-hero h1,
.recipes-hero h1,
.seasonal-hero h1,
.blog-hero h1,
.contact-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1rem;
    animation: fadeDown 0.9s ease;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-section h1 span,
.recipes-hero h1 span,
.about-hero h1 span,
.seasonal-hero h1 span,
.blog-hero h1 span,
.contact-hero h1 span {
    color: var(--color-accent);
    font-style: italic;
}

.hero-section p,
.about-hero p,
.recipes-hero p,
.seasonal-hero p,
.blog-hero p,
.contact-hero p {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    margin-bottom: 1.8rem;
    opacity: 0.92;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 1s ease;
}

.hero-btn,
.btn-cta {
    display: inline-block;
    padding: 14px 36px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--color-accent);
    color: #1a1a1c;
    transition: 0.3s;
    cursor: pointer;
    font-size: 1rem;
}
.hero-btn:hover,
.btn-cta:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,183,3,0.4);
}

.btn-outline-cta {
    display: inline-block;
    padding: 14px 36px;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: var(--radius-pill);
    color: #fff;
    background: transparent;
    transition: 0.3s;
    margin-left: 10px;
}
.btn-outline-cta:hover {
    background: #fff;
    color: #1a1a1c;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent-2);
    background: var(--color-accent-soft);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--color-dark);
}

.section-subtitle {
    color: var(--color-muted);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    max-width: 640px;
    margin: 0 auto 50px;
}

/* ============================================================
   CATEGORY CARDS  (home page)
   ============================================================ */
.section-light { background: var(--color-bg); padding: clamp(60px, 8vw, 100px) 0; }
.section-dark  { background: #111; color: #fff; padding: clamp(60px, 8vw, 100px) 0; }

.category-card {
    border: none;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(.2,.7,.3,1);
    cursor: pointer;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-card img.card-img-top {
    height: 230px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img.card-img-top {
    transform: scale(1.08);
}

.category-card .card-body {
    padding: 22px 20px;
    text-align: center;
}

.category-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-body);
}

/* TOP-RIGHT LOGO BADGE — appears on EVERY card */
.card-logo-badge,
.card-logo-top {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    background: #fff;
    padding: 2px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 3;
}

/* ============================================================
   RECIPE CARDS (everywhere)
   ============================================================ */
.recipe-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.2,.7,.3,1);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.recipe-card-image {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.recipe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.recipe-card:hover .recipe-card-image img {
    transform: scale(1.1);
}

.recipe-card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.recipe-category {
    display: inline-block;
    background: var(--color-accent-soft);
    color: var(--color-accent-2);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.rating-pill {
    background: #1a1a1c;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rating-pill i { color: var(--color-accent); }

.recipe-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark);
    line-height: 1.25;
}

.recipe-desc {
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recipe-meta {
    display: flex;
    justify-content: space-between;
    color: var(--color-muted);
    font-size: 0.86rem;
    padding: 12px 0;
    border-top: 1px dashed var(--color-border);
    border-bottom: 1px dashed var(--color-border);
    margin-bottom: 14px;
}

.recipe-meta i { color: var(--color-accent-2); margin-right: 4px; }

.btn-view-recipe {
    width: 100%;
    padding: 11px 18px;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--color-dark);
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    transition: 0.3s;
    cursor: pointer;
    margin-top: auto;
}

.btn-view-recipe:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

.trending-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #ff3d00, #ff7b00);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 6px 18px rgba(255,61,0,0.3);
}

.favorite-icon {
    color: rgba(0,0,0,0.2);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.25s;
}
.favorite-icon.active { color: #ff3d00; }
.favorite-icon:hover  { transform: scale(1.2); }

/* ============================================================
   SEARCH + FILTERS  (recipes page)
   ============================================================ */
.search-box-wrap {
    max-width: 760px;
    margin: 40px auto 0;
}

.search-box-wrap .search-input {
    height: 60px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-border);
    background: #fff;
    padding: 0 28px 0 56px;
    box-shadow: var(--shadow-md);
    font-size: 1rem;
    width: 100%;
    position: relative;
}

.search-wrap-inner {
    position: relative;
}

.search-wrap-inner i.search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted);
    font-size: 1.1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(255,183,3,0.15);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 30px auto 50px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--color-dark);
    background: transparent;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.88rem;
    transition: 0.25s;
    cursor: pointer;
}

.filter-btn:hover {
    background: var(--color-dark);
    color: #fff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-dark);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--color-muted);
}
.empty-state i {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: 16px;
    opacity: 0.5;
}
.empty-state h3 {
    color: var(--color-dark);
    margin-bottom: 10px;
}

/* ============================================================
   RECIPE DETAILS PAGE
   ============================================================ */
.detail-wrap {
    padding-top: 100px;
    padding-bottom: 60px;
}

.detail-img {
    width: 100%;
    height: clamp(280px, 50vw, 480px);
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.detail-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin: 20px 0 14px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}
.detail-meta .chip {
    background: var(--color-accent-soft);
    color: var(--color-dark);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.88rem;
}
.detail-meta .chip i { color: var(--color-accent-2); margin-right: 6px; }

.recipe-info {
    background: var(--color-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.recipe-info h4 { color: var(--color-accent); margin-bottom: 18px; }
.recipe-info table { width: 100%; }
.recipe-info table td,
.recipe-info table th {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}
.recipe-info table th { color: rgba(255,255,255,0.7); font-weight: 500; }
.recipe-info table td { text-align: right; font-weight: 600; }

#ingredients li,
#instructions li {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    padding-left: 6px;
}

#ingredients { list-style: none; padding-left: 0; }
#ingredients li {
    background: #fff;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
}
#ingredients li::before {
    content: "🍴";
    font-size: 1.1rem;
}

#instructions {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}
#instructions li {
    counter-increment: step;
    background: #fff;
    padding: 18px 18px 18px 64px;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    position: relative;
}
#instructions li::before {
    content: counter(step);
    position: absolute;
    left: 16px;
    top: 16px;
    width: 34px;
    height: 34px;
    background: var(--color-accent);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-display);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-dark);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    border: none;
    font-weight: 600;
    margin-bottom: 26px;
    transition: 0.25s;
}
.back-btn:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-section { padding: clamp(60px, 9vw, 110px) 0; background: #fff; }
.story-section .story-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 22px;
}
.story-section .story-content p {
    color: var(--color-muted);
    margin-bottom: 16px;
    line-height: 1.85;
}
.story-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: 0.4s;
}
.story-image img:hover { transform: scale(1.02); }

.journey-section { background: #111; color: #fff; padding: clamp(60px, 9vw, 110px) 0; }
.journey-section .section-title { color: #fff; }
.journey-section .section-subtitle { color: rgba(255,255,255,0.7); }
.journey-card {
    background: #1c1c1e;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
}
.journey-card:hover {
    transform: translateY(-8px);
    background: #232325;
    border-color: var(--color-accent);
}
.journey-card i {
    font-size: 2.6rem;
    color: var(--color-accent);
    margin-bottom: 18px;
}
.journey-card h4 { font-weight: 700; margin-bottom: 12px; font-family: var(--font-body); }
.journey-card p  { color: rgba(255,255,255,0.7); }

.team-section { padding: clamp(60px, 9vw, 110px) 0; background: var(--color-bg); }
.team-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: 0.4s;
    box-shadow: var(--shadow-md);
    background: #fff;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.team-card .card-body { padding: 22px; text-align: center; }
.team-card h4 { font-weight: 700; }
.team-card p  { color: var(--color-muted); }

.achievement-section {
    background: var(--color-accent-soft);
    padding: clamp(50px, 8vw, 90px) 0;
}
.achievement-box { text-align: center; padding: 20px; }
.achievement-box h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: var(--color-accent-2);
    margin-bottom: 8px;
}
.achievement-box p {
    font-weight: 600;
    color: var(--color-dark);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.video-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: 0.4s;
    height: 100%;
}
.video-card:hover { transform: translateY(-8px); }
.video-content { padding: 22px; }
.video-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-body);
}
.video-content p { color: var(--color-muted); }

.feature-section { background: #111; color: #fff; padding: clamp(60px, 9vw, 110px) 0; }
.feature-section .section-title { color: #fff; }
.feature-section .section-subtitle { color: rgba(255,255,255,0.7); }
.feature-box {
    text-align: center;
    padding: 36px 28px;
    background: #1c1c1e;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s;
    height: 100%;
    cursor: pointer;
}
.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
}
.feature-box i {
    font-size: 2.6rem;
    color: var(--color-accent);
    margin-bottom: 18px;
}
.feature-box h3 { font-weight: 700; margin-bottom: 12px; font-family: var(--font-body); }
.feature-box p  { color: rgba(255,255,255,0.7); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: clamp(60px, 9vw, 110px) 0; background: var(--color-bg); }

.contact-info {
    background: #111;
    color: #fff;
    padding: clamp(30px, 4vw, 50px);
    border-radius: var(--radius-lg);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: "";
    position: absolute;
    inset: auto auto -60px -60px;
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    opacity: 0.08;
    border-radius: 50%;
}
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
}
.info-box i {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,183,3,0.15);
    color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
}
.info-box h5 { font-weight: 600; font-family: var(--font-body); margin-bottom: 2px; }
.info-box p  { color: rgba(255,255,255,0.75); margin: 0; }

.contact-form {
    background: #fff;
    padding: clamp(30px, 4vw, 50px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.contact-form p  { color: var(--color-muted); margin-bottom: 24px; }

.form-control {
    height: 54px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--color-border);
    padding-left: 18px;
    background: #fafafa;
    margin-bottom: 16px;
    font-size: 0.95rem;
    transition: 0.25s;
}
.form-control:focus {
    border-color: var(--color-accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,183,3,0.12);
}
textarea.form-control { height: auto; padding-top: 14px; min-height: 130px; }

.submit-btn {
    background: var(--color-dark);
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}
.submit-btn:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.social-card {
    background: #fff;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: 0.4s;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    height: 100%;
}
.social-card:hover {
    transform: translateY(-8px);
    background: var(--color-dark);
    color: #fff;
}
.social-card i {
    font-size: 2.4rem;
    color: var(--color-accent);
    margin-bottom: 14px;
}
.social-card h4 { font-weight: 700; font-family: var(--font-body); }

.faq-section { padding: clamp(60px, 9vw, 110px) 0; background: var(--color-bg); }
.accordion-item {
    border: none !important;
    margin-bottom: 14px;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.accordion-button {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
    background: #fff;
}
.accordion-button:not(.collapsed) {
    background: var(--color-dark);
    color: #fff;
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-button:not(.collapsed)::after { filter: invert(1); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
    padding: clamp(70px, 10vw, 120px) 0;
    background:
        linear-gradient(rgba(15,15,16,0.85), rgba(15,15,16,0.85)),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?q=80&w=2070');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
.newsletter h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.newsletter p  { color: rgba(255,255,255,0.78); margin-bottom: 30px; font-size: 1.05rem; }

.newsletter .form-control {
    background: rgba(255,255,255,0.95);
    margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer, footer {
    background: #0a0a0b;
    color: #fff;
    padding: 70px 0 30px;
}
.footer h4, footer h4 {
    color: var(--color-accent);
    margin-bottom: 22px;
    font-size: 1.15rem;
    font-family: var(--font-body);
}
.footer p, footer p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 14px;
}
.footer a, footer a {
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 10px;
    transition: 0.25s;
}
.footer a:hover, footer a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}
.emailNumber {
    font-size: 0.95rem;
    color: var(--color-accent) !important;
    font-weight: 500;
    line-height: 1.7;
}

.social-icons a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    margin: 0 8px 0 0 !important;
    padding: 0 !important;
    font-size: 1rem !important;
    transition: 0.25s;
}
.social-icons a:hover {
    background: var(--color-accent);
    color: var(--color-dark) !important;
    transform: translateY(-3px);
    padding-left: 0 !important;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 36px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: #0f0f10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader-hidden { opacity: 0; visibility: hidden; }

.loader-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--color-accent);
    letter-spacing: 1px;
    animation: pulse 1.5s infinite;
}
.loader-subtext {
    color: #fff;
    margin-top: 14px;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 24px;
    position: relative;
}
.loader-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-accent);
    animation: loaderBar 1.4s linear infinite;
    transform-origin: left;
}

@keyframes loaderBar {
    0%   { transform: translateX(-100%) scaleX(0.5); }
    50%  { transform: translateX(0)     scaleX(0.8); }
    100% { transform: translateX(100%)  scaleX(0.5); }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast-host {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: calc(100vw - 40px);
}
.toast-msg {
    background: #fff;
    color: var(--color-text);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid var(--color-accent);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 260px;
}
.toast-msg.show { transform: translateX(0); opacity: 1; }
.toast-msg.toast-success { border-left-color: #22c55e; }
.toast-msg.toast-error   { border-left-color: #ef4444; }
.toast-msg.toast-info    { border-left-color: var(--color-accent); }

/* ============================================================
   ABOUT PREVIEW (home page)
   ============================================================ */
.about-preview {
    background: var(--color-accent-soft);
    padding: clamp(60px, 9vw, 110px) 0;
}
.about-preview h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 22px; }
.about-preview p  { color: var(--color-muted); margin-bottom: 14px; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { background: #111; color: #fff; padding: clamp(60px, 9vw, 110px) 0; }
.video-section .section-title { color: #fff; }
.video-section .section-subtitle { color: rgba(255,255,255,0.7); }
.video-box {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: 0.4s;
}
.video-box:hover { transform: scale(1.02); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.05); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVE FINE-TUNING
   ============================================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(15,15,16,0.97);
        padding: 18px;
        border-radius: var(--radius-md);
        margin-top: 12px;
    }
    .navbar .nav-link { margin: 0; padding: 10px 0 !important; }
    .recipe-info { position: static; margin-top: 32px; }
}

@media (max-width: 767px) {
    .hero-section,
    .about-hero,
    .recipes-hero,
    .seasonal-hero,
    .blog-hero,
    .contact-hero {
        min-height: 80vh;
        padding-top: 90px;
    }
    .btn-outline-cta { margin-left: 0; margin-top: 10px; }
    .card-logo-badge,
    .card-logo-top { width: 44px; height: 44px; top: 10px; right: 10px; }
    .recipe-card-image { height: 200px; }
    .recipe-card-body { padding: 18px; }
    .toast-host { right: 10px; left: 10px; }
    .toast-msg { min-width: 0; }
    .info-box i { width: 38px; height: 38px; }
}

@media (max-width: 480px) {
    .filter-btn { padding: 8px 16px; font-size: 0.82rem; }
    .hero-btn { padding: 12px 26px; font-size: 0.95rem; }
}

/* =====================================================
   SUPPLEMENTARY STYLES — additions for seasonal/blog/contact
   ===================================================== */

/* ---- HERO (secondary - shorter than landing hero) ---- */
.hero-secondary {
    position: relative;
    min-height: 60vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45)),
        url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}
.hero-secondary.seasonal-hero {
    background-image:
        linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4)),
        url('https://images.unsplash.com/photo-1473093295043-cdd812d0e601?q=80&w=2000');
}
.hero-secondary.blog-hero {
    background-image:
        linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45)),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2000');
}
.hero-secondary.contact-hero {
    background-image:
        linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45)),
        url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?q=80&w=2000');
}
.hero-secondary-content {
    max-width: 800px;
    animation: fadeUp 0.9s ease;
}
.hero-secondary h1 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}
.hero-secondary h1 span {
    color: var(--color-accent, #ffb703);
    font-style: italic;
}
.hero-secondary p {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 680px;
    margin: 0 auto 20px;
    line-height: 1.7;
}
.hero-logo-sm {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    margin-bottom: 18px;
}

/* ---- EYEBROW PILL ---- */
.eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,183,3,0.18);
    color: var(--color-accent, #ffb703);
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.hero-secondary .eyebrow {
    background: rgba(255,255,255,0.12);
    color: #ffd166;
    backdrop-filter: blur(6px);
}

/* ---- SECTION HEADING (centered intro pattern) ---- */
.section-heading {
    margin-bottom: 50px;
}
.section-heading h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--color-dark, #111);
}
.section-heading p {
    color: var(--color-muted, #666);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- SECTION BLOCKS ---- */
.section-block {
    padding: clamp(60px, 9vw, 110px) 0;
    background: #fff;
}
.section-block-light {
    padding: clamp(60px, 9vw, 110px) 0;
    background: var(--color-bg, #f8f9fa);
}

/* ---- BANNER CTA ---- */
.banner-cta {
    padding: clamp(70px, 10vw, 130px) 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.55)),
        url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?q=80&w=2000');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}
.banner-cta h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.banner-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* ---- SOCIAL SECTION ---- */
.social-section {
    padding: clamp(60px, 9vw, 110px) 0;
    background: #fff;
}
.social-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.social-card-link:hover { color: inherit; }

/* ---- BADGE (soft pill in video cards) ---- */
.badge-soft {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255,183,3,0.15);
    color: var(--color-accent-2, #ff7b00);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ---- MOBILE TUNE ---- */
@media (max-width: 767px) {
    .hero-secondary { min-height: 50vh; padding: 120px 0 60px; }
    .hero-logo-sm { width: 70px; height: 70px; }
    .section-heading { margin-bottom: 36px; }
    .banner-cta { padding: 70px 0; }
}
