@font-face {
    font-family: "bebas";
    src: url("bebas.otf");
    font-weight: normal;
    font-style: normal;
  }* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif, sans-serif;
    overflow-x: hidden; /* Only prevent horizontal scroll */
    
}
/* Header */
.main-header {
    background: #111;
    color: white;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 10;
    font-weight: lighter;
}

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

.logo {
    font-size: 1.5rem;
    font-family: bebas;
    font-weight: lighter;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header-nav a {
    color: white;
    text-decoration: none;
    font-weight: lighter;
}

.header-nav a:hover {
    text-decoration: underline;
}
/* Intro Section: Full viewport height */
.intro-section {
    position: relative;
    width: 100%;
    height: 100vw;
    background: linear-gradient(45deg, #2A64B0, black);
    overflow: hidden;
}

/* Diagonal line container */
.line-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.diagonal-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 200vw; 
    height: 2px;
    background: white;
    transform-origin: 0 0; /* top-left corner is origin */
    transform: rotate(45deg) scaleX(0);
    animation: drawLine 2s ease forwards;
}

/* Text container */
.text-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Common text styles */
.text {
    color: white;
    position: absolute;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    opacity: 0;
    line-height: 1.2;
    white-space: nowrap;
}


/* LOW CEILING in top-right quarter */
.low-ceiling {
    top: 10%;
    font-size: 4rem;
    right: -100vw;
    animation: slideInRight 1.5s ease forwards;
    animation-delay: 1s; /* Wait until line finishes */
    font-family: "bebas";
}

/* HIGH FLOOR in bottom-left quarter */
.high-floor {
    bottom: 10%;
    font-size: 4rem;
    left: -100vw;
    animation: slideInLeft 1.5s ease forwards;
    animation-delay: 2s; /* Wait until line finishes */
    font-family: "bebas";
}

/* Podcast Section: Solid black background */
.podcast-section {
    width: 100%;
    background: linear-gradient(90deg, #2A64B0, #153158);
    color: white;
    padding: 50px 20px;
    box-sizing: border-box;
}

.podcast-section .content {
    max-width: 800px;
    margin: 0 auto;
}

.podcast-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.podcast-section p {
    margin-bottom: 30px;
    line-height: 1.5;
}

.podcast-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.episodes {
    display: grid;
    grid-gap: 20px;
}

.episode h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ddd;
}

.episode p {
    line-height: 1.4;
}

.episode-link {
    color: white; /* Change the color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Make the text bold */
}

.episode-link:hover {
    color: white; /* Change color on hover */
    text-decoration: underline; /* Add underline on hover */
}


/* footer */
.footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(90deg, #2A64B0, #153158);
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-icons img {
    /*width: 32px;*/
    height: 32px;
}

/* Sentinel simply helps create space at bottom */
#sentinel {
    height: 50px;
}

/* Keyframes */
@keyframes drawLine {
    to {
        transform: rotate(45deg) scaleX(1);
    }
}

@keyframes slideInRight {
    0% {
        right: -100vw;
        opacity: 0;
    }
    100% {
        right: 10%;
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        left: -100vw;
        opacity: 0;
    }
    100% {
        left: 10%;
        opacity: 1;
    }
}

/* Responsive Font Sizes */
@media (max-width: 600px) {
    .low-ceiling,
    .high-floor {
        font-size: 3.5rem;
    }

    .podcast-section h2 {
        font-size: 2rem;
    }

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

    .episode h4 {
        font-size: 1.2rem;
    }
}

@media (min-width: 600px) {
    .low-ceiling,
    .high-floor {
        font-size: 10rem;
    }

    .podcast-section h2 {
        font-size: 2rem;
    }

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

    .episode h4 {
        font-size: 1.2rem;
    }
}

@media (min-width: 1200px) {
    .low-ceiling,
    .high-floor {
        font-size: 10rem;
    }

    .podcast-section h2 {
        font-size: 2rem;
    }

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

    .episode h4 {
        font-size: 1.2rem;
    }
}

.header-nav{
    font-family: bebas, Helvetica, sans-serif, Helvetica, sans-serif;
    font-weight: 100;
}


.header-nav a:hover {
    text-decoration: underline;
    font-family: bebas, Helvetica, sans-serif;
    font-weight: 100;
}

/* Hide scrollbar for WebKit browsers */
body::-webkit-scrollbar {
    width: 0;
    background: transparent; /* Optional */
}

