:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --text-color: #2C3E50;
    --background-color: #FFF5F5;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

/* Header & Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 32px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-links .cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-links .cta-button:hover {
    background-color: #ff5252;
    color: white;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 100;
}

.burger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger-menu span:nth-child(1) {
    top: 0px;
}

.burger-menu span:nth-child(2) {
    top: 10px;
}

.burger-menu span:nth-child(3) {
    top: 20px;
}

.burger-menu.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    margin-top: 4rem;
    background: #fff5f5;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
}

.hero-image .highlight-element {
    transition: transform 0.3s ease;
}

.hero-image .highlight-element:hover {
    transform: scale(1.02);
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.cta-button, .primary-button, .secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
}

.primary-button {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
    position: relative;
}

.primary-button:hover {
    background-color: #ff5252;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.secondary-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-button:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

/* Highlight Circle Animation */
.highlight-circle {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.highlight-circle canvas {
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.2));
}

/* Podcast Section */
.podcast-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.podcast-author {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.podcast-episodes {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.episode-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 107, 107, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.1);
    border-color: var(--primary-color);
}

.episode-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.episode-card p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    flex-grow: 1;
}

.episode-card .primary-button {
    width: 100%;
    text-align: center;
}

.episode-card::before {
    content: "🎙️";
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Training Section */
.training-section {
    padding: 6rem 2rem;
    background: #fff5f5;
}

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

.training-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.1);
    border-color: var(--primary-color);
}

.training-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.training-card p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.training-card ul {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.training-card li {
    padding: 0.8rem 0;
    margin-bottom: 0.5rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.training-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.training-card .primary-button {
    width: 100%;
    margin-top: 2rem;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: #fff5f5;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Section Headers */
section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Footer Styling */
.footer {
    padding: 4rem 2rem;
    background: #2C3E50;
    color: white;
}

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

.footer-links a,
.social-links a,
.powered-by a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.social-links a:hover,
.powered-by a:hover {
    color: var(--primary-color);
}

.powered-by {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .burger-menu {
        display: block;
        margin-right: 0.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .hero-section {
        padding: 1rem;
        min-height: 100vh;
        margin-top: 0;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }

    .podcast-section,
    .training-section,
    .about-section,
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
        padding-top: 4rem;
        justify-content: center;
        align-items: center;
    }

    h1 {
        display: none;
    }

    .hero-text {
        max-width: 100%;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 5rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .primary-button, .secondary-button {
        width: 100%;
        min-width: auto;
    }

    .hero-image {
        max-width: 100%;
        padding: 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem 0;
    }

    .footer-links, .social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        width: 100%;
    }

    .powered-by {
        order: 3;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .podcast-episodes, .training-cards {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
