/* Reset some default styles for consistency */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Define some global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    min-height: 40vh;
    max-height:40vh;
}




.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    min-height: 45vh;
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.search {
    width: 10px;
    height: auto;
    
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

/* Hero section styles */
.hero {
    background-image: url('hero-bg-image.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
    min-height: 60vh;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #f00;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

/* Featured episodes section styles */
.featured-episodes {
    /* Add your styles for featured episodes here */
}

/* About section styles */
.about {
    /* Add your styles for the About section here */
}

/* Blog section styles */
.blog {
    /* Add your styles for the Blog section here */
}

/* Testimonials section styles */
.testimonials {
    /* Add your styles for the Testimonials section here */
}

/* Subscribe/Newsletter section styles */
.subscribe-newsletter {
    /* Add your styles for the Subscribe/Newsletter section here */
}

/* Contact section styles */
.contact {
    /* Add your styles for the Contact section here */
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style: none;
}

footer ul li {
    display: inline;
    margin-right: 20px;
}

footer a {
    text-decoration: none;
    color: #fff;
}

.social-icons {
    /* Add your styles for social media icons here */
}

.copyright {
    margin-top: 20px;
}
