/* General Styles */


body {
    background-color: #FFFFF0; /* Ivory background */
    color: #333; /* Darker text color for contrast */
    font-family: Arial, sans-serif;
    padding-top: 70px; /* Adjust based on the height of your navbar */

}

/* Accent Color */
:root {
    --accent-color: #6e1df2; /* Change to your desired color */
    --accent-color-hover: #5819bd; /* Optional: a darker shade for hover state */
}

/* Header Styles */
/* Navbar Initial State */
.navbar {
    background-color: rgba(0, 0, 0, 0.4); /* Low-opacity black background */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.navbar.scrolled {
    background-color: var(--accent-color); /* Solid background on scroll */
}

body {
    padding-top: 70px; /* Adjust based on the height of your navbar */
}

/* Mobile view adjustments */
.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.6); /* Light background for the toggler button */
    border: none;
}

.navbar-collapse {
    background-color: rgba(0, 0, 0, 0.8); /* Darker background for the mobile menu */
    border-radius: 8px;
    padding: 10px;
}

.navbar-nav .nav-link {
    color: #FFF; /* White text */
}

.navbar-nav .nav-link:hover {
    color: #FFD700; /* Gold color on hover */
}

.navbar-nav .btn {
    color: var(--accent-color); /* Blue text */
    background-color: #FFF; /* White button */
    border-radius: 20px;
    padding: 8px 20px;
}


/* Hero Section with Video Background */
.hero-section {
    position: relative;
    margin-top: -70px; /* Offset the margin to pull the hero section up slightly */
    height: 100vh; /* Full viewport height */
    color: #FFF; /* White text */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Ensure video stays within bounds */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section */
    z-index: -1; /* Places the video behind the content */
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-section h1 {
    font-size: 4rem; /* Large font for impact */
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.5rem; /* Slightly larger for emphasis */
    margin-bottom: 30px;
}

.hero-section .btn {
    padding: 15px 40px; /* Larger button for emphasis */
    font-size: 1.25rem; /* Larger text in button */
    background-color: var(--accent-color); /* Blue button */
    color: #FFF; /* White text */
    border: none;
    border-radius: 50px; /* Rounded button */
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4); /* Button shadow */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition effects */
}

.hero-section .btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-3px); /* Lift the button slightly on hover */
}

.hero-section .btn:active {
    background-color: #003d80; /* Even darker blue on click */
    transform: translateY(1px); /* Button presses down slightly on click */
}


/* Latest Episodes Section */
/* Latest Episodes Section */
.latest-episodes {
    background-color: #F8F9FA; /* Light background color for contrast */
}

.latest-episodes h2 {
    font-size: 2.5rem;
    color: var(--accent-color); /* Blue accent color */
}

/* Episode Card Styles */
.episode-card {
    border: 1px solid #ddd; /* Light border */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden;
    background-color: #FFF; /* White background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transitions */
}

.episode-card img {
    width: 100%;
    height: auto;
}

.episode-info {
    padding: 15px;
    text-align: center;
}

.episode-info h3 {
    font-size: 1.5rem;
    color: #333; /* Dark text color */
    margin-bottom: 10px;
}

.episode-info .episode-details {
    font-size: 1rem;
    color: #666; /* Lighter text color */
    margin-bottom: 15px;
}

.episode-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.episode-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; /* Space between icon and text */
    font-size: 0.875rem; /* Slightly smaller text for buttons */
    padding: 8px 20px; /* Padding for button size */
}
.episode-buttons .btn i {
    font-size: 1rem; /* Icon size */
}
.btn-primary {
    background-color: var(--accent-color); /* Blue button */
    color: #FFF; /* White text */
    border: none;
}

.episode-buttons .btn-primary {
    background-color: var(--accent-color); /* Blue button */
    color: #FFF; /* White text */
}

.bookmark-btn {
    border-color: var(--accent-color); /* Border color */
    color: var(--accent-color); /* Text color */
}

.bookmark-btn:hover {
    background-color: var(--accent-color); /* Background color on hover */
    color: #FFF; /* White text */
}

.episode-card:hover {
    transform: scale(1.02); /* Slight zoom effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}





/* Featured Podcasts Section */
.featured-podcasts {
    background-color: #EAEDED; /* Slightly different background color for contrast */
}

.featured-podcasts h2 {
    font-size: 2.5rem;
    color: var(--accent-color); /* Blue accent color */
    margin-bottom: 30px;
}

/* Podcast Card Styles */
.podcast-card {
    border: 1px solid #ddd; /* Light border */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden;
    background-color: #FFF; /* White background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transitions */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.podcast-card img {
    width: 100%;
    height: auto;
}

.podcast-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.podcast-info h3 {
    font-size: 1.75rem;
    color: #333; /* Dark text color */
    margin-bottom: 15px;
}

.podcast-info p {
    font-size: 1rem;
    color: #666; /* Lighter text color */
    margin-bottom: 20px;
}

.podcast-info .btn {
    font-size: 0.875rem; /* Slightly smaller text for buttons */
    padding: 10px 20px; /* Padding for button size */
    margin-right: 10px;
}

.podcast-info .btn-primary {
    background-color: var(--accent-color); /* Blue button */
    color: #FFF; /* White text */
}

.podcast-info .btn-outline-secondary {
    border-color: var(--accent-color); /* Border color */
    color: var(--accent-color); /* Text color */
}

.podcast-info .btn-outline-secondary:hover {
    background-color: var(--accent-color); /* Background color on hover */
    color: #FFF; /* White text */
}

.podcast-card:hover {
    transform: scale(1.02); /* Slight zoom effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}





/* Video and Description Section */
/* Video and Description Section */
.video-description-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.video-description-section .custom-video {
    width: 100%; /* Make the video take the full width of its container */
    height: auto; /* Adjust height automatically to maintain aspect ratio */
    max-height: 500px; /* Set a maximum height to prevent overflow */
    object-fit: cover; /* Ensures the video covers the container without stretching */
    border-radius: 10px; /* Optional: Adds rounded corners to the video */
}

.video-description-section .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
}
/* Video and Description Section */
.video-description-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.video-description-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.video-description-section .custom-video {
    width: 100%; /* Make the video responsive */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Prevent overflow */
    border-radius: 10px; /* Optional: Adds rounded corners to the video */
}

.video-description-section .col-md-6 {
    flex: 1; /* Allow both columns to take equal space */
}

.video-description-section .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
}

.video-description-section .section-description {
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
    line-height: 1.6;
}

.video-description-section .btn-primary {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    max-width: 100%; /* Ensure button doesn't overflow */
}

.video-description-section .btn-primary i {
    margin-right: 10px;
}





/* Footer Section */
/* Footer Section */
.footer-section {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 30px 0;
    font-size: 14px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    padding-left: 0;
    margin: 0;
}

.footer-section ul li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section .form-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section .form-inline .form-control {
    border-radius: 50px 0 0 50px;
    margin-right: 10px; /* Add spacing between input and button */
    border: 1px solid #007bff; /* Border color to match button */
    background-color: #fff; /* Background color for input */
    color: #333; /* Text color for input */
}

.footer-section .form-inline .btn-primary {
    border-radius: 0 50px 50px 0;
    background-color: #007bff; /* Background color for button */
    border: none; /* Remove border for button */
    color: #fff; /* Text color for button */
}

.footer-section .form-inline .btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.footer-section .social-icons a {
    font-size: 24px;
    color: #ccc; /* Social icons color */
    transition: color 0.3s ease;
}

.footer-section .social-icons a:hover {
    color: #007bff; /* Social icons color on hover */
}

/* Copyright */
.footer-section p {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section {
        padding: 20px 0;
    }

    .footer-section .form-inline {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section .form-inline .form-control,
    .footer-section .form-inline .btn-primary {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px; /* Add spacing below the button */
    }

    .footer-section .social-icons {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-section .social-icons a {
        font-size: 20px;
        margin: 0 10px;
    }

    .footer-section .footer-title {
        font-size: 16px;
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-section ul li {
        display: inline-block;
        margin: 0 10px; /* Adjust spacing for inline items */
    }

    .footer-section ul li a {
        display: block;
        margin-bottom: 5px; /* Add spacing between links */
    }
}



/* Upcoming Events Section */
.upcoming-events {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.upcoming-events h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.event-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.event-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.event-content {
    text-align: center;
}

.event-title {
    font-size: 1.5rem;
    margin-top: 15px;
    color: #333;
}

.event-date {
    font-size: 1rem;
    color: #777;
    margin: 10px 0;
}

.event-description {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
}

.event-card .btn-primary {
    margin-top: 15px;
}






/* Statistics Counter Section */
.stats-counter {
    background-color: #f0f0f0;
    padding: 60px 0;
}

.stats-counter h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.stat-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin: 10px 0;
}

.stat-label {
    font-size: 1.2rem;
    color: #666;
}


.interaction-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.interaction-section .section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.comment-box h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.comment-box .form-group {
    margin-bottom: 15px;
}

.comments-list h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.comment {
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    border-radius: 5px;
}



.quiz-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.quiz-section .section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.quiz-question h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.quiz-question .form-check-label {
    font-size: 1rem;
}

.quiz-results {
    text-align: center;
    font-size: 1.5rem;
}





/* Supported By Section */
.supported-section {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.supported-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.supported-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.supported-icon:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .supported-icon {
        width: 35px;
        height: 35px;
    }
}
