/* I Am Wiser Podcast Page Styles */

/* Remove navbar background for this page only */
.navbar-new {
    background-color: transparent;
    box-shadow: none;
}

/* Page Background */
body {
    background-image: url('../../images/i-am-wiser-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Main Container */
.podcast-page {
    min-height: 100vh;
    position: relative;
}

/* Ensure content is readable over background */
.podcast-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Content wrapper to ensure it's above the overlay */
.podcast-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Coming Soon Section */
.coming-soon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon__text {
    font-family: 'IvyPresto Headline', serif;
    font-weight: 600;
    font-style: italic;
    font-size: 120px;
    line-height: 100%;
    letter-spacing: 0.01em;
    text-align: center;
    color: #536BA2;
    margin: 0;
}

/* Responsive adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    body {
        background-image: url('../../images/i-am-wiser-bg-tablet.png');
    }
    
    .coming-soon__text {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    body {
        background-image: url('../../images/i-am-wiser-bg-mobile.png');
    }
    
    .coming-soon__text {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .coming-soon__text {
        font-size: 40px;
    }
}
