:root {
    --primary: #00998E;
    --accent1: #FF6B5D;
    --accent1-hover: #FF8A7E;
    --accent2: #F6C667;
    --accent2-hover: #FFD57E;
    --text-primary: #2E2E2E;
    --text-secondary: #5C5F62;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 4rem;
    background-color: #f9f9f9;
    min-height: 80vh;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.hero-content h3 {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-bullets ul {
    list-style: none;
}

.hero-bullets li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.hero-bullets li::before {
    content: "•";
    color: var(--accent1);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--accent1-hover);
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem;
    text-align: center;
    background-color: white;
}

.newsletter-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.ml-form-embedContainer {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.ml-form-formContent {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.ml-form-embedSubmit button {
    padding: 1rem 2rem;
    background-color: var(--accent1);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
}

.ml-form-embedSubmit button:hover {
    background-color: var(--accent1-hover);
}

.ml-form-embedSubmit button.loading {
    background-color: var(--accent1);
    opacity: 0.7;
}

.ml-form-successContent {
    text-align: center;
    padding: 2rem;
}

.ml-form-successContent h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .ml-form-embedSubmit {
        margin-top: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-bullets {
        text-align: left;
        max-width: 600px;
        margin: 0 auto;
    }

    .newsletter-form form {
        flex-direction: column;
    }
}

/* Listen Section */
.listen {
    margin-top: 2rem;
    text-align: center;
}

.listen p {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.platform-placeholders {
    display: inline-block;
    background-repeat: no-repeat;
    border-radius: 5px;
    margin: 0 5px 5px 0;
    text-indent: -9000px;
    background-position: center;
    background-size: contain;
    height: 40px;
    width: 165px;
}

.platform-placeholders.apple {
    background-image: url('assets/podcastbuttons/Apple-podcasts.svg');
}

.platform-placeholders.spotify {
    background-image: url('assets/podcastbuttons/Spotify.svg');
}

.platform-placeholders.youtube {
    background-image: url('assets/podcastbuttons/YouTube.svg');
}

.platform-placeholders.rssfeed {
    background-image: url('assets/podcastbuttons/RSS-feed.svg');
}

.platform-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Hosts Section */
.hosts-section {
    padding: 4rem;
    background-color: #f9f9f9;
}

.hosts-section h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 3rem;
}

.hosts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.host-profile {
    text-align: center;
}

.host-image {
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.host-profile h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.host-title {
    color: var(--accent1);
    font-weight: 600;
    margin-bottom: 1rem;
}

.host-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        padding: 2rem;
    }

    .hosts-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hosts-section {
        padding: 2rem;
    }

    .newsletter-section {
        padding: 2rem;
    }
}
