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

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Simple Header */
.simple-header {
    border-bottom: 1px solid #eaeaea;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo .dot {
    color: #e31837;
}
.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: #e31837;
}

/* Typography for Headlines */
.headline-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

/* Hero Section */
.hero-section {
    margin: 2rem auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.hero-headline {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero-meta {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.hero-meta span {
    font-weight: 400;
    color: #555;
    margin-left: 10px;
}

.hero-excerpt {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

/* Home Grid (Below Hero) */
.home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    border-top: 2px solid #000;
    padding-top: 3rem;
}

.grid-article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.grid-article > a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.grid-article img {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.grid-article > a:hover img {
    transform: scale(1.05);
}

.grid-article .headline-serif {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-top: 0.5rem;
}

.grid-article .headline-serif a {
    transition: color 0.2s;
}

.grid-article .headline-serif a:hover {
    color: #e31837;
}

.grid-article .excerpt {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

.ad-placeholder {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.85rem;
}

/* Blog List Page */
.blog-header {
    border-bottom: 2px solid #000;
    padding-bottom: 1rem;
    margin: 2rem 0;
    font-size: 2rem;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-list-item {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 2rem;
}

.blog-list-item:last-child {
    border-bottom: none;
}

.blog-list-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-list-item .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.blog-list-item .tag {
    color: #e31837;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-hero {
    text-align: center;
    padding: 3rem 0;
}

.contact-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.contact-card {
    flex: 1;
    max-width: 400px;
    padding: 3rem 2rem;
    border: 1px solid #eaeaea;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.contact-card svg {
    width: 32px;
    height: 32px;
    stroke: #e31837;
    fill: none;
    margin-bottom: 1rem;
}

/* Article Page */
.article-header {
    max-width: 800px;
    margin: 3rem auto 2rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-image {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

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

.article-content {
    max-width: 700px;
    margin: 0 auto 5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
}

/* Simple Footer */
.simple-footer {
    background-color: #111;
    color: #fff;
    padding: 3rem 0;
    margin-top: 4rem;
}
.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
}
.footer-logo .dot {
    color: #e31837;
}
.footer-nav {
    display: flex;
    gap: 2rem;
}
.footer-nav a {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}
.footer-nav a:hover {
    color: #e31837;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #888;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
    .header-container {
        flex-wrap: wrap;
    }
    .hamburger {
        display: flex;
    }
    .simple-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding-top: 1rem;
        gap: 1.5rem;
    }
    .simple-nav.show-nav {
        display: flex;
    }
    .hero-section {
        grid-template-columns: 1fr;
    }
    .home-grid {
        grid-template-columns: 1fr;
    }
    .blog-list-item {
        grid-template-columns: 1fr;
    }
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}
