
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary-text: #222222;
    --secondary-text: #555555;
    --bg-color: #ffffff;
    --border-color: #e5e5e5;
    --accent-red: #cc0000;
    --link-hover: #003366;
}

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--primary-text);
    background-color: var(--bg-color);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--link-hover);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Simple Header */
.simple-header {
    border-bottom: 1px solid var(--border-color);
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 1.2rem 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.simple-nav {
    display: flex;
    gap: 2rem;
}
.simple-nav a {
    font-size: 0.85rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}
.simple-nav a:hover, .simple-nav a.active {
    color: var(--accent-red);
}

/* Home Grid (3 Columns) */
.news-layout {
    display: grid;
    grid-template-columns: 2fr 4fr 2fr;
    gap: 30px;
    margin: 40px 0;
}

/* Columns */
.col-left, .col-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.col-center {
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    padding: 0 20px;
}

/* Articles */
.main-story {
    position: relative;
    transition: background-color 0.2s ease;
    padding: 10px;
    border-radius: 4px;
}
.main-story:hover {
    background-color: #f9f9f9;
}
.main-story a::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
}
.news-category-label {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.headline {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.3;
}
.headline-main {
    font-size: 2.2rem;
}
.headline-medium {
    font-size: 1.3rem;
}
.headline-small {
    font-size: 1rem;
}

.article-summary {
    color: var(--secondary-text);
    font-size: 1rem;
    margin-bottom: 15px;
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.sidebar-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    position: relative;
    transition: background-color 0.2s ease;
}
.sidebar-item:hover {
    background-color: #f9f9f9;
}
.sidebar-item a::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
}
.sidebar-item:last-child {
    border-bottom: none;
}

/* Blog List Layout */
.blog-list {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.blog-list-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
    position: relative;
    transition: background-color 0.2s ease;
}
.blog-list-item:hover {
    background-color: #f9f9f9;
}
.blog-list-item a::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
}
.blog-list-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Article Page Structure */
.article-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 15px;
}
.article-header {
    margin-bottom: 30px;
    text-align: center;
}
.article-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Merriweather', serif;
}
.article-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.article-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}
.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

/* Contact Page Layout */
.contact-hero {
    text-align: center;
    padding: 60px 15px 40px;
}
.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}
.contact-hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 80px;
    flex-wrap: wrap;
}
.contact-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.icon-circle {
    width: 60px;
    height: 60px;
    background: #fdf5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-red);
    font-size: 1.5rem;
}
.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.contact-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.simple-footer {
    border-top: 1px solid var(--border-color);
    background-color: #fff;
    padding: 30px 0;
    text-align: center;
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 992px) {
    .news-layout {
        grid-template-columns: 1fr;
    }
    .col-center {
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        padding: 20px 0;
    }
    .blog-list-item {
        grid-template-columns: 1fr;
    }
    .blog-list-item img {
        height: 250px;
    }
}

.article-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #111;
    font-family: 'Merriweather', serif;
}

.article-image {
    text-align: center;
    margin-bottom: 30px;
}
.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: inline-block;
}

/* Hamburger & Mobile Nav */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .simple-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        border-bottom: 1px solid var(--border-color);
        padding: 10px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    .simple-nav.active {
        display: flex;
    }
    .simple-nav a {
        padding: 12px 20px;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    .simple-nav a:last-child {
        border-bottom: none;
    }
    .article-title {
        font-size: 2rem;
    }
    .contact-hero h1 {
        font-size: 2.2rem;
    }
}
