body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: #FFFFFF;
    color: #1A1A1A;
    text-align: center;
}

h1 {
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    padding: 1rem 2rem;
    margin: 0 auto;
}

.title {
    font-size: 56px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    text-shadow: none;
    padding: 0;
    color: black;
}

.horizontal-line {
    width: 100%;
    height: 1px;
    background: #61988E;
    box-shadow: none;
}

section {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.bio {
    max-width: 800px;
    line-height: 1.6;
    font-size: 1.1rem;
}

h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    text-shadow: none;
}

h3 {
    font-size: 1.2rem;
}

.press-links, .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.button {
    text-decoration: none;
    border: 2px solid #61988E;
    padding: 12px 24px;
    text-transform: uppercase;
    font-size: 16px;
    color: #61988E;
    background: transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.button:hover {
    background: #61988E;
    color: white;
}

.button.highlight {
    background: rgba(255, 255, 255, 0.1);
    border-width: 2px;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info a {
    color: #1A1A1A;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

.representation {
    text-align: center;
}

.social-links .button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.social-links .button i {
    font-size: 1.2em;
}

.imessage-image {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

.login-overlay,
.login-container {
    display: none;
}

.menu {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    z-index: 100; /* Ensure menu is above other content */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu ul {
    display: flex; /* Default to flex for desktop */
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu ul.active {
    display: flex; /* Show when active */
    flex-direction: column; /* Stack items vertically for mobile */
    background-color: white;
    position: absolute;
    width: 100%;
    top: 60px;
    left: 0;
    padding: 1rem 0;
    z-index: 100;
}

.menu-toggle {
    display: none; /* Hide on desktop */
    cursor: pointer;
    padding: 10px;
}

.menu a {
    color: #61988E;
    text-decoration: none;
    font-weight: 700;
}

.menu a:hover {
    color: #4d7a72;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 2rem 2rem;
    align-items: center;
    margin-top: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 0;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 5rem;
    color: #1A1A1A;
    margin: 0;
    font-weight: 700;
    line-height: 1.1;
}

.tagline h2 {
    color: #61988E;
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    color: #61988E;
    font-size: 3rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4d7a72;
}

.imdb-icon {
    width: 2.4rem;
    height: 2.4rem;
    vertical-align: middle;
    filter: invert(42%) sepia(15%) saturate(1017%) hue-rotate(118deg) brightness(92%) contrast(87%);
}

.social-links a:hover .imdb-icon {
    filter: brightness(0) saturate(100%) invert(36%) sepia(11%) saturate(1067%) hue-rotate(118deg) brightness(88%) contrast(86%);
}

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

/* Footer styling */
.footer {
    margin-top: auto;  /* Push footer to bottom */
    text-align: center;
    color: #1A1A1A;
    font-size: 0.9rem;
}

#mainContent {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Add this to your existing CSS */
.menu ul.active {
    display: flex; /* Show the menu when active */
    flex-direction: column; /* Stack items vertically */
    background-color: white; /* Optional: set background color */
    position: absolute; /* Position it absolutely */
    width: 100%; /* Full width */
    top: 60px; /* Adjust based on your menu height */
    left: 0; /* Align to the left */
    padding: 1rem 0; /* Add some padding */
    z-index: 100; /* Ensure it appears above other content */
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Menu styling */
    .menu {
        position: fixed;
        top: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        z-index: 100; /* Ensure menu is above other content */
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    /* Add padding to the top of the main content to prevent overlap */
    #mainContent {
        padding-top: 60px; /* Adjust based on menu height */
    }

    .menu ul {
        display: none; /* Hide by default */
        flex-direction: column;
        background-color: white;
        position: absolute;
        width: 100%;
        top: 60px; /* adjust depending on nav height */
        left: 0;
        padding: 1rem 0;
        z-index: 100;
    }

    .menu ul.active {
        display: flex; /* Show when active */
    }

    .menu-toggle {
        display: block; /* Show hamburger icon */
        cursor: pointer;
        padding: 10px;
    }

    /* Vertically stack hero content */  
    .hero-section {
        display: flex;
        flex-direction: column;
        padding: 2rem 1rem 1rem;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
        order: 1; /* Place text first */
    }

    .hero-image {
        order: 2; /* Place image second */
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .tagline h2 {
        font-size: 2rem;
    }

    .hero-image img {
        max-width: 90%;
        margin: 0 auto;
    }

    .bio {
        font-size: 1rem; /* More readable size on mobile */
        padding: 0 1rem;
    }

    /* Improve button spacing on mobile */
    .press-links {
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .button {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Sections spacing */

    .horizontal-line {
        margin: 0.5rem 0;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .left-arrow {
        left: 10px;
    }

    .right-arrow {
        right: 10px;
    }
}

/* Add tablet breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-text h1 {
        font-size: 4rem;
    }

    .tagline h2 {
        font-size: 2.25rem;
    }

    .hero-section {
        padding: 3rem 2rem;
    }
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-social-links a {
    color: #61988E;
    font-size: 2.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-social-links a:hover {
    color: #4d7a72;
}

/* Fade effect for the hero carousel image */
#hero-carousel-image {
    transition: opacity 1s ease-in-out;
    opacity: 1;
}

/* Arrow styling for carousel navigation */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #61988E;
    background-color: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Show arrows on hover */
.hero-image:hover .arrow {
    opacity: 1;
}

.arrow:hover {
    transform: translateY(-50%) scale(1.1);
    background-color: #fff;
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About page specific styles */
.about-page {
    padding-top: 80px; /* Account for fixed header */
    max-width: 800px;
}

.about-page .title {
    margin-bottom: 2rem;
}

.about-content {
    text-align: left;
}

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

.about-section h2 {
    color: #61988E;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.about-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Mobile adjustments for about page */
@media (max-width: 768px) {
    .about-page {
        padding: 80px 1.5rem 2rem;
    }

    .about-section h2 {
        font-size: 1.4rem;
    }

    .about-section p {
        font-size: 1rem;
    }
}

/* Podcast page specific styles */
.podcast-page {
    padding-top: 80px;
    max-width: 1000px;
}

.podcast-header {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.podcast-image {
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.podcast-title-section {
    text-align: left;
}

.podcast-title-section .title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.podcast-title-section .subtitle {
    color: #61988E;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.podcast-content {
    text-align: left;
}

.show-details .quote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: #444;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid #61988E;
}

.quote-attribution {
    text-align: right;
    color: #666;
}

.show-topics ul, .guests ul {
    list-style: none;
    padding: 0;
}

.show-topics li, .guests li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.show-topics li:before, .guests li:before {
    content: "•";
    color: #61988E;
    position: absolute;
    left: 0;
}

/* Mobile adjustments for podcast page */
@media (max-width: 768px) {
    .podcast-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .podcast-image {
        max-width: 100%;
    }

    .podcast-title-section {
        text-align: center;
    }

    .podcast-title-section .title {
        font-size: 2.5rem;
    }

    .podcast-title-section .subtitle {
        font-size: 1.5rem;
    }

    .show-details .quote {
        font-size: 1.1rem;
        margin: 1.5rem 0;
    }
}