/* Import literarische Schriftarten */
/* === CINZEL === */
@font-face {
  font-family: 'Cinzel';
  src: url('assets/fonts/Cinzel/cinzel-v26-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel';
  src: url('assets/fonts/Cinzel/cinzel-v26-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel';
  src: url('assets/fonts/Cinzel/cinzel-v26-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel';
  src: url('assets/fonts/Cinzel/cinzel-v26-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === CRIMSON TEXT === */
@font-face {
  font-family: 'Crimson Text';
  src: url('assets/fonts/Crimson/crimson-text-v19-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Crimson Text';
  src: url('assets/fonts/Crimson/crimson-text-v19-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Crimson Text';
  src: url('assets/fonts/Crimson/crimson-text-v19-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Crimson Text';
  src: url('assets/fonts/Crimson/crimson-text-v19-latin-600italic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Crimson Text';
  src: url('assets/fonts/Crimson/crimson-text-v19-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Crimson Text';
  src: url('assets/fonts/Crimson/crimson-text-v19-latin-700italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}


:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #151515;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --blood-red: #8B0000;
    --blood-red-hover: #B22222;
    --border-color: #2a2a2a;
}

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

body {
    font-family: 'Crimson Text', serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 2px;
}

ul {
    color: var(--text-secondary);
    margin-left: 15px;
}

/* ========================================
   Top-Button
   ======================================== */

#topButton {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #8B0000; /* Dunkelrot */
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: none; /* Unsichtbar, bis man scrollt */
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

#topButton:hover {
  background-color: #a30000;
  transform: scale(1.1);
}

/* ========================================
   NAVIGATION - MOBILE FIRST
   ======================================== */

.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 24px;
    margin-top: 10px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.logo img:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

/* Hamburger Menu Button */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--blood-red);
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
    transition: right 0.4s ease;
    padding: 2rem;
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.nav-links.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
.nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
.nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
.nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    text-align: center;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--blood-red);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 2rem 1rem;
    background: center / cover no-repeat url('images/hero_background.webp');
    background-color: #000;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    animation: fadeInUp 1s ease;
}

.glitch {
    position: relative;
    color: var(--text-primary);
}

.glitch:hover {
    animation: glitch 0.3s ease;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.tagline {
    font-size: 1rem;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 90%;
    font-style: italic;
    animation: fadeInUp 1s ease 0.4s both;
    text-align: center;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 4px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--blood-red));
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(20px); }
}

/* ========================================
   CONTAINER
   ======================================== */

.container {
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}

/* ========================================
   SECTIONS
   ======================================== */

section {
    padding: 4rem 0;
    position: relative;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--blood-red);
    margin-bottom: 1rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    background: var(--bg-darker);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    max-width: 400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(139, 0, 0, 0.2));
    pointer-events: none;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.signature {
    margin-top: 2rem;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--blood-red);
}

/* ========================================
   BOOKS SECTION
   ======================================== */

.books {
    background: var(--bg-dark);
}

.books-main {
    background: var(--bg-darker);
}

.books-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.book-card {
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 200px;
}

.book-card:hover {
    transform: translateY(-10px);
}

.book-cover {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
    aspect-ratio: 2/3;
    background: var(--bg-darker);
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.book-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover .book-overlay {
    opacity: 1;
}

.book-card:hover .book-cover img {
    transform: scale(1.1);
}

.view-details {
    color: white;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.book-card h3 {
    font-size: 1.2rem;
}

.book-status {
    color: var(--text-secondary);
    font-style: italic;
}

.book-status.published {
    color: var(--blood-red);
}

.book-status.in-progress {
    color: var(--text-secondary);
}

/* ========================================
   ONE BOOK SECTION
   ======================================== */

.onebook {
    background: var(--bg-dark);
}

.onebook-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.onebook-card {
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 300px;
}

.onebook-cover {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
    aspect-ratio: 2/3;
    background: var(--bg-darker);
}

.onebook-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.onebook-metadata {
    color: var(--text-secondary)
}

.onebook-metadata h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.onebook-metadata table {
    text-align: left;
    border-spacing: 1rem;
}

.onebook-metadata tr:hover { 
  color: var(--text-primary);
}

.onebook-description {
    padding-top: 2rem;
    color: var(--text-secondary);
    max-width: 80%;
    margin: 0 auto;
    font-size: 1.1rem;
}

.onebook-description h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.onebook-status {
    padding-top: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1.1rem;
}

.onebook-status.published {
    color: var(--blood-red);
}

.onebook-status.in-progress {
    color: var(--text-secondary);
}

.onebook-description progress {
    width: 100px;
    height: 16px;
    margin-left: 1rem;
    background-color: var(--bg-card);
    border: 1px solid var(--text-secondary);
    border-radius: 5px;

}

.onebook-description progress::-webkit-progress-bar {
    background-color: var(--bg-card);
    border-radius: 3px;
}

.onebook-description progress::-webkit-progress-value {
    background-color: var(--blood-red);
    border-radius: 3px;
}

.onebook-description  progress::-moz-progress-bar {
    background-color: var(--blood-red);
    border-radius: 3px;
}


/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    background: var(--bg-darker);
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    width: 100%;
    max-width: 200px;
}

.social-link:hover {
    color: var(--blood-red);
    border-color: var(--blood-red);
    transform: translateY(-5px);
}

.social-link svg {
    width: 35px;
    height: 35px;
}

.goodbye-logo {
    text-align:center;
    margin-top: 5rem;
}

.goodbye-logo img {
    height: 200px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
}

.footer-image {
    display: block;
    margin: 0 auto 1.5rem auto; /* zentriert und Abstand nach unten */
    height: 200px;              /* feste Höhe */
    object-fit: contain;        /* proportional skalieren */
    position: relative;
    background-color: var(--bg-darker); /* verhindert "durchscheinen" */
}

.footer p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

/* ========================================
   BLOG PAGE
   ======================================== */

.blog-header {
    padding: 8rem 0 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

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

.blog-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    padding: 0 1rem;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.5rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--blood-red);
    color: white;
    border-color: var(--blood-red);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-card:hover {
    border-color: var(--blood-red);
    transform: translateY(-5px);
}

.blog-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-darker);
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(30%) brightness(0.8);
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

.blog-type-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--blood-red);
    color: white;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.blog-card .subtitle {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.blog-card .excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: auto;
    font-size: 0.95rem;
}

/* ========================================
   ARTICLE PAGE
   ======================================== */

.article-header {
    padding: 8rem 0 3rem;
    text-align: center;
    background: var(--bg-darker);
}

.featured-image-container {
    max-width: 100%;
    margin: 2rem auto;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.featured-image-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%) brightness(0.9);
}

.article-header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.article-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.article-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.article-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin: 2rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.article-content a {
    color: var(--blood-red);
    text-decoration: none;
    border-bottom: 1px solid var(--blood-red);
    transition: opacity 0.3s ease;
}

.article-content a:hover {
    opacity: 0.7;
}

.back-link {
    display: inline-block;
    color: var(--blood-red);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    padding: 0 1rem;
}

.back-link:hover {
    transform: translateX(-5px);
}






/* ============================================================================
   TABLET (601px - 1024px)
   ============================================================================ */

@media (min-width: 601px) {
    .container {
        padding: 0 2rem;
    }

    .logo img {
    height: 28px;
    }

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

    .tagline {
        font-size: 1.3rem;
        letter-spacing: 4px;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    section {
        padding: 6rem 0;
    }

    section h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .about-text p {
        font-size: 1.15rem;
    }

    .signature {
        font-size: 1.4rem;
    }

    .books-grid {
        gap: 2rem 5rem;
    }

    .book-card {
        width: 300px;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .blog-header h1 {
        font-size: 3rem;
    }

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

    .article-content {
        padding: 3rem 2rem;
    }
}






/* ======================================================================
   DESKTOP (1025px+)
   ====================================================================== */

@media (min-width: 1025px) {
    .hamburger {
        display: none;
    }

    .logo img {
    height: 38px;
    }

    /* Desktop Navigation */
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
        flex-direction: row;
        gap: 3rem;
        padding: 0;
    }

    .nav-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1rem;
    }

    .nav-links a::after {
        bottom: -5px;
    }

    .nav-container {
        padding: 1.5rem 2rem;
    }

    .container {
        max-width: 1400px;
    }

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

    .tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.3rem;
        max-width: 600px;
    }

    section {
        padding: 8rem 0;
    }

    section h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    section h2::after {
        width: 100px;
        bottom: -15px;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        align-items: center;
    }

    .about-image {
        max-width: 500px;
    }

    .about-text p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .signature {
        margin-top: 3rem;
        font-size: 1.5rem;
    }

    .book-card {
        width: 300px;
    }

    .book-card h3 {
        font-size: 1.3rem;
    }

    .onebook-description {
        max-width: 70%;
    }

    .view-details {
        font-size: 1.1rem;
    }

    .social-links {
        gap: 3rem;
    }

    .social-link {
        padding: 2rem;
        min-width: 150px;
    }

    .social-link svg {
        width: 40px;
        height: 40px;
    }

    .blog-header {
        padding: 12rem 0 4rem;
    }

    .blog-header h1 {
        font-size: 4rem;
    }

    .blog-header p {
        font-size: 1.3rem;
    }

    .blog-filters {
        margin-bottom: 4rem;
    }

    .filter-btn {
        padding: 0.8rem 2rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .blog-card h3 {
        font-size: 1.5rem;
    }

    .article-header {
        padding: 12rem 0 4rem;
    }

    .featured-image-container {
        max-width: 1200px;
        margin: 2rem auto 3rem;
    }

    .article-header h1 {
        font-size: 3.5rem;
    }

    .article-header .subtitle {
        font-size: 1.5rem;
    }

    .article-meta {
        font-size: 1rem;
    }

    .article-content {
        max-width: 800px;
        padding: 4rem 2rem;
        font-size: 1.2rem;
    }

    .article-content h2,
    .article-content h3,
    .article-content h4 {
        margin: 3rem 0 1.5rem;
    }
}

/* ========================================
   NAVBAR SCROLL EFFECT
   ======================================== */

.main-nav.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
