/* ============================================
   DAILY PROPHET PORTFOLIO - CSS STYLES
   A Harry Potter Themed Portfolio Website
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Color Palette - Dark Serious Newspaper Theme */
    --parchment-bg: #d4b896;
    --parchment-dark: #c4a57b;
    --ink-black: #000000;
    --ink-brown: #1a0f08;
    --sepia-text: #000000;
    --border-gold: #6d5d47;
    --accent-red: #8b0000;
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --highlight-gold: #9d8560;
    
    /* Typography */
    --font-headline: 'Cinzel', serif;
    --font-body: 'IM Fell English', serif;
    --font-decorative: 'Pirata One', cursive;
    
    /* Spacing */
    --section-padding: 2rem;
    --card-padding: 1rem;
    --column-gap: 1.5rem;
}

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 60px;
}

body {
    font-family: var(--font-body);
    background: #1a1410;
    color: var(--ink-black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    font-size: 14px;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><text x="0" y="20" font-size="20">🪄</text></svg>'), auto;

/* ===== MUSIC PLAYER ===== */
.music-player {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9999;
}

.music-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
    border: 2px solid #c9a961;
    color: #c9a961;
    padding: 0.6rem 0.8rem;
    border-radius: 15px;
    cursor: pointer;
    font-family: var(--font-headline);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3), 
                0 0 10px rgba(201, 169, 97, 0.15);
    transition: all 0.3s ease;
    min-width: 70px;
    text-align: center;
}

.music-toggle:hover {
    background: linear-gradient(135deg, #3d2415 0%, #2a1610 100%);
    box-shadow: 0 10px 35px rgba(201, 169, 97, 0.6),
                0 0 30px rgba(201, 169, 97, 0.3);
    transform: translateY(-3px) scale(1.05);
    border-color: #d4b896;
}

.music-toggle:active {
    transform: translateY(-1px) scale(1.02);
}

.music-icon {
    font-size: 1.8rem;
    display: block;
    filter: drop-shadow(0 2px 5px rgba(201, 169, 97, 0.5));
}

.music-toggle:not(.playing) .music-icon {
    animation: owl-hover 3s ease-in-out infinite;
}

.music-toggle.playing .music-icon {
    animation: owl-dance 0.6s ease-in-out infinite;
}

@keyframes owl-hover {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-5px) rotate(-5deg); 
    }
    75% { 
        transform: translateY(-3px) rotate(5deg); 
    }
}

@keyframes owl-dance {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    25% { 
        transform: translateY(-8px) scale(1.1) rotate(-10deg); 
    }
    75% { 
        transform: translateY(-8px) scale(1.1) rotate(10deg); 
    }
}

.music-status {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c9a961;
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    .music-player {
        bottom: 1.5rem;
        left: 1.5rem;
    }
    
    .music-toggle {
        padding: 1rem 1.2rem;
        min-width: 90px;
    }
    
    .music-icon {
        font-size: 2.5rem;
    }
    
    .music-status {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, #0a0806 100%);
    pointer-events: none;
    z-index: 0;
}

a, button, .nav-link, .project-card, .nav-card {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><text x="0" y="20" font-size="20">✨</text></svg>'), pointer;
}

/* ===== MAGICAL BACKGROUND PARTICLES ===== */
.magical-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--ink-brown);
    border-radius: 50%;
    opacity: 0.2;
    animation: float-particle 20s infinite;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) scale(0.5);
        opacity: 0;
    }
}



/* ===== NEWSPAPER WRAPPER ===== */
.newspaper-wrapper {
    max-width: 1200px;
    margin: 1.5rem auto;
    background: #d4b896;
    box-shadow: 
        0 10px 50px var(--shadow-dark),
        inset 0 0 100px rgba(101, 67, 33, 0.3),
        inset 0 0 200px rgba(101, 67, 33, 0.1);
    position: relative;
    z-index: 2;
    border: none;
    padding: 0;
    background-image: 
        radial-gradient(ellipse 180px 220px at 22% 18%, rgba(101, 67, 33, 0.12) 0%, rgba(101, 67, 33, 0.06) 40%, transparent 70%),
        radial-gradient(ellipse 200px 160px at 78% 15%, rgba(101, 67, 33, 0.1) 0%, rgba(101, 67, 33, 0.04) 40%, transparent 70%),
        radial-gradient(ellipse 150px 200px at 35% 65%, rgba(101, 67, 33, 0.08) 0%, rgba(101, 67, 33, 0.03) 40%, transparent 70%),
        radial-gradient(ellipse 190px 170px at 88% 72%, rgba(101, 67, 33, 0.11) 0%, rgba(101, 67, 33, 0.05) 40%, transparent 70%),
        radial-gradient(ellipse 140px 180px at 8% 88%, rgba(101, 67, 33, 0.09) 0%, rgba(101, 67, 33, 0.04) 40%, transparent 70%),
        radial-gradient(ellipse 170px 150px at 62% 92%, rgba(101, 67, 33, 0.1) 0%, rgba(101, 67, 33, 0.04) 40%, transparent 70%),
        radial-gradient(circle 100px at 28% 42%, rgba(139, 90, 43, 0.07) 0%, transparent 60%),
        radial-gradient(circle 90px at 72% 58%, rgba(139, 90, 43, 0.06) 0%, transparent 60%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 3px,
            rgba(101, 67, 33, 0.015) 3px,
            rgba(101, 67, 33, 0.015) 6px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 3px,
            rgba(101, 67, 33, 0.015) 3px,
            rgba(101, 67, 33, 0.015) 6px
        ),
        linear-gradient(to right, rgba(101, 67, 33, 0.25) 0%, transparent 8%, transparent 92%, rgba(101, 67, 33, 0.25) 100%),
        linear-gradient(to bottom, rgba(101, 67, 33, 0.25) 0%, transparent 8%, transparent 92%, rgba(101, 67, 33, 0.25) 100%);
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%;
    filter: contrast(1.1);
}

.newspaper-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(0,0,0,0.4) 0%, transparent 30%),
        radial-gradient(ellipse at 100% 0%, rgba(0,0,0,0.4) 0%, transparent 30%),
        radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.4) 0%, transparent 30%),
        radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.4) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.newspaper-wrapper > * {
    position: relative;
    z-index: 2;
}

/* ===== TOP BAR ===== */
.top-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    padding: 0.4rem 1.5rem;
    background: var(--ink-black);
    color: #c9a961;
    font-size: 0.6rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 3px double var(--ink-black);
}

.top-left {
    text-align: left;
    line-height: 1.3;
}

.top-center {
    text-align: center;
    white-space: nowrap;
}

.top-right {
    text-align: right;
}

/* ===== MASTHEAD / HEADER ===== */
.masthead {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 3px solid var(--ink-black);
    background: var(--parchment-bg);
    gap: 2rem;
}

.heraldic-crest {
    width: 80px;
    height: auto;
}

.heraldic-crest svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

.masthead-center {
    text-align: center;
}

.header-decoration {
    color: var(--border-gold);
    font-size: 1.5rem;
    letter-spacing: 2rem;
    margin: 0.5rem 0;
}

.newspaper-title {
    font-family: var(--font-decorative);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--ink-black);
    letter-spacing: 0.15em;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

.newspaper-subtitle {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--ink-black);
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.date-edition {
    margin: 0.5rem 0 0;
    font-size: 0.75rem;
    color: var(--ink-black);
    font-weight: bold;
}

.separator-line {
    height: 2px;
    background: var(--ink-black);
    margin: 0;
}

/* ===== NAVIGATION MENU ===== */
.newspaper-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 1rem;
    background: var(--ink-black);
    border-bottom: 3px solid var(--ink-black);
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.nav-link {
    color: var(--parchment-bg);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    background: var(--highlight-gold);
    color: var(--ink-black);
}

.nav-separator {
    color: var(--parchment-bg);
    opacity: 0.5;
}

/* ===== BREAKING NEWS BANNER ===== */
.breaking-banner {
    background: var(--accent-red);
    color: #ffffff;
    text-align: center;
    padding: 0.6rem;
    margin: 0;
    border-top: 2px solid var(--ink-black);
    border-bottom: 2px solid var(--ink-black);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.breaking-text {
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ===== FEATURE ARTICLE / HERO SECTION ===== */
.feature-article {
    margin: 0;
    padding: 2rem;
}

.main-headline {
    font-family: var(--font-headline);
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    color: var(--ink-black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 1.5rem 0 0.5rem;
    line-height: 0.95;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.main-subheadline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-align: center;
    color: var(--ink-black);
    margin-bottom: 2rem;
    font-style: italic;
    border-bottom: 2px solid var(--ink-black);
    padding-bottom: 1rem;
}

/* ===== NEWSPAPER COLUMNS ===== */
.newspaper-columns {
    margin: 2rem 0;
}

.column-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--column-gap);
    column-rule: 1px solid var(--ink-black);
}

.news-column {
    font-size: 0.9rem;
    text-align: justify;
    line-height: 1.5;
}

.news-column p {
    margin-bottom: 0.8rem;
}

.center-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.animate-text {
    animation: text-reveal 2s ease-out;
}

@keyframes text-reveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subheadline {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    color: var(--ink-brown);
    margin-bottom: 2rem;
}

.article-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* ===== FEATURE PHOTO ===== */
.feature-photo {
    margin: 0;
}

.photo-frame {
    border: 4px solid var(--ink-black);
    background: var(--ink-black);
    padding: 4px;
    box-shadow: 0 5px 20px var(--shadow-dark);
    position: relative;
}

.main-portrait {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(1.2) brightness(0.9);
}

.moving-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.photo-frame:hover .portrait {
    transform: scale(1.05);
}

.photo-caption {
    text-align: center;
    font-size: 0.75rem;
    font-style: italic;
    margin-top: 0.5rem;
    color: var(--ink-black);
    padding: 0.5rem;
    background: var(--parchment-bg);
    line-height: 1.3;
}

/* ===== ARTICLE TEXT WITH DROP CAP ===== */
.article-text p {
    margin-bottom: 1rem;
    text-align: justify;
    columns: 1;
}

.drop-cap {
    position: relative;
}

.first-letter {
    float: left;
    font-size: 3.5rem;
    line-height: 2.8rem;
    font-weight: bold;
    margin: 0 0.3rem 0 0;
    color: var(--ink-black);
    font-family: var(--font-headline);
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
    height: 3px;
    background: var(--ink-black);
    margin: 2rem 0;
}

.article-section {
    padding: 0 2rem 2rem;
}

.feature-article {
    padding: 2rem;
}

/* ===== SECTION HEADLINES ===== */
.section-headline {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--ink-black);
    text-transform: uppercase;
    margin: 1rem 0 0.5rem;
    line-height: 1.1;
    letter-spacing: 0.05em;
}

.section-subheadline {
    font-size: 1rem;
    font-style: italic;
    text-align: center;
    color: var(--ink-black);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ink-black);
}

.inline-headline {
    font-family: var(--font-headline);
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 1rem 0 0.5rem;
    display: block;
}

.continued-text {
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: right;
}

.article-subtitle {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--ink-brown);
    padding-bottom: 0.3rem;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.column p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* ===== NEWSPAPER LIST ===== */
.newspaper-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.newspaper-list li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.newspaper-list li:before {
    content: '';
    margin-right: 0.5rem;
}

/* ===== QUICK LINKS / PAGE NAVIGATION CARDS ===== */
.quick-links-section {
    padding: 2rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.page-nav-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.nav-card {
    background: var(--parchment-dark);
    border: 3px solid var(--ink-black);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px var(--shadow-dark);
    text-align: center;
    cursor: pointer;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    background: var(--ink-black);
    color: var(--parchment-bg);
    border-color: var(--highlight-gold);
}

.nav-card:hover .nav-card-title,
.nav-card:hover .nav-card-desc,
.nav-card:hover .read-more {
    color: var(--parchment-bg);
}

.nav-card:hover .read-more {
    border-color: var(--highlight-gold);
}

.nav-card-title {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--ink-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-card-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.read-more {
    font-weight: bold;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    padding: 0.5rem 0;
    border-top: 2px solid var(--ink-black);
}

/* ===== PROJECTS GRID ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card {
    background: var(--parchment-dark);
    border: 2px solid var(--ink-brown);
    border-radius: 5px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px var(--shadow-dark);
    cursor: pointer;
}

.moving-card {
    animation: card-float 6s ease-in-out infinite;
}

.moving-card:nth-child(2) {
    animation-delay: 1s;
}

.moving-card:nth-child(3) {
    animation-delay: 2s;
}

.moving-card:nth-child(4) {
    animation-delay: 3s;
}

@keyframes card-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.project-link:hover .project-card {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px var(--shadow-dark);
    border-color: var(--highlight-gold);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--ink-brown);
    color: var(--parchment-bg);
}

.project-title {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    margin: 0;
}

.project-badge {
    background: var(--accent-red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%);
    transition: all 0.4s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.view-details {
    color: var(--highlight-gold);
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-description {
    padding: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-tech {
    padding: 0 1rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    background: var(--border-gold);
    color: var(--ink-black);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-gold);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '✦';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent-red);
    border: 3px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    z-index: 1;
}

.timeline-date {
    text-align: right;
    font-weight: bold;
    color: var(--accent-red);
    font-size: 1.2rem;
    padding-right: 2rem;
}

.timeline-content {
    padding-left: 2rem;
}

.timeline-content h4 {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    color: var(--ink-black);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--parchment-dark);
    border: 2px solid var(--border-gold);
    border-radius: 5px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 3px 10px var(--shadow-dark);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-mark {
    font-size: 4rem;
    color: var(--border-gold);
    line-height: 0.5;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    text-align: right;
    color: var(--accent-red);
    font-weight: bold;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--parchment-dark);
    border: 1px solid var(--ink-brown);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--border-gold);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
}

.contact-method h4 {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--ink-black);
}

.contact-method a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--ink-black);
}

/* ===== CONTACT FORM ===== */
.owl-post-form {
    background: var(--parchment-dark);
    padding: 2rem;
    border: 2px solid var(--ink-brown);
    border-radius: 5px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-headline);
    font-size: 1rem;
    color: var(--ink-black);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--ink-brown);
    border-radius: 3px;
    background: var(--parchment-bg);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--sepia-text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--border-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.send-owl-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-red);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: var(--font-headline);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.send-owl-btn:hover {
    background: var(--ink-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.owl-icon {
    font-size: 1.5rem;
    animation: owl-bounce 1s infinite;
}

@keyframes owl-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ===== FOOTER ===== */
.newspaper-footer {
    text-align: center;
    padding: 2rem;
    border-top: 3px double var(--border-gold);
    background: linear-gradient(to top, var(--parchment-dark), var(--parchment-bg));
}

.footer-decoration {
    color: var(--border-gold);
    font-size: 1.2rem;
    letter-spacing: 2rem;
    margin: 0.5rem 0;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--ink-brown);
    margin: 1rem 0;
}

.footer-disclaimer {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--ink-brown);
    opacity: 0.7;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    color: white;
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 3px 10px var(--shadow-dark);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--ink-black);
    transform: translateY(-5px);
}

/* ===== TWO-COLUMN PROJECT LAYOUT ===== */
.projects-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* Left Sidebar */
.projects-sidebar {
    background: rgba(0, 0, 0, 0.03);
    padding: 1.5rem;
    border-right: 2px solid var(--border-gold);
    border-radius: 5px;
    position: sticky;
    top: 80px;
    align-self: start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-family: var(--font-headline);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-black);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 0.5rem;
}

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

.project-list-item {
    padding: 0.7rem 0.5rem;
    margin-bottom: 0.3rem;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 3px;
    transition: all 0.2s ease;
    color: #333;
}

.project-list-item:hover {
    background: rgba(139, 0, 0, 0.1);
    color: var(--accent-red);
    transform: translateX(5px);
}

.project-list-item.active {
    background: var(--accent-red);
    color: var(--parchment-bg);
    font-weight: 600;
}

/* Right Content Area */
.project-content {
    min-height: 500px;
}

.project-detail {
    display: none;
    animation: fadeIn 0.3s ease;
}

.project-detail.active {
    display: block;
}

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

.project-date {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.project-detail-title {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink-black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.project-about {
    margin: 2rem 0;
}

.project-about h4 {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ink-black);
}

.project-about p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
    color: #2a2a2a;
}

.project-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.badge-featured,
.badge-category {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-featured {
    background: var(--accent-red);
    color: white;
}

.badge-category {
    background: var(--border-gold);
    color: var(--ink-black);
}

.project-meta {
    background: rgba(0, 0, 0, 0.03);
    padding: 1.5rem;
    border-left: 3px solid var(--accent-red);
    margin: 2rem 0;
    border-radius: 3px;
}

.meta-item {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item strong {
    font-weight: 700;
    color: var(--ink-black);
}

.project-links {
    margin-top: 2rem;
}

.btn-link {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--accent-red);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background: var(--ink-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .newspaper-title {
        font-size: 4rem;
    }
    
    .headline {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .column-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .masthead {
        grid-template-columns: 60px 1fr 60px;
        padding: 1rem;
        gap: 1rem;
    }
    
    .heraldic-crest {
        width: 50px;
    }
    
    .newspaper-title {
        font-size: 3rem;
    }
    
    .main-headline {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 3rem;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .projects-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-sidebar {
        position: static;
        max-height: none;
        border-right: none;
        border-bottom: 2px solid var(--border-gold);
    }
    
    .timeline-item::before {
        left: 0;
    }
    
    .timeline-date {
        text-align: left;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        padding-left: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .newspaper-wrapper {
        margin: 0.5rem;
    }
    
    .feature-article,
    .article-section {
        padding: 1rem;
    }
    
    .top-bar {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding: 0.5rem;
        text-align: center;
    }
    
    .newspaper-nav {
        flex-wrap: wrap;
        padding: 0.5rem;
        gap: 0.3rem;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
    
    .nav-separator {
        display: none;
    }
    
    .top-left,
    .top-right {
        text-align: center;
    }
    
    .masthead {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .heraldic-crest {
        display: none;
    }
    
    .newspaper-title {
        font-size: 2.5rem;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .section-headline {
        font-size: 1.8rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .newspaper-title {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }
    
    .main-headline {
        font-size: 1.5rem;
    }
    
    .section-headline {
        font-size: 1.5rem;
    }
    
    .news-column {
        font-size: 0.85rem;
    }
}