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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf8f5;
}

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

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo h1 {
    color: #fff;
    font-size: 1.5rem;
}

.nav-logo i {
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-link:hover, .nav-link.active {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accept {
    background: #8B4513;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.btn-settings, .btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dfd3 100%);
    padding: 80px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #5D4037;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #8B4513;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(139,69,19,0.3);
}

.hero-image img {
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Main Article */
.main-article {
    padding: 60px 0;
    background: #fff;
}

.featured-article {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.featured-badge {
    display: inline-block;
    background: #FFA000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.featured-article h2 {
    font-size: 2rem;
    color: #5D4037;
    margin-bottom: 15px;
}

.article-meta {
    color: #888;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.article-meta i {
    margin-right: 5px;
}

.article-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
}

.article-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

.article-text p {
    margin-bottom: 15px;
}

/* Articles Section */
.articles-section {
    padding: 60px 0;
    background: #f5f0e8;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #5D4037;
    margin-bottom: 40px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
}

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

.card-content {
    padding: 25px;
}

.card-badge {
    display: inline-block;
    background: #FFA000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.card-content h3 {
    color: #5D4037;
    margin-bottom: 10px;
}

.card-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.read-more {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    text-align: center;
    padding: 30px;
    background: #f5f0e8;
    border-radius: 15px;
}

.info-card i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #5D4037;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
}

/* Disclaimer */
.disclaimer-section {
    padding: 40px 0;
    background: #f5f0e8;
}

.disclaimer-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #8B4513;
}

.disclaimer-box p {
    color: #666;
    font-size: 0.9rem;
}

.disclaimer-inline {
    background: #fff8e1;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #FFA000;
}

/* Footer */
.footer {
    background: #5D4037;
    color: #fff;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
}

.footer-links h4 {
    margin-bottom: 15px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

/* Article Page */
.article-page {
    padding: 40px 0;
    background: #f5f0e8;
}

.breadcrumb {
    margin-bottom: 30px;
    color: #888;
}

.breadcrumb a {
    color: #8B4513;
    text-decoration: none;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 0.8rem;
}

.full-article {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.article-header {
    margin-bottom: 30px;
}

.article-category {
    display: inline-block;
    background: #f5f0e8;
    color: #8B4513;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 2rem;
    color: #5D4037;
    margin-bottom: 15px;
}

.article-body {
    font-size: 1.1rem;
    color: #444;
}

.article-intro {
    margin-bottom: 30px;
}

.lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.recipe-section {
    margin-bottom: 40px;
}

.recipe-section h2 {
    color: #5D4037;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recipe-section h2 i {
    color: #8B4513;
}

.ingredients-box {
    background: #f5f0e8;
    padding: 25px;
    border-radius: 10px;
}

.ingredients-list {
    list-style: none;
}

.ingredients-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.ingredients-list li:last-child {
    border-bottom: none;
}

.ingredients-list i {
    color: #8B4513;
    margin-right: 10px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #8B4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #5D4037;
    margin-bottom: 5px;
}

.tips-box {
    background: #fff8e1;
    padding: 25px;
    border-radius: 10px;
}

.tips-box ul {
    list-style: none;
}

.tips-box li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tips-box li:last-child {
    border-bottom: none;
}

.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.back-btn {
    display: inline-block;
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
}

.back-btn i {
    margin-right: 10px;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    background: #f5f0e8;
}

.legal-page h1 {
    color: #5D4037;
    margin-bottom: 40px;
    text-align: center;
}

.legal-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.legal-section h2 {
    color: #5D4037;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 20px;
    margin-top: 10px;
}

.legal-section li {
    margin-bottom: 8px;
}

.contact-info {
    background: #f5f0e8;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: #8B4513;
    margin-right: 10px;
    width: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #8B4513;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-image img {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
