/* Insights Page Styles */
:root {
    --accent-red: #e73866;
    --deep-black: #0a0a0a;
    --soft-white: #fafafa;
    --warm-gray: #f5f3f0;
    --text-dark: #1a1a1a;
    --text-muted: #666;
}

.insights-page {
    background-color: var(--soft-white);
}

.insights-page header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.insights-page header .logo a {
    display: block;
}

.insights-page header nav .menu {
    text-decoration: none;
    color: black;
}

.insights-page header nav .menu.selected {
    border-color: red;
}

/* Article Container */
.article-container {
    margin-top: 106px;
}

@media screen and (max-width: 920px) {
    .article-container {
        margin-top: 80px;
    }
}

/* Hero Section */
.article-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(231, 56, 102, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(231, 56, 102, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.article-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--soft-white) 0%, transparent 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e73866' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.article-tag {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    margin-bottom: 30px;
    transform: skewX(-5deg);
}

.article-tag span {
    display: inline-block;
    transform: skewX(5deg);
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

@media screen and (max-width: 920px) {
    .article-title {
        font-size: 48px;
    }
}

@media screen and (max-width: 610px) {
    .article-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

.article-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

@media screen and (max-width: 610px) {
    .article-subtitle {
        font-size: 18px;
    }
}

/* Article Body */
.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

@media screen and (max-width: 610px) {
    .article-body {
        padding: 40px 20px;
    }
}

.article-intro {
    margin-bottom: 60px;
}

.lead-paragraph {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

@media screen and (max-width: 610px) {
    .lead-paragraph {
        font-size: 20px;
    }
}

.article-body p {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.article-body strong {
    font-weight: 600;
    color: var(--deep-black);
}

/* Article Sections */
.article-section {
    margin-bottom: 60px;
    padding-top: 20px;
}

.article-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-black);
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.article-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: var(--accent-red);
}

@media screen and (max-width: 610px) {
    .article-section h2 {
        font-size: 24px;
    }
}

/* Links */
.article-link {
    color: var(--accent-red);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.article-link:hover {
    border-bottom-color: var(--accent-red);
}

/* Blockquote */
.article-quote {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-red);
    padding: 20px 30px;
    margin: 40px 0;
    background: var(--warm-gray);
    position: relative;
}

.article-quote::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--accent-red);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

@media screen and (max-width: 610px) {
    .article-quote {
        font-size: 18px;
        padding: 15px 20px;
    }
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, var(--warm-gray) 0%, #fff 100%);
    padding: 40px;
    margin-left: -40px;
    margin-right: -40px;
    border-radius: 0;
}

@media screen and (max-width: 610px) {
    .highlight-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 30px 20px;
    }
}

/* Key Insight Box */
.key-insight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--deep-black);
    color: white;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.key-insight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-red);
}

.insight-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.key-insight p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media screen and (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-black);
    margin-bottom: 12px;
}

.feature-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-card h3 a:hover {
    color: var(--accent-red);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Conclusion */
.article-conclusion {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.article-conclusion p {
    font-size: 20px;
    text-align: center;
}

/* CTA Section */
.article-cta {
    background: var(--deep-black);
    margin: 80px -40px 0;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 100%, rgba(231, 56, 102, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(231, 56, 102, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

@media screen and (max-width: 610px) {
    .article-cta {
        margin: 60px -20px 0;
        padding: 40px 20px;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-content p a {
    color: var(--accent-red);
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
    text-decoration: none;
    transform: skewX(-5deg);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: white;
    color: var(--deep-black);
}

/* Photo Credit */
.photo-credit {
    text-align: center;
    padding: 30px 20px;
    background: var(--warm-gray);
}

.photo-credit p {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.photo-credit a {
    color: var(--accent-red);
    text-decoration: none;
}

.photo-credit a:hover {
    text-decoration: underline;
}

/* Tools Section Special Styling */
.tools-section {
    background: linear-gradient(180deg, var(--soft-white) 0%, var(--warm-gray) 100%);
    padding: 50px 40px;
    margin-left: -40px;
    margin-right: -40px;
}

@media screen and (max-width: 610px) {
    .tools-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }
}

/* Footer adjustments for insights page */
.insights-page footer {
    margin-top: 0;
    padding-top: 100px;
}

