/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1f1f1f;
    color: #fff;
}

.container {
    width: 90%;
    margin: 0 auto;
}

.container img {
    width: 30%;
}


h1, h2, h3 {
    color: #fff;
}

/* Header */
header {
    background-color: #222;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5rem;
    text-align: center;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.2rem;
}

nav ul li a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    background-image: url('images/AFBanner.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000,-2px 2px 0 #000, 2px 2px 0 #000; color: #0c705d;
    color: #01d8af;
    margin-bottom: 20px;
    
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,-1px 1px 0 #000, 1px 1px 0 #000; color: black; 
    color: #fff;
}

.cta-button {
    background-color: #01d8af;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,-1px 1px 0 #000, 1px 1px 0 #000; color: black;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #0c705d;
}

/* Episodes Section */
.episodes {
    padding: 50px 0;
    background-color: #333;
}

.episode-list {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.episode-card {
    background-color: #444;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.episode-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.episode-card h2 {
     color: #01d8af;
     min-height: 40px;
}

.episode-card h3 {
    margin: 10px 0;
}

.episode-card p {
    font-size: 1rem;
    color: #ccc;
    min-height: 80px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.episode-card a {
    margin-top: 10px;
}

/* About Section */
#about {
    padding: 50px 0;
    background-color: #222;
    text-align: center;
}

#about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Support Section */
.support {
    background-color: #444;
    padding: 50px 0;
    text-align: center;
}

.support p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

.social-links a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
}

.social-links a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .episode-list {
        flex-direction: column;
        align-items: center;
    }

    .episode-card {
        width: 80%;
        margin-bottom: 20px;
    }
}