@font-face {
    font-family: 'Blanco';
    src: url('Blanco-Regular.otf') format('opentype');
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

/* ── Header ── */
header {
    background-color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    transition: transform 0.5s, background-color 0.5s;
    z-index: 1000;
    box-sizing: border-box;
}

.hidden-header {
    transform: translateY(-100%);
    background-color: rgba(255, 255, 255, 0.9);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav-links a.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.KB-logo a {
    display: block;
    line-height: 0;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-links img {
    width: 15px;
}

.contact-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
}

/* ── Hero ── */
.hero {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero img {
    filter: brightness(75%);
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 85%;
    color: white;
    font-size: 32px;
    font-family: 'Blanco', serif;
    font-weight: 300;
    text-align: center;
    width: 100%;
}

/* ── Content sections — shared base ── */
.content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1000px;
    margin: auto;
}

.intro-text {
    flex: 1;
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1000px;
}

.CWK-Wordmark img {
    width: 100%;
    height: 100%;
    min-width: 200px;
    display: block;
    padding-right: 20px;
    padding-left: 0;
    max-width: 1000px;
}

.CWK-image img {
    width: 100%;
    height: 100%;
    max-width: 500px;
    border-radius: 15px;
    margin-left: 20px;
}

.CWF-text {
    flex: 1;
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1000px;
}

.CWF-Wordmark img {
    width: 100%;
    height: 100%;
    min-width: 200px;
    display: block;
    padding-right: 0;
    padding-left: 20px;
    max-width: 1000px;
}

.CWF-image img {
    width: 100%;
    height: 100%;
    max-width: 500px;
    border-radius: 15px;
    margin-left: 20px;
}

/* ── Inner page intro ── */
.page-intro {
    padding: 140px 20px 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-intro h1 {
    font-family: 'Blanco', serif;
    font-weight: 300;
    font-size: 48px;
    margin-bottom: 10px;
}

.page-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* ── Meet Kirsty ── */
.bio-section {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    max-width: 1000px;
    margin: 40px auto 80px;
    padding: 0 50px;
}

.bio-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 15px;
}

.bio-text h2 {
    font-family: 'Blanco', serif;
    font-weight: 300;
    margin-top: 0;
}

.bio-text p {
    line-height: 1.7;
    margin-bottom: 16px;
}

.bio-mission {
    font-style: italic;
    border-left: 3px solid #e0cde0;
    padding-left: 20px;
    margin: 30px 0 0;
    color: #555;
    line-height: 1.7;
}

/* ── Coaching ── */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 60px;
    padding: 0 40px;
}

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 25px;
}

.service-card h3 {
    font-family: 'Blanco', serif;
    font-weight: 300;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 12px;
}

.service-card p {
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.coaching-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    padding: 0 40px;
    font-size: 18px;
}

.coaching-cta a {
    color: #333;
    font-weight: bold;
}

/* ── Contact ── */
.contact-content {
    max-width: 600px;
    margin: 40px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.contact-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.email-link {
    font-family: 'Blanco', serif;
    font-size: 22px;
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid #e0cde0;
}

.email-link:hover {
    border-bottom-color: #333;
}

/* ── Stub pages ── */
.stub-content {
    padding: 140px 20px 80px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.stub-content h1 {
    font-family: 'Blanco', serif;
    font-weight: 300;
    font-size: 48px;
    margin-bottom: 20px;
}

/* ── Footer ── */
footer {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

.footer-links {
    margin-top: 8px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ── Fade-in animation ── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.0s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        text-align: center;
    }

    .CWK-Wordmark,
    .CWF-Wordmark {
        order: -1;
        width: 100%;
        margin-bottom: 20px;
    }

    .bio-section {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .bio-image img {
        max-width: 100%;
    }

    .service-cards {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .page-intro h1,
    .stub-content h1 {
        font-size: 36px;
    }
}
