/* Reset and base styles */
:root {
    --primary-purple: #24AD69;
    --dark-bg: #000000;
    --text-white: #ffffff;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
}

/* Newsletter Banner */
.newsletter-banner {
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: var(--text-white);
    margin-left: 1rem;
    text-decoration: none;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--dark-bg);
}

.logo img {
    height: 40px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;

    padding: 12rem 0rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Black overlay with 60% opacity */
}

.hero-content {
    position: relative;
    z-index: 1; /* Ensures content is above the overlay */
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.join-now {
    background-color: #ffd700;
    color: #000;
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius:10px;
}

.join-now:hover {
    background-color: #e6c200;
}

/* Adweek Banner */
.adweek-banner {
    background-color: var(--primary-purple);
    padding: 2rem;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Podcast Platforms */
.platform-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 0;
}

.platform-icons img {
    height: 50px;
    filter: brightness(0) invert(1);
}

/* Organizations Section */
.supported-organizations {
    text-align: center;
    padding: 4rem 2rem;
}

.org-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.org-logos img {
    max-width: 150px;
    margin: 0 auto;
}

/* Latest Episodes */
.latest-episodes {
    padding: 8rem 8rem;
}

.episodes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.episode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.episode-card {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
}

.episode-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.listen-now {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    margin: 0 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }
}

.big-money-cta {
    background-color: #1a1a1a;

    padding: 50px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.big-money-cta h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.big-money-cta ul {
    list-style: none;
}
