/* Global Reset */
:root {
    --primary-color: #fbbf24;
    /* Gold */
    --primary-hover: #d97706;
    /* Darker Gold */
    --bg-dark: #0f172a;
    /* Deep Midnight Blue */
    --bg-darker: #020617;
    /* Even Darker Blue */
    --text-light: #f8fafc;
    /* Off-white */
    --text-muted: #94a3b8;
    /* Greyish Blue */
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 1.5rem 0;
    /* Reduced from 2.5rem */
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    /* Reduced from 2rem */
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.highlight {
    color: var(--primary-color);
}

.bg-darker {
    background-color: var(--bg-darker);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.25rem 3rem;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 10;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 50px;
    /* Adjust based on logo proportions */
    width: auto;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1552069642-16a7f9202157?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    /* Replaced with generic fitness/lifestyle placeholder */
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
    /* Reduced from 4rem */
    /* Reduced from 6rem */
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
}

.sub-headline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
}

.availability {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* About Section */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    /* Reduced from 2rem */
    align-items: center;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    margin-bottom: 1rem;
    /* Reduced from 1.5rem */
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 5px;
}

/* Target Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Audience Grid - Redesigned */
.audience-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

.audience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.audience-card:hover .audience-bg {
    transform: scale(1.05);
}

.audience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.2));
    z-index: 2;
}

.audience-content {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    width: 100%;
}

.audience-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.audience-content p {
    color: #e2e8f0;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: var(--font-body);
}

/* Learning Section */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.learn-item {
    background-color: var(--bg-dark);
    padding: 0;
    /* Remove padding to let image fill top */
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Replace border-left with subtle border */
    overflow: hidden;
    transition: var(--transition);
}

.learn-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.learn-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.learn-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.learn-item:hover .learn-img-wrapper img {
    transform: scale(1.05);
}

.learn-item .content {
    padding: 1.5rem;
    position: relative;
}

.learn-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(251, 191, 36, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    font-family: var(--font-heading);
    margin: 0;
}

.learn-item h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    padding-right: 2rem;
    /* Make space for number */
}

.learn-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Coach Section */
.coach-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    /* Reduced from 3rem */
    align-items: start;
}

.coach-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.coach-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.coach-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.bio-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.bio-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
    padding-bottom: 0.25rem;
    display: inline-block;
}

.check-list {
    list-style: none;
}

.check-list li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.check-list li strong {
    color: #e2e8f0;
}

.philosophy {
    font-style: italic;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--white);
}

.credentials-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.credentials-badges span {
    background: rgba(251, 191, 36, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.credentials-badges i {
    margin-right: 0.5rem;
}

/* Details Section */
.details-box {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 3rem;
    /* Reduced from 4rem */
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detail-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.detail-item h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.detail-item p {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

/* Trust Section */
.trust-section {
    padding: 2rem 0;
    /* Reduced from 2.5rem */
    background-color: var(--bg-dark);
    text-align: center;
}

.trust-content {
    max-width: 600px;
    margin: 0 auto;
}

.trust-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-content p {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--white);
}

/* Footer */
.footer-section {
    background-color: var(--bg-darker);
    padding: 2.5rem 0 1.5rem;
    /* Reduced from 3rem */
    text-align: center;
}

.footer-cta h2 {
    margin-bottom: 1rem;
}

.form-wrapper-placeholder {
    margin-top: 2rem;
}

.micro-copy {
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.7;
}

.copyright {
    margin-top: 2rem;
    /* Reduced from 3rem/5rem */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
    .h1 {
        font-size: 2.5rem;
    }

    .grid-2-col,
    .coach-wrapper,
    .bio-details {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .coach-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .navbar {
        text-align: center;
    }

    .logo-wrapper {
        justify-content: center;
    }

    .features-list li,
    .check-list li {
        justify-content: center;
        text-align: left;
    }

    .philosophy {
        text-align: left;
    }

    .credentials-badges {
        justify-content: center;
    }

    .learn-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .learn-item .number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .credentials {
        justify-content: center;
    }

    .details-box {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: 3.5rem 0;
    }
}