
:root {
    --primary: #ff6933;
    --secondary: #2D5016;
    --bg-light: #f8f6f5;
    --text-dark: #1d110c;
    --text-muted: #a15d45;
    --border-color: #f4eae6;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Header Styles */
a {
    text-decoration: none;
}
.navbar-custom {
    background-color: rgba(248, 246, 245, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    background-image: url('images/logo.png');
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--secondary);
    margin: 0;
}

.nav-link-custom {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem 0;
    margin: 0 1rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.search-box {
    background-color: var(--border-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    max-width: 320px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    padding: 0 0.5rem;
    font-size: 0.875rem;
}

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

.btn-subscribe {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    background-color: var(--primary);
    opacity: 0.9;
    transform: scale(1.02);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(45, 80, 22, 0.4), rgba(35, 20, 15, 0.8)),
                url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 520px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 48rem;
    z-index: 10;
}

.hero-badge {
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e5e7eb;
    font-weight: 500;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
    margin: 0.5rem;
}

.btn-hero-primary:hover {
    transform: scale(1.05);
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s;
    margin: 0.5rem;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Categories Section */
.categories-section {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.category-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(45, 80, 22, 0.1);
    color: var(--secondary);
    transition: all 0.3s;
}

.category-item:hover .category-icon {
    background-color: var(--primary);
    color: white;
}

.category-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Featured News Section */
.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.section-line {
    width: 6px;
    height: 2rem;
    background-color: var(--primary);
    border-radius: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    margin: 0;
}

.view-all-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.view-all-link:hover {
    gap: 0.75rem;
}

/* Article Cards */
.article-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s;
}

.article-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0.75rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.article-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.article-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    transition: color 0.3s;
    margin-bottom: 0.5rem;
}

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

.article-excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    margin-top: 0.5rem;
    transition: gap 0.3s;
}

.read-more-btn:hover {
    gap: 0.5rem;
    color: var(--secondary);
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--secondary);
    border-radius: 1rem;
    padding: 3rem;
    color: white;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-text {
    color: #d1d5db;
    font-size: 1rem;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    min-width: 280px;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary);
}

.btn-newsletter {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-newsletter:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    background-image: url('images/logo.png');
    width: 100px;
    height: 100px;
    display: flex;
    border-radius: 0.5rem;
    background-size: cover;
    background-position: center;
    background-color: var(--text-muted);
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0;
}

.footer-desc {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: #6b7280;
}

.footer-bottom a {
    color: #6b7280;
    text-decoration: none;
    margin: 0 0.75rem;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 991.98px) {
    .search-box {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .newsletter-section {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .nav-link-custom {
        margin: 0.5rem 0;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .newsletter-input {
        min-width: 100%;
    }
}
