/* ============================================
   AZIMUT F1 Podcast - Main Stylesheet
   Colors: Black, Silver, Red accent
   ============================================ */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #e8e8e8;
    --silver: #6b6b6b;
    --light-silver: #333333;
    --red-accent: #d32f2f;
    --red-dark: #b71c1c;
    --teal-accent: #2FAF8F;
    --teal-subtle: rgba(47, 175, 143, 0.15);
    --white: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #eeeeee;
    --text-primary: #0a0a0a;
    --text-secondary: #333333;
    --text-muted: #6b6b6b;
    --border-color: #e0e0e0;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Header & Navigation
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; /* Set the logo image height to 40px */
}

/* Logo styles - no background */
.logo-wrapper {
    display: flex;
    align-items: center;
    margin-top: -10px; /* Move the logo up in the header */
    justify-content: center;
    padding: 10px 0;
    background: transparent;
    border-radius: 0;
    transition: var(--transition);
}

.logo-wrapper:hover {
    background: transparent;
}

.logo-text {
    display: inline-block;
    margin-top: 10px; /* Move the AZIMUT text even lower in the header */
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--red-accent);
}

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

.nav-links a {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-accent);
    transition: var(--transition);
}

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

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

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

.nav-links a.active::after {
    width: 100%;
    background: var(--red-accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

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

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

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

/* ============================================
   Hero Section - Video Background
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg-primary); /* Fallback */
    overflow: hidden;
}

/* Video Background Container */
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--bg-secondary); /* Fallback color */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* Vidéo nette, sans filtre */
}

/* Light Overlay - Désactivé */
.hero-overlay {
    display: none;
}

/* Optional: Add subtle noise texture for premium feel */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.03"/></svg>');
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 100px 20px;
    position: relative;
}

.hero-logo-container {
    display: flex;
    justify-content: center; /* Center the logo */
    align-items: center;
    padding: 15px 40px; /* Reduced top and bottom padding to move the logo up */
    background: transparent;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.logo-icon {
    height: 40px;
    margin-right: 8px; /* Space between icon and text */
}

.hero-logo {
    max-width: 400px;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 span {
    color: var(--red-accent);
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.stroke-text {
    color: #000 !important; /* Force black fill */
    -webkit-text-stroke: 2px white; /* white outline */
    -webkit-text-fill-color: #000; /* Ensure black fill */
}

/* Reset hero subtitle to simple black text with stroke */
.hero-subtitle {
    font-size: 1.1rem;
    color: #000; /* Simple black text */
    max-width: 860px;
    margin: 0 auto 50px;
    display: inline-block;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-muted);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

/* ============================================
   Video Background - Responsive & Performance
   ============================================ */
@media (max-width: 768px) {
    .hero-video {
        /* Reduce blur on mobile for performance */
        filter: brightness(1.15) blur(0.5px);
    }
    
    .hero-overlay {
        /* Stronger overlay on mobile for better readability */
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.90) 0%,
            rgba(255, 255, 255, 0.85) 100%
        );
    }
}

/* Hide native/browser play overlays for the hero background video and
   ensure any card play button won't appear over the hero. */
.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}
.hero-video::-webkit-media-controls { display: none !important; }
.hero-video::-webkit-media-controls-enclosure { display: none !important; }
.hero-video::cue { display: none !important; }

.hero-video-wrapper .episode-play { display: none !important; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
    
    .hero-video-wrapper {
        background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    }
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--teal-accent);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.about-text {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--red-accent), var(--teal-accent));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 20px auto 0;
}

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

.about-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--teal-subtle);
}

.about-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-accent), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.about-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================
   Episodes Section
   ============================================ */
.episodes {
    padding: 120px 0;
    background: var(--bg-primary);
}

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

.episode-card {
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--teal-accent);
}

.episode-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.episode-image::before {
    content: '▶';
    position: absolute;
    font-size: 3rem;
    color: var(--text-primary);
    opacity: 0;
    transition: var(--transition);
}

.episode-card:hover .episode-image::before {
    opacity: 1;
}

.episode-number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    color: var(--border-color);
    opacity: 0.8;
}

.episode-content {
    padding: 25px;
}

.episode-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.episode-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.episode-tag {
    background: var(--red-accent);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.episode-content h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.episode-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.episode-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--silver);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.episode-link:hover {
    color: var(--teal-accent);
}

/* ============================================
   Host Section
   ============================================ */
.host {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.host-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.host-image {
    position: relative;
}

.host-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border-color);
}

.host-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--teal-accent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
}

.host-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.host-placeholder-icon {
    font-size: 6rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.host-info h3 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.host-title {
    font-size: 1.1rem;
    color: var(--red-accent);
    font-weight: 600;
    margin-bottom: 25px;
}

.host-intro-link {
    margin-bottom: 22px;
}

.intro-video-trigger {
    border-color: var(--red-accent);
    color: var(--red-accent);
}

.intro-video-trigger:hover {
    background: var(--red-accent);
}

.host-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.host-description p {
    margin-bottom: 15px;
}

.host-social {
    display: flex;
    gap: 15px;
}

.intro-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.intro-video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.intro-video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(940px, 92vw);
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.intro-video-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-video-modal__content {
    width: 100%;
    line-height: 0;
}

.intro-video-modal__content video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--teal-accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   Platforms Section
   ============================================ */
.platforms {
    padding: 100px 0;
    background: var(--bg-primary);
    text-align: center;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 40px;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: var(--transition);
    min-width: 180px;
    border: 1px solid transparent;
}

.platform-item:hover {
    transform: translateY(-5px);
    background: var(--bg-tertiary);
    border: 1px solid var(--teal-subtle);
}

.platform-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.platform-name {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   Values Section
   ============================================ */
.values {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 40px 25px;
}

.value-number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    color: var(--red-accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-accent);
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
    background: var(--teal-subtle);
}

.contact-form {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-accent);
    box-shadow: 0 0 0 3px var(--teal-subtle);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-wrapper {
    display: inline-flex;
    padding: 8px 16px;
    margin-bottom: 20px;
    background: transparent;
}

.footer-logo {
    font-size: 1.4rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column ul a:hover {
    color: var(--teal-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--red-accent);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .host-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .host-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateX(-100%);
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        max-width: 280px;
    }

    .hero-subtitle {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-video-modal__dialog {
        width: 94vw;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        gap: 20px;
    }
    
    .platform-item {
        min-width: 140px;
        padding: 20px 25px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.text-red {
    color: var(--red-accent);
}

.mb-0 {
    margin-bottom: 0;
}

.mt-20 {
    margin-top: 20px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ============================================
   Creations Preview Cards
   ============================================ */
.creations-preview {
    text-align: center;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.preview-card {
    position: relative;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.preview-card:hover::before {
    transform: scaleX(1);
}

.preview-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.preview-card:hover .preview-card-icon {
    background: var(--red-accent);
    color: white;
    transform: scale(1.1);
}

.preview-card--video:hover .preview-card-icon {
    background: var(--red-accent);
}

.preview-card--audio:hover .preview-card-icon {
    background: #8b5cf6;
}

.preview-card--photo:hover .preview-card-icon {
    background: #10b981;
}

.preview-card--audio:hover::before {
    background: #8b5cf6;
}

.preview-card--photo:hover::before {
    background: #10b981;
}

.preview-card-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bg-secondary);
    line-height: 1;
    transition: color 0.3s ease;
}

.preview-card:hover .preview-card-number {
    color: var(--border-color);
}

.preview-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.preview-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .preview-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .preview-card {
        padding: 2rem 1.5rem;
    }
    
    .preview-card-number {
        font-size: 2rem;
    }
}

/* Updated Home Page Modular Block Design */
.home-modular-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background-color: transparent; /* Remove beige background */
}

.home-modular-block .block {
    border-radius: 50px; /* Large rounded rectangular blocks */
    padding: 20px 40px;
    font-family: 'Helvetica', 'Inter', 'Neue Haas Grotesk', sans-serif; /* Modern sans-serif font */
    font-weight: bold;
    text-align: center;
    color: #000000; /* High contrast text */
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-modular-block .block.black {
    background-color: #0a0a0a; /* Black */
    color: #ffffff;
}

.home-modular-block .block.red {
    background-color: #d32f2f; /* Red accent */
    color: #ffffff;
}

.home-modular-block .block.white {
    background-color: #ffffff; /* White */
    color: #0a0a0a;
}

.home-modular-block .block.green {
    background-color: #2FAF8F; /* Green accent */
    color: #ffffff;
}

.home-modular-block .block.large-text {
    font-size: 3rem; /* Very large bold text */
}

.home-modular-block .block.subtitle {
    font-size: 1.5rem;
    margin-top: 10px;
}

.host-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.host-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}