/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF69B4;
    --primary-dark: #E75BA0;
    --primary-light: #FFB6D9;
    --secondary-color: #5DADE2;
    --accent-blue: #87CEEB;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --pink-gradient-start: #FF69B4;
    --pink-gradient-end: #FF1493;
    --blue-gradient-start: #87CEEB;
    --blue-gradient-end: #5DADE2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0 1rem 0;
    gap: 1rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#logo-img {
    height: 100px;
    width: auto;
    max-width: 100%;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

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

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

.nav-link.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink-gradient-start) 0%, var(--secondary-color) 100%);
    background-image: 
        linear-gradient(135deg, rgba(255, 105, 180, 0.95) 0%, rgba(93, 173, 226, 0.95) 100%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 10 L90 50 L50 90 L10 50 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover, 100px 100px;
    margin-top: 150px;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.btn-hero {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--gray-light);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking .section-header {
    margin-bottom: 1.5rem;
}

.booking .section-subtitle {
    font-size: 1rem;
    margin: 1rem auto 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--text-dark);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
}

.features-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coach-highlight {
    width: 100%;
    background: linear-gradient(135deg, var(--pink-gradient-start) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    padding: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.coach-highlight h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.coach-highlight p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
}

.coach-qualities {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
}

.quality-item i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== PAYMENT SECTION ===== */
.payment-section {
    background: var(--white);
    padding: 2rem 0;
    border-top: 1px solid var(--gray-medium);
}

.payment-container-discreet {
    max-width: 600px;
    margin: 0 auto;
    background: var(--gray-light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.payment-header-discreet {
    margin-bottom: 1.5rem;
}

.payment-header-discreet h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.payment-header-discreet p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.venmo-content-discreet {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.venmo-qr-small {
    flex-shrink: 0;
}

.qr-code-small {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.venmo-info-compact {
    text-align: left;
}

.venmo-username-small {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #008CFF;
    margin-bottom: 0.75rem;
}

.btn-venmo-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #008CFF;
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-venmo-small:hover {
    background: #0077D6;
    transform: translateY(-2px);
}

.btn-venmo-small i {
    font-size: 1rem;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    background: var(--white);
    padding: 3rem 0;
}

.instagram-section .section-header {
    margin-bottom: 1.5rem;
}

.instagram-cta {
    text-align: center;
    margin-top: 0;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--pink-gradient-start) 0%, var(--pink-gradient-end) 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.btn-instagram i {
    font-size: 1.3rem;
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: var(--gray-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-medium);
}

.pricing-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.price-description {
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: auto;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.btn-pricing {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
}

.btn-pricing:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== STORE SECTION ===== */
.store-section {
    background: var(--white);
    padding: 5rem 0;
}

.store-banner {
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, var(--pink-gradient-start) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.banner-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.banner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-store:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: var(--gray-light);
}

.btn-store i {
    font-size: 1.3rem;
}

.store-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.store-feature {
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.store-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white);
    border: 2px solid var(--primary-color);
}

.store-feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.store-feature h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.store-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== BOOKING SECTION ===== */
.booking {
    background: var(--gray-light);
    padding: 3.5rem 0;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calendly-inline-widget {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    overflow: hidden;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.info-card {
    text-align: center;
    padding: 1.25rem 1rem;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0;
}

.contact-content {
    text-align: center;
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 1.5rem 0;
}

.footer p {
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-content {
        padding: 1rem 0;
    }

    #logo-img {
        height: 70px;
    }

    .nav-links {
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        display: none;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid var(--gray-medium);
    }

    .nav-link.btn-primary {
        margin-top: 1rem;
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: block;
        top: 30px;
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .booking-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .store-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .venmo-content-discreet {
        flex-direction: column;
        gap: 1.5rem;
    }

    .venmo-info-compact {
        text-align: center;
    }

    .banner-content h3 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .store-banner {
        padding: 3rem 1.5rem;
    }

    .btn-store {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }

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

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    #logo-img {
        height: 60px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 3rem;
    }

    .store-feature {
        padding: 1.5rem;
    }

    .store-feature i {
        font-size: 2.5rem;
    }

    .payment-container-discreet {
        padding: 1.5rem;
    }

    .qr-code-small {
        width: 100px;
        height: 100px;
    }

    .btn-venmo-small {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
    }

    .banner-content h3 {
        font-size: 1.6rem;
    }

    .banner-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .store-banner {
        padding: 2.5rem 1rem;
    }

    .btn-store {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}
