/* ============================================
   PastaGuide — Świat Makaronu
   Warm Italian Pasta Blog Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS Custom Properties === */
:root {
    --primary: #C2582A;
    --primary-dark: #A04520;
    --primary-light: #D97B4A;
    --secondary: #5B7B3A;
    --secondary-dark: #3D5A25;
    --secondary-light: #7A9E55;
    --accent: #D4A843;
    --accent-light: #E6C46A;
    --warm-cream: #FDF6EE;
    --warm-beige: #F0E4D4;
    --warm-tan: #DCC8A8;
    --dark: #2A1F14;
    --dark-brown: #3B2816;
    --text: #3E2E20;
    --text-muted: #8C7560;
    --text-light: #B09B84;
    --white: #FFFFFF;
    --border: rgba(180, 150, 110, 0.22);
    --shadow-sm: 0 2px 8px rgba(42, 31, 20, 0.06);
    --shadow-md: 0 4px 20px rgba(42, 31, 20, 0.10);
    --shadow-lg: 0 8px 40px rgba(42, 31, 20, 0.15);
    --shadow-xl: 0 12px 60px rgba(42, 31, 20, 0.20);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1240px;
    --content-width: 800px;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--warm-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

/* === HEADER & NAVIGATION === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 246, 238, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
    border-radius: 2px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    border: 1px solid var(--border);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text);
    transition: all var(--transition);
}

.nav-dropdown-content a:hover {
    background: var(--warm-beige);
    color: var(--primary);
    padding-left: 1.8rem;
}

.nav-dropdown-content a::after {
    display: none;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    background: var(--warm-beige);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    gap: 0.5rem;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(194, 88, 42, 0.1);
}

.search-box input {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    width: 160px;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-light);
}

.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-muted);
    padding: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    padding: 5rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-beige) 50%, var(--warm-tan) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(194, 88, 42, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91, 123, 58, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 10s ease-in-out infinite reverse;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(194, 88, 42, 0.3);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 88, 42, 0.4);
    color: var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SECTION STYLES === */
.section-title {
    font-size: 2.2rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* === FEATURED GRID === */
.featured-section {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(194, 88, 42, 0.2);
}

.featured-card a img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover a img {
    transform: scale(1.08);
}

.featured-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
    width: fit-content;
}

.featured-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.featured-card h3 a {
    color: var(--dark);
    transition: color var(--transition);
}

.featured-card h3 a:hover {
    color: var(--primary);
}

.featured-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* === ARTICLES GRID (archive / latest) === */
.latest-section,
.articles-section {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(194, 88, 42, 0.2);
}

.article-card a img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover a img {
    transform: scale(1.08);
}

.article-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.article-card h3 a {
    color: var(--dark);
    transition: color var(--transition);
}

.article-card h3 a:hover {
    color: var(--primary);
}

.article-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(194, 88, 42, 0.3);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 88, 42, 0.4);
    color: var(--white);
}

/* === NEWSLETTER === */
.newsletter-section {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-brown) 100%);
    padding: 3.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(194, 88, 42, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-box h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    position: relative;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0.8rem;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

/* === MAP SECTION === */
.map-section {
    padding: 3rem 2rem 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* === ARTICLE PAGE === */
.article-page {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs .separator {
    color: var(--text-light);
}

.article-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.article-header .category-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-size: 2.6rem;
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.article-hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
}

.article-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Author Box */
.author-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 2.5rem;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* TOC */
.toc {
    background: var(--warm-beige);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary);
}

.toc h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.toc ul {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 0.4rem;
}

.toc a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.toc a:hover {
    color: var(--primary);
    padding-left: 0.3rem;
}

/* Article Content */
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.article-content h2 {
    font-size: 1.7rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--warm-beige);
}

.article-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.8rem;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 1.2rem 1.5rem;
    margin: 2rem 0;
    background: var(--warm-beige);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.article-content strong {
    color: var(--dark);
}

/* Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Recipe Card */
.recipe-card {
    background: var(--white);
    border: 2px solid var(--accent);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: var(--shadow-sm);
}

.recipe-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-align: center;
}

.recipe-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.recipe-meta-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.recipe-meta-item .icon {
    font-size: 1.4rem;
}

.recipe-meta-item .label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.recipe-meta-item .value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.recipe-card h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary);
}

.ingredients-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.ingredients-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.ingredients-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: 700;
}

.instructions-list {
    padding-left: 1.5rem;
}

.instructions-list li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    font-size: 0.95rem;
}

.instructions-list li::marker {
    color: var(--primary);
    font-weight: 700;
}

/* Disclaimer */
.disclaimer {
    background: var(--warm-beige);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 2rem 0;
}

.updated-date {
    font-size: 0.82rem;
    color: var(--text-light);
    text-align: right;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform var(--transition);
    font-weight: 300;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all var(--transition);
}

.share-btn.facebook {
    background: #1877F2;
    color: var(--white);
}

.share-btn.twitter {
    background: #1DA1F2;
    color: var(--white);
}

.share-btn.pinterest {
    background: #E60023;
    color: var(--white);
}

.share-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* Related Articles */
.related-articles {
    margin: 3rem 0;
}

.related-articles h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card-body {
    padding: 1rem;
}

.related-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.related-card h4 a {
    color: var(--dark);
}

.related-card h4 a:hover {
    color: var(--primary);
}

.related-card .meta {
    font-size: 0.78rem;
}

/* Comments Section */
.comments-section {
    margin: 3rem 0;
}

.comments-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.comment {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.comment-body {
    flex: 1;
}

.comment-body h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.comment-body .date {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.comment-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(194, 88, 42, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.success-msg {
    padding: 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
}

/* === FOOTER === */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 0;
    margin-top: 4rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.3rem;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* === COOKIE NOTICE === */
.cookie-notice {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 9999;
    transition: bottom 0.5s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-notice.show {
    bottom: 0;
}

.cookie-notice p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-notice a {
    color: var(--accent);
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.cookie-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--warm-cream);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 1000;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav a {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }

    .nav-dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
        opacity: 1;
        visibility: visible;
    }

    .search-box {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .featured-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .newsletter-box {
        padding: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-hero-image img {
        height: 250px;
    }

    .recipe-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ingredients-list {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .cookie-notice {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .recipe-meta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* === ARCHIVE PAGE === */
.archive-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-beige) 100%);
}

.archive-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

.archive-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* === CATEGORIES SECTION === */
.categories-section {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.2rem;
}

.category-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.cat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.category-card h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.category-card p {
    font-size: 0.85rem;
    opacity: 0.85;
}