@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=Open+Sans:wght@400;600&display=swap');

:root {
    --color-orange: #f2aa5c;        /* Oranje (nav, balken) */
    --color-teal: #3b9f98;          /* Groen/blauw (actieve nav, titel hero) */
    --color-blue-bg: #a3c4cc;       /* Lichtblauwe achtergrond (logo binnenkant, accordeon sectie) */
    --color-quote-bg: #d0dede;      /* Grijze/blauwe achtergrond voor quote */
    --color-white: #ffffff;
    --color-text: #666666;          /* Standaard tekstkleur */
    --color-heading: #555555;
    
    --font-primary: 'Open Sans', Arial, sans-serif;
    --font-heading: 'Oswald', sans-serif; /* Voor de smalle strakke letters uit het voorbeeld */
}

/* ==========================================================================
   CSS Reset & Basis Typografie
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6em;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-orange);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    font-weight: 400;
}

h3 {
    margin: 0.8em 0;
}

p {
    margin-bottom: 1em;
}

.container {
    width: 90%;
    max-width: 1080px;
    margin: auto;
    position: relative;
}

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-link-container {
    background-color: var(--color-orange);
    text-align: right;
    padding: 5px 20px;
}

.top-link {
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
}
.top-link:hover {
    color: var(--color-white);
}

#main-header {
    background-color: var(--color-white);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

@keyframes rotateLogo {
    from {
        transform: rotate(90deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.logo-img {
    height: 140px;
    width: auto;
    animation: rotateLogo 1.5s ease-out 2s both;
    mix-blend-mode: multiply;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.main-navigation a {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
}

.main-navigation a:hover, .main-navigation a.active {
    color: var(--color-teal);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-section h1 {
    position: relative;
    z-index: 2;
    font-size: 60px;
    color: var(--color-teal);
    letter-spacing: 2px;
    text-shadow: 1px 1px 4px rgba(255,255,255,0.8);
}

/* ==========================================================================
   Towns Bar
   ========================================================================== */
.towns-bar {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 15px 0;
    font-size: 20px;
    font-family: var(--font-heading);
}
.towns-bar p { margin: 0; }

/* ==========================================================================
   Massages Accordion Section
   ========================================================================== */
.massages-section {
    background-color: var(--color-blue-bg);
    padding: 50px 0;
}

.accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.accordion-item {
    background-color: var(--color-white);
    border-radius: 30px; /* Pil vorm */
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 30px;
    text-align: left;
    font-size: 20px;
    font-family: var(--font-heading);
    color: var(--color-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header .icon {
    color: var(--color-white);
    background-color: var(--color-orange);
    font-size: 18px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content .content-inner {
    padding: 0 30px 20px 30px;
}
.accordion-content p {
    margin-bottom: 10px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.profile-box {
    text-align: left;
}

.profile-img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.profile-box h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.more-link {
    color: var(--color-teal);
    font-size: 14px;
}

.form-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-field input, .form-field textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 20px; /* Pil vorm voor inputs */
    font-family: var(--font-primary);
    font-size: 14px;
    background-color: #efefef;
    color: #333;
}

.form-field input:focus, .form-field textarea:focus {
    outline: 2px solid var(--color-teal);
}

.form-field.full-width {
    grid-column: span 2;
}

.form-field textarea {
    height: 150px;
    resize: vertical;
    border-radius: 15px;
}

.submit-field {
    text-align: right;
}

.submit-btn {
    background-color: var(--color-white);
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
    padding: 10px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

/* ==========================================================================
   Over Mij Pagina Specifiek
   ========================================================================== */
.about-section {
    padding: 50px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;
}
.quote-bubble {
    background-color: var(--color-quote-bg);
    padding: 40px 30px;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-heading);
    line-height: 1.6;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.quote-icon {
    font-size: 30px;
    color: var(--color-teal);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    border-radius: 50%;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-teal);
    font-family: serif;
}

/* ==========================================================================
   Algemene Voorwaarden Specifiek
   ========================================================================== */
.terms-section {
    padding: 50px 0;
}
.terms-content p {
    margin-bottom: 20px;
}
.terms-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

/* ==========================================================================
   Modal (Pop-up)
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: slideUp 0.3s;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-heading);
}

.close-btn:hover {
    color: var(--color-orange);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    .accordion-grid, .contact-grid, .contact-form-grid, .about-grid {
        grid-template-columns: 1fr;
    }
}
