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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #4ECDC4;
    --accent-green: #45B7B8;
    --text-color: #2C3E50;
    --text-light: #5D6D7E;
    --bg-color: #FFF8E7;
    --bg-light: #FEF9E7;
    --border-color: #E8DCC6;
    --hover-color: #E55A2B;
    --cream: #FFF8E7;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(to right, #2d5a5a 0%, #4ECDC4 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.header-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.tagline {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Sections */
.section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.section:first-of-type {
    border-top: none;
}

.section:nth-child(even) {
    background-color: var(--bg-light);
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.section-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Podcast Section */
.podcast-platforms {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.podcast-embed {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.podcast-embed h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.embed-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.podcast-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.platform-link svg {
    width: 24px;
    height: 24px;
}

.platform-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.platform-link.spotify {
    color: #1DB954;
    border-color: #1DB954;
}

.platform-link.spotify:hover {
    background: #1DB954;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(29, 185, 84, 0.3);
}

.platform-link.apple {
    color: #9933CC;
    border-color: #9933CC;
}

.platform-link.apple:hover {
    background: #9933CC;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(153, 51, 204, 0.3);
}

.platform-link.youtube {
    color: #FF0000;
    border-color: #FF0000;
}

.platform-link.youtube:hover {
    background: #FF0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

/* Events Section */
.events-container {
    text-align: center;
    margin-top: 40px;
}

.luma-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(to right, #2d5a5a 0%, #4ECDC4 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(45, 90, 90, 0.3);
}

.luma-link svg {
    width: 24px;
    height: 24px;
}

.luma-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(45, 90, 90, 0.4);
}

.events-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Newsletter Section */
.newsletter-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-container iframe {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* About Section */
.hosts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.host-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border-color);
}

.host-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.host-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    border: 4px solid var(--border-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.host-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

.host-bio {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    min-height: 60px;
    text-align: center;
}

.host-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.link-button {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-button.linkedin {
    background: #0077b5;
    color: white;
}

.link-button.linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
}

.link-button.calendly {
    background: var(--primary-color);
    color: white;
}

.link-button.calendly:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

/* Contact Section */
.contact-info {
    text-align: center;
    margin-top: 40px;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-color);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(to right, #2d5a5a 0%, #4ECDC4 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-logo {
        max-width: 90%;
        margin-bottom: 15px;
    }

    .tagline {
        font-size: 1rem;
    }

    .section {
        padding: 50px 0;
    }

    .section h2 {
        font-size: 2rem;
    }

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

    .podcast-links {
        flex-direction: column;
    }

    .platform-link {
        justify-content: center;
    }

    .host-links {
        flex-direction: column;
    }

    .link-button {
        width: 100%;
        text-align: center;
    }
}

