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

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

body {
    background: #0a0a0a;
    font-family: 'Work Sans', sans-serif;
    color: #e8e8e8;
    line-height: 1.7;
}

/* ============================================
   NAVIGATION
============================================ */

.main-navigation {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 3px solid #c41e3a;
    padding: 30px 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 8px;
    color: #c41e3a;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.nav-tagline {
    font-size: 11px;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    color: #aaa;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #c41e3a;
}

.nav-link.active {
    color: #c41e3a;
}

.nav-link.disabled {
    color: #555;
    cursor: not-allowed;
}

/* ============================================
   HERO BANNER
============================================ */

.hero-banner {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    background: #c41e3a;
    color: #fff;
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 20px;
    color: #999;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURED STORY
============================================ */

.featured-story {
    padding: 80px 20px;
    background: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
    padding: 60px;
    border-left: 4px solid #c41e3a;
}

.featured-image {
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(196, 30, 58, 0.2) 0%, transparent 60%);
}

.image-credit {
    position: relative;
    z-index: 2;
    font-size: 11px;
    color: #666;
    letter-spacing: 1px;
}

.featured-text {
    padding: 20px;
}

.story-label {
    display: inline-block;
    background: #c41e3a;
    color: #fff;
    padding: 6px 16px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
}

.featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.featured-excerpt {
    font-size: 18px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 30px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #777;
    margin-bottom: 30px;
}

.meta-item {
    color: #888;
}

.meta-divider {
    color: #555;
}

.cta-button {
    display: inline-block;
    background: #c41e3a;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #fff;
    color: #c41e3a;
}

/* ============================================
   LATEST SECTION
============================================ */

.latest-section {
    padding: 80px 20px;
    background: #0f0f0f;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: #c41e3a;
    margin: 0 auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.story-card {
    background: #151515;
    padding: 40px;
    border-left: 3px solid #c41e3a;
    transition: all 0.3s;
}

.story-card:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
}

.story-category {
    display: inline-block;
    background: #2d2d2d;
    color: #c41e3a;
    padding: 5px 12px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.story-card p {
    font-size: 15px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 20px;
}

.coming-soon-badge {
    display: inline-block;
    background: #333;
    color: #777;
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ============================================
   QUOTE SECTION
============================================ */

.quote-section {
    padding: 80px 20px;
    background: #0a0a0a;
}

.quote-block {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px;
    border-left: 6px solid #c41e3a;
    text-align: center;
}

.quote-block blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px;
}

.quote-block cite {
    font-family: 'Work Sans', sans-serif;
    font-style: normal;
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

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

footer {
    background: #000;
    border-top: 3px solid #c41e3a;
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 6px;
    color: #c41e3a;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 12px;
    color: #666;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #c41e3a;
}

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid #222;
    color: #555;
    font-size: 11px;
    line-height: 1.6;
}

/* ============================================
   ABOUT PAGE
============================================ */

.about-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 3px solid #c41e3a;
}

.page-headline {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.page-subheadline {
    font-size: 20px;
    color: #999;
    font-style: italic;
}

.about-content-section {
    padding: 80px 20px;
    background: #0a0a0a;
}

.about-grid {
    max-width: 800px;
    margin: 0 auto;
}

.about-main {
    background: #151515;
    padding: 60px;
    border-left: 4px solid #c41e3a;
}

.content-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2d2d2d;
}

.content-heading:first-child {
    margin-top: 0;
}

.about-main p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.content-list li {
    font-size: 16px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.content-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #c41e3a;
    font-size: 18px;
}

.featured-callout {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 40px;
    margin: 30px 0;
    border-left: 3px solid #c41e3a;
}

.callout-label {
    display: inline-block;
    background: #c41e3a;
    color: #fff;
    padding: 6px 14px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-callout h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.featured-callout p {
    color: #aaa;
    margin-bottom: 20px;
}

.inline-link {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.inline-link:hover {
    color: #fff;
}

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

.article-page {
    background: #0a0a0a;
}

.article-header {
    margin-bottom: 0;
}

.article-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    display: flex;
    align-items: flex-end;
    padding: 60px;
    overflow: hidden;
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    opacity: 0.3;
}

.article-hero-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, #0a0a0a 0%, transparent 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.article-category {
    display: inline-block;
    background: #c41e3a;
    color: #fff;
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-headline {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.article-subheadline {
    font-size: 22px;
    color: #ccc;
    font-style: italic;
    line-height: 1.4;
}

.article-meta-bar {
    background: #151515;
    border-bottom: 1px solid #2d2d2d;
    padding: 20px;
}

.article-meta-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #888;
}

.article-body-section {
    padding: 80px 20px;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.article-content {
    max-width: 700px;
}

.article-content p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.9;
    margin-bottom: 25px;
}

.drop-cap::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: #c41e3a;
    float: left;
    line-height: 0.8;
    margin: 10px 10px 0 0;
}

.article-pullquote {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-left: 4px solid #c41e3a;
    padding: 40px;
    margin: 40px 0;
}

.article-pullquote p {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 0;
}

.article-image-break {
    margin: 60px 0;
}

.article-image-break .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    position: relative;
}

.image-caption {
    position: relative;
    z-index: 2;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* SIDEBAR */
.article-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-box {
    background: #151515;
    border-left: 3px solid #c41e3a;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-box.warning-box {
    background: #1a1a1a;
    border-left-color: #ff6b6b;
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2d2d2d;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2d2d2d;
}

.sidebar-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-list strong {
    color: #fff;
    font-weight: 600;
}

.sidebar-text {
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
}

/* SCENARIOS SECTION */
.scenarios-section {
    background: #0f0f0f;
    padding: 80px 20px;
    border-top: 3px solid #c41e3a;
}

.section-title-center {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.scenarios-intro {
    text-align: center;
    font-size: 18px;
    color: #999;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.scenario-card {
    background: #151515;
    padding: 35px;
    border-left: 3px solid #c41e3a;
    transition: all 0.3s;
    position: relative;
}

.scenario-card:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
}

.scenario-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #c41e3a;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 20px;
}

.scenario-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.scenario-card p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
}

/* SPOTIFY SECTION */
.spotify-full-section {
    background: #0a0a0a;
    padding: 80px 20px;
}

.spotify-description {
    text-align: center;
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
}

.spotify-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.spotify-embed {
    display: block;
    border-radius: 12px;
}

/* CLOSING SECTION */
.closing-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 80px 20px;
    text-align: center;
}

.closing-quote {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
    border: none;
    padding: 0;
    background: none;
}

.quote-source {
    font-family: 'Work Sans', sans-serif;
    font-style: normal;
    font-size: 16px;
    color: #888;
    letter-spacing: 1px;
}

/* ARTICLE FOOTER NAV */
.article-footer-nav {
    background: #151515;
    padding: 30px 20px;
    border-top: 1px solid #2d2d2d;
}

.back-to-home {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    display: inline-block;
}

.back-to-home:hover {
    color: #fff;
}

/* SITE FOOTER */
.site-footer {
    background: #000;
    border-top: 3px solid #c41e3a;
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.footer-note {
    font-size: 12px;
    color: #555;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c41e3a;
}

.footer-copyright {
    padding-top: 30px;
    border-top: 1px solid #222;
    color: #555;
    font-size: 12px;
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-logo {
        font-size: 36px;
    }
    
    .hero-headline {
        font-size: 48px;
    }
    
    .page-headline {
        font-size: 48px;
    }
    
    .article-headline {
        font-size: 42px;
    }
    
    .article-hero {
        height: 400px;
        padding: 40px 20px;
    }
    
    .article-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-sidebar {
        position: relative;
        top: 0;
    }
    
    .article-pullquote p {
        font-size: 22px;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .closing-quote {
        font-size: 28px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .featured-title {
        font-size: 36px;
    }
    
    .about-main {
        padding: 40px;
    }
    
    .content-heading {
        font-size: 28px;
    }
    
    .featured-callout {
        padding: 30px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-block {
        padding: 40px;
    }
    
    .quote-block blockquote {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .page-headline {
        font-size: 36px;
    }
    
    .article-headline {
        font-size: 32px;
    }
    
    .article-hero {
        height: 350px;
        padding: 30px 20px;
    }
    
    .article-content p {
        font-size: 16px;
    }
    
    .drop-cap::first-letter {
        font-size: 56px;
    }
    
    .article-pullquote {
        padding: 30px;
    }
    
    .article-pullquote p {
        font-size: 20px;
    }
    
    .sidebar-box {
        padding: 25px;
    }
    
    .scenario-card {
        padding: 30px;
    }
    
    .closing-quote {
        font-size: 24px;
    }
    
    .featured-grid {
        padding: 30px;
    }
    
    .featured-title {
        font-size: 28px;
    }
    
    .about-main {
        padding: 30px;
    }
    
    .content-heading {
        font-size: 24px;
    }
    
    .featured-callout {
        padding: 25px;
    }
}
