@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,700&family=Inconsolata:wght@400;700&display=swap');

:root {
    /* Peach Fuzz Color Palette */
    --primary-color: #FFBE98; /* Peach Fuzz ana tonu */
    --secondary-color: #FFD4C2; /* Daha açık şeftali */
    --accent-color: #FFCAB0; /* Vurgu rengi olarak biraz daha doygun şeftali */
    --warm-beige: #FDEFE4; /* Narin sıcak zemin tonu */
    --cream: #FFF9F6; /* Çok açık krem */
    --sage-green: #BFD8C2; /* Nötrleştirici yumuşak yeşil */
    --soft-brown: #B88B6A; /* Şeftali tonuyla uyumlu kahverengi */
    --charcoal: #3C3C3C; /* Metin rengi için nötr koyu ton */

    /* Background Colors */
    --bg-primary: #FFF9F6;
    --bg-secondary: #FDEFE4;
    --bg-accent: #FFFFFF;
    --card-bg: #FFFFFF;
    --surface-bg: #FFF3EB;

    /* Text Colors */
    --text-primary: #3C3C3C;
    --text-secondary: #6B6B6B;
    --text-muted: #A87D67;
    --text-light: #FFFFFF;

    /* Border & Shadow */
    --border-color: #F3D6C7;
    --border-light: #F9E3D9;
    --shadow-soft: 0 4px 20px rgba(255, 190, 152, 0.08);
    --shadow-medium: 0 8px 30px rgba(255, 190, 152, 0.12);
    --shadow-strong: 0 12px 40px rgba(255, 190, 152, 0.15);

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #FFBE98 0%, #FFD4C2 100%);
    --secondary-gradient: linear-gradient(135deg, #BFD8C2 0%, #FFD4C2 100%);
    --warm-gradient: linear-gradient(135deg, #FDEFE4 0%, #FFF9F6 100%);
}


/* ===== GLOBAL RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Inconsolata', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bodoni Moda', serif;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {  font-family: 'Bodoni Moda', serif;

    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

a {  font-family: 'Bodoni Moda', serif;

    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ===== CONTAINER & LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===== HEADER STYLES ===== */
.main-header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.header-top {
    background: var(--primary-gradient);
    padding: 0.75rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-quote {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    position: relative;
    z-index: 1;
    font-family: 'Crimson Text', serif;
}

.header-quote i {
    margin-right: 0.5rem;
    opacity: 0.8;
}

.main-nav {
    padding: 1.5rem 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
  font-family: 'Bodoni Moda', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}



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

    .nav-actions {
        display: flex;
    margin-left: auto;
    gap: 1rem;
    }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--surface-bg);
    color: var(--primary-color);
}

/* Hide mobile elements on desktop */
.menu-close-btn {
    display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .menu-close-btn {
        display: block;
        position: absolute;
        top: 2rem;
        right: 2rem;
        list-style: none;
    }
    
    .close-menu {
        background: var(--surface-bg);
        border: 1px solid var(--border-color);
        color: var(--text-primary);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .close-menu:hover {
        background: var(--primary-color);
        color: var(--text-light);
        transform: scale(1.1);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--card-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 9999;
        box-shadow: var(--shadow-strong);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu a {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        border-radius: 12px;
        background: var(--surface-bg);
        min-width: 200px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: var(--primary-gradient);
        color: var(--text-light);
        transform: translateY(-2px);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--warm-gradient);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('/images/slider.jpg') no-repeat center center;
    background-size: cover;   /* <-- En 繹nemli sat覺r */
    opacity: 0.3;
    z-index: 1;
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(139, 115, 85, 0.1);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-family: 'Crimson Text', serif;
    font-style: italic;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    border: 2px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: var(--text-light);
}

.hero-cta:nth-child(2) {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-cta:nth-child(2):hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* ===== SECTIONS ===== */
.blog-section {
    padding: 5rem 0;
}

.blog-section:nth-child(even) {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-family: 'Crimson Text', serif;
    font-style: italic;
    line-height: 1.6;
}

/* ===== GRID SYSTEM ===== */
.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

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

/* ===== CARD STYLES ===== */
.card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    cursor: pointer;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(139, 115, 85, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.card:hover::before {
    opacity: 1;
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--surface-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.1));
}

.card-content {
    padding: 2rem;
}

.card-category {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--primary-color);
}

.card-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.card-date,
.card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===== FEATURED POST ===== */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.featured-image {
    height: 350px;
    overflow: hidden;
    background: var(--surface-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 115, 85, 0.1) 0%, transparent 50%);
}

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-category {
    display: inline-block;
    background: var(--secondary-gradient);
    color: var(--text-light);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.featured-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .featured-post {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-content {
        padding: 2rem;
}

    .featured-title {
        font-size: 1.8rem;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--text-light);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: var(--text-light);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--text-light);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* ===== SEARCH & FILTER ===== */
.search-filter-section {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.search-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    flex: 1;
    background: var(--surface-bg);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: var(--primary-gradient);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface-bg);
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--primary-gradient);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* ===== CATEGORIES FILTER ===== */
.categories-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: var(--shadow-soft);
}

.category-btn:hover {
    background: var(--primary-gradient);
    color: var(--text-light);
    transform: translateY(-2px);
    border-color: transparent;
}

.category-btn.active {
    background: var(--primary-gradient);
    color: var(--text-light);
    border-color: transparent;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 4rem 0 2rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    padding: 0 1rem;
    background: var(--card-bg);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    font-weight: 500;
    box-shadow: var(--shadow-soft);
}

.pagination a:hover,
.pagination a.active {
    background: var(--primary-gradient);
    color: var(--text-light);
    transform: translateY(-2px);
    border-color: transparent;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrain" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="40" r="0.3" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>') repeat;
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

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

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

/* ===== ARTICLE STYLES ===== */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.article-body {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    margin: 2.5rem 0 1.5rem;
    color: var(--text-primary);
}

.article-body p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.article-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
    background: var(--surface-bg);
    padding: 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
}

.article-image {
    margin: 3rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.breadcrumb-item {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: var(--secondary-color);
}

.breadcrumb-current {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: between; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
}
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.7rem; }
    
    .hero-title {
        font-size: 3rem;
}

    .section-title {
        font-size: 2.5rem;
}

    .featured-title {
        font-size: 1.8rem;
}

    .article-title {
        font-size: 2.5rem;
}

    .container {
        padding: 0 1rem;
}

    .blog-section {
        padding: 3rem 0;
}

    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.5rem; }

    .hero-title {
        font-size: 2.5rem;
}

    .section-title {
    font-size: 2rem;
}

    .hero-buttons {
    flex-direction: column;
    align-items: center;
}

    .search-form {
        flex-direction: column;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== SMOOTH SCROLLING & PERFORMANCE ===== */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
} 

/* ===== FOCUS STYLES ===== */
*:focus {
    outline: 3px solid rgba(139, 115, 85, 0.3);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 3px solid rgba(139, 115, 85, 0.3);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .main-header,
    .footer,
    .hero-buttons,
    .search-filter-section,
    .pagination {
        display: none;
}

    body {
        background: white;
        color: black;
}

    .card,
    .featured-post {
        box-shadow: none;
        border: 1px solid #ccc;
    }
} 