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

:root {
    --color-black: #1a1a1a;
    --color-white: #ffffff;
    --color-gray-light: #f5f5f5;
    --color-gray-medium: #666666;
    --color-gray-dark: #333333;
    --color-border: #e0e0e0;
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-serif);
    line-height: 1.7;
    color: var(--color-black);
    background: var(--color-white);
}
#logo_heading{
    font-family: 'UnifrakturMaguntia', cursive;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    height: 42px;        /* adjust if needed */
    width: auto;
    display: block;
}
.logo:hover {
    opacity: 0.7;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: background 0.3s;
    border-radius: 4px;
}

.menu-toggle:hover {
    background: var(--color-gray-light);
}

.hamburger {
    width: 28px;
    height: 2px;
    background: var(--color-black);
    transition: all 0.3s;
}

.menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.fullscreen-menu.active {
    transform: translateX(0);
}

.menu-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 32px;
    list-style: none;
}

.menu-list > li {
    margin-bottom: 24px;
}

.menu-list > li > a {
    font-size: 36px;
    font-weight: 300;
    color: var(--color-black);
    text-decoration: none;
    transition: font-weight 0.2s;
    display: inline-block;
}

.menu-list > li > a:hover {
    font-weight: 400;
}

.menu-categories {
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    margin-top: 24px;
}

.category-title {
    font-size: 20px;
    color: var(--color-gray-medium);
    display: block;
    margin-bottom: 16px;
}

.category-list {
    list-style: none;
    padding-left: 16px;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    font-size: 20px;
    color: var(--color-gray-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.category-list a:hover {
    color: var(--color-black);
}

/* Main Content */
main {
    padding-top: 73px;
}

/* Hero Section */
.hero {
    background: url(/assets/images/tempo.jpeg);
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s;
}

.hero:hover .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 64px;
    color: var(--color-white);
}

.hero-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-family: var(--font-sans);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 800px;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 16px;
    max-width: 700px;
}

.hero-meta {
    font-size: 14px;
    font-family: var(--font-sans);
}

/* Article Sections */
.articles-section {
    padding: 64px 0;
}

.archives-section {
    background: var(--color-gray-light);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.article-card {
    cursor: pointer;
}

.article-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    margin-bottom: 16px;
    transition: opacity 0.3s;
}

.article-card:hover .article-image {
    opacity: 0.9;
}

.article-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gray-medium);
    margin-bottom: 8px;
    font-family: var(--font-sans);
}

.article-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s;
}

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

.article-card-tagline {
    font-size: 16px;
    color: var(--color-gray-medium);
    margin-bottom: 12px;
    line-height: 1.5;
}

.article-card-meta {
    font-size: 13px;
    color: var(--color-gray-medium);
    font-family: var(--font-sans);
}

/* Magazine Section */
.magazine-section {
    padding: 64px 0;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.magazine-card {
    max-width: 320px;
}

.magazine-cover {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s;
}

.magazine-card:hover .magazine-cover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.magazine-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.magazine-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--color-black);
    padding: 12px 24px;
    background: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-sans);
    text-decoration: none;
    color: var(--color-black);
}

.magazine-btn:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Article Page */
.article-page {
    padding: 48px 0;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.back-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gray-medium);
    text-decoration: none;
    margin-bottom: 32px;
    display: inline-block;
    transition: color 0.3s;
    font-family: var(--font-sans);
}

.back-link:hover {
    color: var(--color-black);
}

.article-hero {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 32px;
}

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

.article-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-tagline {
    font-size: 20px;
    color: var(--color-gray-medium);
    font-weight: 300;
    margin-bottom: 16px;
}

.article-meta {
    font-size: 14px;
    color: var(--color-gray-medium);
    font-family: var(--font-sans);
}

.article-body {
    font-size: 19px;
    line-height: 1.8;
}

.first-paragraph::first-letter {
    font-size: 72px;
    font-weight: 700;
    float: left;
    line-height: 0.9;
    margin-right: 8px;
}

/* About Page */
.about-page {
    padding: 64px 0;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
}

.about-content {
    font-size: 18px;
    line-height: 1.8;
}

.about-intro {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-text {
    margin-bottom: 24px;
}

.about-mission,
.about-coverage {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.about-mission h3,
.about-coverage h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.about-coverage ul {
    list-style: none;
    padding-left: 0;
}

.about-coverage li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.about-coverage li::before {
    content: "→";
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 48px 0;
    margin-top: 64px;
    text-align: center;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
}

/* Category Page */
.category-page {
    padding: 64px 0;
}

.category-page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.category-description {
    font-size: 18px;
    color: var(--color-gray-medium);
    margin-bottom: 48px;
    max-width: 700px;
}

.no-articles {
    text-align: center;
    padding: 64px 0;
}

.no-articles p {
    font-size: 20px;
    color: var(--color-gray-medium);
    margin-bottom: 24px;
}

.back-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.back-btn:hover {
    background: #333333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-title {
        font-size: 36px;
    }

    .about-title {
        font-size: 36px;
    }

    .category-page-title {
        font-size: 36px;
    }

    .menu-list > li > a {
        font-size: 28px;
    }
}
#header_text_about {
    font-family: unifrakturmaguntia, cursive;
}
