html, body {
    height: 100%;
}

/* Give the footer a fixed height */
.footer {
    height: 60px;
    background-color: #C35428;
}

/* Add padding to the bottom of the page */
.page-content {
    padding-bottom: 60px; /* Same as the height of the footer */
}

.banner {
    height: calc(100vh - 56px);
    background-image: url('/card/banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1;
}

.navbar-brand img {
    max-height: 60px; /* Set this to the height of your navbar */
}


.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    display: none;
    z-index: 2;
}


/* Center menu items */
.navbar-nav {
    margin: 0 auto;
    padding-left: 30px;
    z-index: 1;
}

@media (min-width: 992px) {
    .navbar-nav {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Add space between menu items */
.navbar-nav > li:not(:last-child) {
    margin-right: 40px;
}


.navbar-toggler-icon {
    background-color: #999;
}


/* "RUTH TSOPOTSA" text */
.banner-text {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
}

.buy-now-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Center "Buy Now" button */
.buy-now-btn {
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background-color: #F4BD91;
}

.btn-outline-dark {
    color: #007E87;
    border-color: #007E87;
}

/* Book section */
.book-section {
    padding: 50px 0;
}

.book-cover {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.book-description {
    font-size: 18px;
    line-height: 1.6;
}


.quote-slider {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 5px;
    position: relative;
}

.quote-container {
    position: relative;
    min-height: 150px;
}

.quote {
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0;
    transition: all 0.5s;
    width: 100%;
}

.quote.active {
    left: 0;
    opacity: 1;
}

blockquote {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 10px;
}

cite {
    font-size: 18px;
    font-style: italic;
}

.quote-slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.prev-quote,
.next-quote {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
    padding: 5px 10px;
}

.book-section h2 {
    color: #C35428;
}
.book-section p {
    color: #132839;
}

.book-section {
    background-color: rgba(244, 189, 145, 0.15);
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    margin-top: 50px;
}

.book-description {
    margin-bottom: 10px;
}

.episode-section {
    padding: 50px 0;
}

.episode {
    position: relative;
    margin-bottom: 30px;
}

.episode-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.episode-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-weight: bold;
}


.episode-section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.episode-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #333;
    margin: 20px auto;
}
