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

:root {
    --teal: #4a7c8c;
    --soft-pink: #ffd4d4;
    --peach: #ffc4a3;
    --lavender: #d4b4d4;
    --mint: #b4d4c4;
    --cream: #fff4e6;
    --deep-purple: #8b6f8b;
    --charcoal: #2c2c2c;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sans {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.75rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 400;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-md {
    font-size: 1.125rem;
}

.text-lg {
    font-size: 1.5rem;
}

.text-xl {
    font-size: 2rem;
}

.text-2xl {
    font-size: 2.5rem;
}

.text-3xl {
    font-size: 3rem;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

nav.scrolled {
    padding: 15px 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
    font-style: normal;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--teal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--peach) 50%, var(--mint) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 40px 60px;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--charcoal);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--teal);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-text .tagline {
    font-size: 1rem;
    margin-bottom: 40px;
    color: var(--charcoal);
    opacity: 0.9;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
    border-radius: 4px;
}

.btn-primary {
    background: var(--teal);
    color: white;
}

.btn-primary:hover {
    background: var(--deep-purple);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-secondary:hover {
    background: var(--teal);
    color: white;
}

.hero-image {
    position: relative;
    height: 500px;
    background: url('images/image2.jpeg') center/cover;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Page Hero Section */
.page-hero {
    padding: 140px 40px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.page-hero p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Page Sections */
.page-section {
    padding: 80px 40px;
}

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

/* Overview Section */
.overview {
    padding: 100px 40px;
    background: white;
}

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

.overview-card {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.overview-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 212, 212, 0.3), white);
}

.overview-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(180, 212, 196, 0.3), white);
}

.overview-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(212, 180, 212, 0.3), white);
}

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

.overview-card h3 {
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 15px;
    font-weight: 600;
}

.overview-card p {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.7;
}

.overview-card .learn-more {
    color: var(--deep-purple);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.overview-card .learn-more:hover {
    color: var(--teal);
}

/* Featured Section */
.featured {
    padding: 100px 40px;
    background: var(--cream);
}

.featured-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-text h2 {
    font-size: 2.5rem;
    color: var(--deep-purple);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.featured-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.featured-image {
    height: 400px;
    background: url('images/image1.png') center/cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Episodes Section */
.episodes-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.episode-card {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 20px;
    align-items: flex-start;
}

.episode-video {
    width: 25%;
    min-width: 200px;
    flex-shrink: 0;
}

.episode-content {
    width: 75%;
    padding-left: 10px;
}

/* Mobile responsiveness for episodes */
@media (max-width: 768px) {
    .episode-card {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .episode-video {
        width: 100%;
        min-width: unset;
    }

    .episode-content {
        width: 100%;
        padding-left: 0;
    }
}

/* Press Section */
.press {
    padding: 80px 40px;
    background: white;
}

.press-header {
    text-align: center;
    margin-bottom: 40px;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.press-logo {
    height: 40px;
    font-size: 1.125rem;
    color: var(--charcoal);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.press-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    padding: 60px 40px 40px;
    background: var(--charcoal);
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--peach);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-about p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links h4 {
    color: var(--mint);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
    line-height: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--peach);
}

/* Newsletter Popup */
.newsletter-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 350px;
    z-index: 999;
    transform: translateY(500px);
    transition: transform 0.5s ease;
}

.newsletter-popup.show {
    transform: translateY(0);
}

.newsletter-popup h3 {
    color: var(--teal);
    margin-bottom: 10px;
}

.newsletter-popup p {
    margin-bottom: 20px;
    color: var(--charcoal);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--cream);
    border-radius: 5px;
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--teal);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--deep-purple);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    color: var(--charcoal);
}

/* Loading animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background: var(--teal);
    color: white;
    text-decoration: none;
}

.skip-to-content:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}

/* Loading screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--cream);
    border-top: 3px solid var(--teal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

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

.back-to-top:hover {
    background: var(--deep-purple);
    transform: translateY(-5px);
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
        font-weight: 700;
    }

    h2 {
        font-size: 1.5rem;
        font-weight: 600;
    }

    h3 {
        font-size: 1.25rem;
        font-weight: 600;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-container {
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-popup {
        right: 15px;
        left: 15px;
        max-width: none;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    /* Fix contact page grid on mobile */
    @media (max-width: 768px) {
        section .container > div[style*="grid-template-columns: 1fr 1fr"] {
            grid-template-columns: 1fr !important;
        }
    }
}

/* Blog Page Styles */
.blog-intro {
    padding: 80px 40px;
    background: white;
}

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

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--charcoal);
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 400;
}

.blog-articles {
    padding: 80px 40px;
    background: linear-gradient(to bottom, #fff, var(--cream));
}

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

.section-title {
    font-size: 2rem;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 60px;
}

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

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.article-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.article-content {
    padding: 30px;
}

.article-category {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--teal);
    font-weight: 600;
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin: 15px 0;
    line-height: 1.3;
}

.article-content p {
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-link {
    color: var(--teal);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: var(--deep-purple);
}

.newsletter-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--soft-pink), var(--peach));
}

.newsletter-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--charcoal);
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 400;
}

/* Blog mobile responsive */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .blog-intro,
    .blog-articles,
    .newsletter-cta {
        padding: 60px 20px;
    }
}