@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

html {
    cursor: none !important;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.6;
    cursor: none !important; /* Hide the default cursor */
}

a,
button,
.icon-container,
.episode-card {
    cursor: none !important;
}

#about {
    padding: 20px 0 180px; /* Increased bottom spacing */
}

#about p {
    font-size: 1.8em; /* Further increased font size */
    font-weight: 700;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    background-color: white;
    mix-blend-mode: difference;
    width: 20px;
    height: 20px;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, mix-blend-mode 0.1s ease, border-radius 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cursor-text {
    opacity: 0;
    font-size: 16px; /* Increased font size */
    font-weight: 700;
    color: #f5f5f5;
    transition: opacity 0.3s ease;
}

/* Style for when hovering over links/buttons */
.cursor-dot.hover {
    width: 50px;
    height: 50px;
}

/* Style for the special text-display mode */
.cursor-dot.text-active {
    background-color: #1a1a1a;
    mix-blend-mode: normal;
    width: 80px;
    height: 80px;
}

.cursor-dot.text-active .cursor-text {
    opacity: 1;
}

/* Style for when showing 'Host' */
.cursor-dot.text-active.host-style {
    background-color: white; /* White background */
}

.cursor-dot.text-active.host-style .cursor-text {
    color: black; /* Black text */
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 40px;
    background-color: rgba(245, 245, 245, 0.8); /* Semi-transparent background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1a1a1a; /* Add border back */
}

.header-logo {
    height: 24px;
}

nav a {
    margin: 0 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #9a9a9a;
}

/* --- Episodes Section --- */
.episode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.episode-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-5px);
}

.episode-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 15px;
}

.episode-info {
    text-align: left; /* Align text to the left */
}

.episode-info h3 {
    font-size: 1.4em;
    margin: 0 0 5px 0;
}

.episode-info p {
    font-size: 1em;
    margin: 0;
    color: #5a5a5a;
}

#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.icon-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.main-icon {
    width: 300px;
    height: 300px;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.icon-container:hover .main-icon {
    opacity: 0;
}

.quote-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap; /* Prevent text wrapping */
    text-align: center;
    font-size: 1.8em; /* Increased font size */
    font-weight: 700;
    color: #3a3a3a;
    opacity: 0;
    pointer-events: none;
}

.quote-text.typing::after {
    content: '_';
    font-weight: bold;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent; }
    50% { color: #3a3a3a; }
}

/* Hover scale effect removed as requested */



main {
    padding: 40px 160px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 160px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #9a9a9a;
}

.view-all-hosts {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
}

.hosts-title-link,
.host-profile-link {
    text-decoration: none;
    color: inherit;
}

.episodes-container {
    display: flex;
    overflow-x: auto;
    padding-bottom: 20px; /* For scrollbar visibility */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.episodes-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

.episode-card {
    flex: 0 0 280px;
    margin-right: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-5px);
}

.episode-poster {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 15px;
}

.episode-info h3 {
    font-size: 1.4em;
    margin: 0 0 5px 0;
}

.episode-info p {
    font-size: 1em;
    margin: 0;
    color: #5a5a5a;
}

#hosts {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow-x: hidden;
}



@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Scroll by half the width (the original content's width) */
    }
}

.hosts-container {
    display: flex;
    overflow-x: visible; /* Allow content to overflow for the animation */
    padding-bottom: 20px;
    gap: 30px; /* Use gap for spacing */
    align-items: flex-start;
    width: fit-content; /* Adjust width to content */
    animation: scroll 40s linear infinite; /* Apply the animation */
}

.hosts-container:hover {
    animation-play-state: paused; /* Pause animation on hover */
}

/* Expanded view for hosts */
.hosts-container.expanded {
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: flex-start; /* Align items to the start */
    animation: none; /* Disable the scroll animation */

    /* Constrain width to match main content */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 160px;
}

.hosts-container.expanded .host-profile {
    flex-basis: calc(25% - 30px); /* Adjust for 4 items per row, considering gap */
    margin-bottom: 40px;
}

.host-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 250px; /* Set a fixed width for each profile */
}

.host-image-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 0; /* Start as a square */
    transition: border-radius 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.host-profile:hover .host-image-container {
    border-radius: 50%; /* Become a circle on hover */
}

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

.host-info h3 {
    font-size: 1.5em;
    margin: 0;
}

/* Remove the guest-grid and related styles as they are now merged */
.guest-grid,
.guest-profile,
.guest-profile img,
.guest-profile h4,
.guest-profile p {
    display: none;
}

.about-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.about-link:hover {
    transform: scale(1.02);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.player-container {
    display: grid;
    place-items: center;
    padding: 40px 0;
}

.cd-image,
.player-image {
    grid-column: 1;
    grid-row: 1;
}

.cd-image {
    width: 127px;
    height: 127px;
    animation: spin 10s linear infinite;
    z-index: 1; /* Ensure CD is on top */
    position: relative;
    bottom: 98px; /* Move up */
}

.player-image {
    max-width: 200px;
    height: auto;
    position: relative;
    top: 30px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 1em;
    color: #9a9a9a;
}


