/* --- COACH PROFIEL: PREMIUM & RUSTGEVEND --- */
body {
    --accent-color: #68418f;  /* Diepgroen */
background-color: #d6b38c;
    --secondary-color: #083c34; /* Subtiel groen */
  
}
#coach-detail-page .profile-hero {
    padding-top: calc(var(--nav-height) + 60px); 
    padding-bottom: 60px;
    background-color: var(--bg-pale);
    position: relative;
    overflow: hidden;
}

/* De subtiele groene gloed op de achtergrond */
#coach-detail-page .profile-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 60, 52, 0.04) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.profile-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

/* Tekst styling */
.profile-info-side {
    flex: 1.2;
}

.profile-info-side h4 {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.profile-info-side h1 {
    font-family: 'Gilda Display', serif;
    font-size: 5rem;
    color: var(--accent-color); /* Diepgroen */
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.lead {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* De Grote Ronde Foto */
.main-profile-img {
    width: 480px;
    height: 480px;
    object-fit: cover;
    border-radius: 50%;
    border: 15px solid var(--white);
    box-shadow: 0 30px 60px rgba(8, 60, 52, 0.12);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-profile-img:hover {
    transform: scale(1.02) rotate(2deg);
}

/* Tags in Groen */
.profile-tags {
    margin-bottom: 3rem;
}

.profile-tags span {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    margin-right: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(8, 60, 52, 0.15);
}

/* Content Sectie */
.details-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 6rem;
    padding: 40px 0 100px;
}

.bio-text h2 {
    font-family: 'Gilda Display', serif;
    font-size: 3rem;
    color: #68418f;
    margin-bottom: 1.5rem;
}

.bio-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #68418f ;
}

/* De Contactkaart */
.contact-card {
background: var(--white);
    padding: 3.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 40px 80px #68418f;
    position: sticky;
    top: 120px;
    text-align: center;
    border-top: 8px solid #68418f;
}

.contact-card h3 {
    font-family: 'Gilda Display', serif;
    font-size: 2rem;
    color: #68418f;
    margin-bottom: 1rem;
}

/* Vinkjes bij specialisaties */
.specialty-list {
    list-style: none;
    margin-top: 2rem;
}

.specialty-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.specialty-list i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.socials a { color: #68418f; margin-left: 15px; font-size: 1.2rem; transition: 0.3s; }
.socials a:hover { color: #68418f; }

/* Responsive */
@media (max-width: 992px) {
    .profile-flex { flex-direction: column; text-align: center; }
    .main-profile-img { width: 320px; height: 320px; }
    .profile-info-side h1 { font-size: 3.5rem; }
    .details-grid { grid-template-columns: 1fr; }
}


/* --- NAVBAR STYLING --- */
.navbar {
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.nav-logo img {
    height: 50px;
}

.logo-text {
    font-family: 'Gilda Display', serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: #68418f;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #68418f;
}

/* De opvallende knop */
.nav-cta {
    background-color: #68418f;
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    transition: 0.3s ease;
}

.nav-cta:hover {
    background-color: #4a2c6a;
    transform: translateY(-2px);
}

/* Mobiel Menu (Hamburger) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #68418f;
    border-radius: 2px;
}

/* Mobiele Responsive Regels */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }
}

/* --- NAVIGATIE STYLING --- */
.main-nav {
    width: 100%;
    height: 85px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    position: fixed; /* Blijft bovenin staan bij scrollen */
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-inner {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

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

.logo-name {
    font-family: 'Gilda Display', serif;
    color: #68418f; /* Jouw paarse kleur */
    font-size: 1.4rem;
    font-weight: bold;
}

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

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

.nav-links a:hover {
    color: #68418f;
}

/* De paarse knop "Vind een Coach" */
.cta-button {
    background-color: #68418f;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 50px;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #563678;
    transform: translateY(-2px);
}

/* --- FIX VOOR DE CONTENT --- */
/* Zorg dat de hero-sectie niet achter de navigatiebalk verdwijnt */
#coach-detail-page .profile-hero {
    padding-top: 130px; /* Ruimte voor de navigatiebalk + extra witruimte */
    background-color: #d6b38c; /* Jouw zandkleur */
}

/* Mobiele optimalisatie */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Verberg links op mobiel tenzij je een hamburger menu toevoegt */
    }
    
    .logo-name {
        font-size: 1.1rem;
    }
}   