/* =========================================
   KLEUREN & BASIS
========================================= */
:root {
    --soft-beige: #F8F4F1;
    --warm-brown: #3A2E2A;
    --accent-sand: #D8C3A5;
    --accent-hover: #A0522D;
    --section-beige-1: #FFFFFF;
    --section-beige-2: #F8F4F1;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--section-beige-1);
    color: var(--warm-brown);
    margin: 0;
    scroll-behavior: smooth;
}

/* Sectiekleuren */
#info { background-color: var(--section-beige-1); }
#coaching { background-color: var(--section-beige-2); }
#overmij { background-color: var(--section-beige-1); }
#contact { background-color: var(--section-beige-2); }

section {
    padding: 4rem 2rem;
    border-top: 2px solid var(--accent-sand);
}

section[id] {
    scroll-margin-top: 50px;
}


/* --------------------------------------------------
   LINKS
-------------------------------------------------- */
a.intake-link {
    color: var(--accent-hover);
    font-weight: 200;
    text-decoration: none;
    text-underline-offset: none;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

a.intake-link:hover {
    color: var(--warm-brown);
    text-decoration-color: var(--warm-brown);
}




/* =========================================
   NAVBAR
========================================= */
.navbar-custom {
    background-color: var(--section-beige-1);
    border-bottom: 2px solid var(--accent-sand);
}

.navbar-nav .nav-link {
    color: var(--warm-brown);
}

.navbar-nav .nav-link:hover {
    color: var(--accent-hover);
}

.navbar-toggler {
    background-color: var(--accent-sand);
    border: none;
    padding: 8px;
    border-radius: 6px;
}

/* Hamburger */
.hamburger {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: var(--warm-brown);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.logo-nav {
    height: 80px;
}

.logo-tekst {
    width: 98%;
    max-height: 100px;
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
    position: relative;
    height: 90vh;
    background: url('images/achtergrond.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(248, 244, 241, 0.85);
    backdrop-filter: blur(1px);
}

.hero-section .content {
    position: relative;
    z-index: 2;
}

.header-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-coaching {
    background-color: var(--accent-sand);
    border: none;
    color: var(--warm-brown);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
}

.btn-coaching:hover {
    background-color: var(--accent-hover);
    color: #fff;
}

/* =========================================
   CARDS
========================================= */
.cards-1 .card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 20px;
}

/* =========================================
   OVER MIJ
========================================= */
.profile-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .profile-photo {
        width: 60vw;
        height: 60vw;
        max-width: 150px;
        max-height: 150px;
        margin-bottom: 25px;
    }
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links .social-icon img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.social-links .social-icon img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

@media (min-width: 992px) {
    #overmij .col-md-4 {
        position: relative;
    }

    #overmij .social-links {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -60px;
        justify-content: center;
    }

    #overmij .row {
        margin-bottom: 80px;
    }
}

@media (max-width: 768px) {
    #overmij .social-links {
        margin-bottom: 25px; /* ruimte tussen iconen en tekst */
    }
}

/* =========================================
   CONTACT FORM
========================================= */
.contact-form {
    max-width: 600px;
    margin: auto;
}

.contact-form .form-control {
    border: 2px solid var(--accent-sand);
    border-radius: 8px;
    padding: 12px;
    font-size: 16px !important; /* iOS fix */
}

.form-response {
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
}

/* =========================================
   FOOTER
========================================= */
footer {
    background-color: var(--section-beige-1);
    text-align: center;
    padding: 1rem;
    border-top: 2px solid var(--accent-sand);
}



/* =========================================
   SCROLL TO TOP BUTTON
========================================= */
.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    background-color: transparent;
}

.scroll-top-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scroll-top-btn img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.scroll-top-btn.show {
    opacity: 1;
    pointer-events: auto;
}

/* =========================================
   IOS SAFARI ZOOM FIX
========================================= */
input,
textarea,
select,
button {
    font-size: 16px !important;
    -webkit-text-size-adjust: 100%;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-sand);
}
