/* 
* Salon Elegance - Japanese Headspa & Kapsalon
* Main Stylesheet
*/

/* ===== Base Styles ===== */
:root {
    --primary-color: #e6dfd3;     /* Lichte crème kleur */
    --secondary-color: #d9d1c2;   /* Iets donkerdere crème tint */
    --accent-color: #fcfaf7;      /* Zeer lichte, bijna witte crème */
    --text-color: #9c9286;        /* Zachte grijsbeige voor tekst */
    --light-text: #ffffff;        /* Wit voor tekst op donkere achtergronden */
    --dark-text: #7d7568;         /* Zachte taupe voor koppen */
    --border-color: #f2efe9;      /* Zeer lichte crème voor randen */
    --background-light: #ffffff;  /* Wit voor lichte achtergronden */
    --background-dark: #b5ada1;   /* Lichte taupe voor donkere achtergronden */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
    --transition: all 0.3s ease;
    --accent-cool: #dbd4c7;       /* Neutrale crème als accent */
    --accent-cool-light: #fdfcfb; /* Zeer lichte, bijna witte crème als lichte accent */
    --gradient-light: linear-gradient(to right, #fcfaf7, #f2efe9); /* Subtiele gradient voor achtergronden */
    --header-height: 70px;        /* Hoogte van de header voor spacing op desktop */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e6dfd3;
    opacity: 0.5;
}

.section-header h2 {
    text-align: center;
}

.section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    list-style: none;
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color);
    opacity: 0.8;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #e6dfd3;
    color: #7d7568;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(230, 223, 211, 0.2);
}

.btn:hover {
    background-color: #dbd4c7;
    color: #7d7568;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.btn-primary {
    background-color: #e6dfd3;
    color: #7d7568;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #e6dfd3;
    color: #7d7568;
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: #e6dfd3;
    color: #7d7568;
}

.btn-accent {
    background-color: #dbd4c7;
    color: #7d7568;
    box-shadow: 0 3px 10px rgba(219, 212, 199, 0.2);
}

.btn-accent:hover {
    background-color: #e6dfd3;
}

/* ===== Header ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 15px 0;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

header .container {
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 10px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 5px;
    padding: 5px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 80px;
    width: auto;
    margin-right: 10px;
    transition: height 0.3s ease;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    margin-bottom: 0;
    flex-wrap: nowrap;
    justify-content: center;
}

.nav-menu li {
    margin: 0 10px;
    white-space: nowrap;
}

.nav-menu a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 1001;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Fix voor content die onder de header verdwijnt */
main {
    padding-top: var(--header-height);
}

section:first-of-type {
    padding-top: 10px;
}

/* Specifieke aanpassing voor hero sectie */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(181, 173, 161, 0.3), rgba(181, 173, 161, 0.3)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    padding: 0;
}

/* Override container constraints for hero section */
.hero .container {
    max-width: none;
    width: 100%;
    height: 100vh;
    padding: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.hero-content {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-weight: 600;
    letter-spacing: 1px;
}

.hero h2:after {
    display: none;
}

.hero h2 span {
    color: #e6dfd3;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-logo {
    text-align: center;
    margin-bottom: 30px;
}

.hero-logo-image {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* ===== Services Section ===== */
.services {
    background-color: var(--accent-cool-light);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    opacity: 0.7;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Specifieke aanpassing voor iPad Pro en vergelijkbare tablets */
@media (min-width: 768px) and (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-card .service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 0.8rem 0;
    padding: 0 5px;
    color: var(--dark-text);
    transition: var(--transition);
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

.service-card p {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

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

/* ===== Head Spa Section ===== */
.headspa {
    background-color: var(--background-light);
    position: relative;
}

.headspa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.headspa-text h2 {
    margin-bottom: 20px;
}

.headspa-benefits {
    margin-bottom: 30px;
}

.headspa-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.headspa-benefits i {
    color: var(--primary-color);
    margin-right: 10px;
}

.headspa-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* ===== Pricing Section ===== */
.pricing {
    background-color: var(--accent-cool-light);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    opacity: 0.7;
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-category {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.pricing-category h3 {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-name {
    font-weight: 500;
}

.price-dots {
    flex: 1;
    margin: 0 10px;
    border-bottom: 1px dotted var(--border-color);
}

.service-price {
    font-weight: 600;
    color: #7d7568; /* Zachte taupe */
}

/* ===== Team Section ===== */
.team {
    padding: 80px 0;
    background-color: #f9f7f4;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    padding-bottom: 20px;
}

.single-member {
    max-width: 800px;
    margin: 0 auto;
    grid-column: 1 / -1;
    text-align: center;
}

.single-member .member-bio {
    padding: 0 20px 15px;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
    color: #666;
}

.single-member .member-bio:first-of-type {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #666;
}

.member-image {
    height: 300px;
    overflow: hidden;
    margin-bottom: 25px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    margin: 20px 0 5px;
}

.member-title {
    color: #9c9286; /* Zachte grijsbeige */
    font-weight: 500;
    margin-bottom: 10px;
}

.member-bio {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 20px;
}

.member-socials a {
    width: 36px;
    height: 36px;
    background-color: #fcfaf7;
    color: #9c9286;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.member-socials a:hover {
    background-color: #e6dfd3;
    color: #7d7568;
    transform: translateY(-2px);
}

/* ===== Reviews Section ===== */
.reviews {
    background-color: var(--background-light);
    position: relative;
}

.reviews-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
    background-color: var(--background-light);
    border-radius: 8px;
}

/* Salonized reviews styling */
.salonized-reviews {
    width: 100%;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

/* Salonized mini-reviews styling */
.salonized-reviews-mini {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    padding: 20px 0;
}

/* Verwijder de oude reviews styling */
.reviews-slider,
.review-card,
.reviews-nav {
    display: none;
}

/* ===== Booking Section ===== */
.booking {
    position: relative;
    color: var(--light-text);
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/booking-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: -2;
}

/* iPhone specific background adjustments */
@media screen and (max-width: 768px) {
    .booking::before {
        background-size: cover;
        background-position: 65% 45%;
    }
}

@media screen and (max-width: 480px) {
    .booking::before {
        background-size: cover;
        background-position: 68% 45%;
    }
}

/* iPhone portrait specific */
@media screen and (max-width: 414px) and (orientation: portrait) {
    .booking::before {
        background-size: cover;
        background-position: 70% 45%;
    }
}

.booking::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(181, 173, 161, 0.3);
    z-index: -1;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-text h2 {
    color: var(--light-text);
}

.booking-text h2:after {
    background-color: var(--light-text);
}

.booking-benefits {
    margin-bottom: 30px;
}

.booking-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.booking-benefits i {
    color: #e6dfd3; /* Crème kleur voor betere leesbaarheid */
    margin-right: 10px;
}

.booking-cta {
    margin-bottom: 30px;
}

.booking-form {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.booking-iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    padding: 0;
}

.booking-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    background-color: white;
    pointer-events: auto;
    touch-action: auto;
}

/* Verwijder de oude Salonized styling */
#salonized-booking-widget {
    display: none;
}

/* ===== Blog Section ===== */
.blog {
    background-color: var(--accent-cool-light);
    position: relative;
    overflow: hidden;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    opacity: 0.7;
    z-index: 0;
}

.blog .container {
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--border-color);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-content p {
    color: #777;
    margin-bottom: 15px;
}

.read-more {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more:after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
    transition: var(--transition);
}

.read-more:hover:after {
    transform: translateX(5px);
}

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

/* ===== Contact Section ===== */
.contact {
    background-color: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-item p {
    margin-bottom: 5px;
}

.email-link {
    color: var(--text-color);
    transition: var(--transition);
    border-bottom: 1px dotted var(--text-color);
    padding-bottom: 2px;
}

.email-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Contact actions styling */
.contact-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 4px;
    background-color: var(--background-light);
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    margin-top: 5px;
}

.contact-action-btn:first-child {
    background-color: #f0f9f0;
    border-color: #c8e6c9;
    font-weight: 600;
}

.contact-action-btn:last-child {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-action-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.contact-action-btn:hover {
    background-color: var(--accent-color);
    color: var(--dark-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-action-btn:first-child:hover {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.contact-action-btn:first-child:hover i {
    color: white !important;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(230, 223, 211, 0.15);
    color: #9c9286;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: #e6dfd3;
    color: #7d7568;
    transform: translateY(-3px);
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== Footer ===== */
footer {
    background-color: #b5ada1;
    color: #f8f6f2; /* Zeer lichte crème voor betere leesbaarheid */
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    color: #f8f6f2; /* Zeer lichte crème voor betere leesbaarheid */
    margin-bottom: 15px;
}

.footer-logo p {
    color: #f8f6f2; /* Zeer lichte crème voor betere leesbaarheid */
}

.footer-logo-image {
    height: 140px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links h3,
.footer-services h3,
.footer-newsletter h3 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    position: relative;
}

.footer-links h3:after,
.footer-services h3:after,
.footer-newsletter h3:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links ul,
.footer-services ul,
.footer-newsletter ul {
    margin-bottom: 0;
}

.footer-links li,
.footer-services li,
.footer-newsletter li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-services a,
.footer-newsletter a {
    color: #f8f6f2; /* Zeer lichte crème voor betere leesbaarheid */
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover,
.footer-newsletter a:hover {
    color: var(--accent-cool);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
    background-color: #e6dfd3;
    color: #7d7568;
}

.newsletter-form .btn:hover {
    background-color: #dbd4c7;
}

.footer-bottom {
    border-top: 1px solid rgba(248, 246, 242, 0.2); /* Zeer lichte crème met transparantie */
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin-bottom: 0;
    color: #f8f6f2; /* Zeer lichte crème voor betere leesbaarheid */
}

.footer-bottom-links a {
    color: #f8f6f2; /* Zeer lichte crème voor betere leesbaarheid */
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: var(--accent-cool);
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .headspa-image {
        order: -1;
    }
    
    .nav-menu li {
        margin: 0 5px;
        font-size: 14px;
    }
    
    .booking-btn .btn {
        padding: 10px 15px;
        font-size: 13px;
        border-radius: 4px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .logo {
        padding: 3px 0;
    }
    
    .logo-image {
        height: 60px;
        transition: height 0.3s ease;
    }
    
    .hero-logo-image {
        height: 150px;
    }
    
    .footer-logo-image {
        height: 100px;
    }
    
    .booking-btn {
        margin-left: 10px;
        padding: 3px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .contact-map iframe {
        height: 100%;
    }
    
    header .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 5px 0;
    }
    
    .booking-btn .btn {
        padding: 8px 15px;
        font-size: 12px;
        border-radius: 4px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
    
    #salonized-booking-widget {
        min-height: 500px;
    }
    
    .booking-iframe-container {
        height: 500px;
        padding: 0;
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    .pricing-tables,
    .team-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        margin-bottom: 15px;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .logo {
        margin-left: 0;
        padding: 2px 0;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .hero-logo-image {
        height: 130px;
    }
    
    .footer-logo-image {
        height: 90px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-links h3, 
    .footer-services h3,
    .footer-newsletter h3 {
        margin-bottom: 15px;
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }
    
    .footer-links h3:after,
    .footer-services h3:after,
    .footer-newsletter h3:after {
        width: 60px;
        height: 3px;
    }
    
    .footer-links ul,
    .footer-services ul,
    .footer-newsletter ul {
        margin-top: 15px;
    }
    
    .footer-links a,
    .footer-services a,
    .footer-newsletter a {
        font-size: 0.95rem;
        padding: 5px 0;
        display: inline-block;
    }
    
    header {
        padding: 12px 0;
    }
    
    header.scrolled {
        padding: 8px 0;
    }
    
    header .container {
        padding: 0 10px;
    }
    
    .header-content {
        padding: 0;
    }
    
    .booking-btn {
        margin-left: 5px;
        padding: 2px 0;
    }
    
    .booking-btn .btn {
        padding: 8px 12px;
        font-size: 11px;
        margin-right: 0;
        border-radius: 4px;
    }
    
    .hamburger {
        margin-left: 8px;
        padding: 8px;
    }
    
    .bar {
        width: 22px;
        height: 2px;
        margin: 4px auto;
    }
    
    .single-member .member-bio {
        font-size: 15px;
        padding: 0 10px 10px;
    }
    
    .member-socials {
        padding: 0 10px 20px;
    }
    
    .booking-iframe-container {
        height: 400px;
    }
}

/* Aanpassingen voor zeer kleine mobiele schermen */
@media (max-width: 375px) {
    .logo-image {
        height: 40px;
    }
    
    .booking-btn .btn {
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 4px;
    }
    
    header .container {
        padding: 0 8px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hamburger {
        margin-left: 5px;
        padding: 5px;
    }
    
    .bar {
        width: 20px;
        margin: 3px auto;
    }
}

/* ===== Salonized Widget Styling ===== */
#salonized-booking-widget {
    width: 100%;
    min-height: 600px;
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

#salonized-booking-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
}

.salonized-styled {
    width: 100%;
    height: 100%;
    border: none;
}

/* Terms Section */
.terms-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.terms-content h3 {
    color: #7d7568;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
}

.terms-content h3:first-child {
    margin-top: 0;
}

.terms-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.terms-update {
    font-style: italic;
    color: #999;
    margin-top: 40px;
    text-align: right;
}

.terms-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.terms-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Nieuwsbrief styles verwijderd */

/* ===== Products Section ===== */
.products {
    background-color: var(--background-light);
}

/* ===== Scalp Treatments Section ===== */
.scalp-treatments {
    background-color: #f9f7f4;
}

.scalp-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.scalp-text h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.scalp-text p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #666;
}

.scalp-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.scalp-cta { margin-top: 10px; }

/* Detail cards inside Scalp Treatments */
.scalp-details {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.detail-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
}

.detail-card h3 {
    margin-bottom: 10px;
    color: var(--dark-text);
}

.detail-card h4 {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #6f665a;
}

.detail-card p { color: #666; line-height: 1.75; }
.detail-card ul { list-style: disc; margin-left: 18px; margin-bottom: 10px; }
.detail-card ul li { margin-bottom: 6px; }
.detail-card .price-line { font-weight: 600; color: #7d7568; margin-top: 8px; }

.detail-media { margin-top: 14px; display: flex; justify-content: center; }
.detail-media img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: var(--shadow); }

/* Alleen mobiel tonen */
.detail-media-mobile { display: none; }
@media (max-width: 768px) {
  .detail-media-mobile { display: flex; }
}

.detail-card.full-width {
    grid-column: 1 / -1;
}

.numbered-steps { counter-reset: step; margin-left: 18px; }
.numbered-steps > li { margin-bottom: 10px; }
.numbered-steps > li strong { display: inline-block; margin-bottom: 4px; }

@media (max-width: 992px) {
    .scalp-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .scalp-media img { height: 420px; }
    .scalp-details { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .scalp-media img { height: 44vh; min-height: 300px; }
}

.products-content {
    display: grid;
    grid-template-columns: minmax(560px, 1fr) minmax(560px, 1fr);
    gap: 48px;
    align-items: start;
}

.products .container {
    max-width: 1200px;
}

.products-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.products-text p {
    margin: 0;
    line-height: 1.8;
    color: #666;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.product-feature {
    text-align: center;
    padding: 20px;
    background-color: #f0f7f0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-left: 4px solid #7fb77e;
}

.product-feature:nth-child(1) {
    background-color: #edf7ed;
    border-left-color: #6aad69;
}

.product-feature:nth-child(2) {
    background-color: #f0f7f0;
    border-left-color: #7fb77e;
}

.product-feature:nth-child(3) {
    background-color: #e8f4e8;
    border-left-color: #8fc28e;
}

.product-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-feature:nth-child(1):hover {
    background-color: #e2f2e2;
}

.product-feature:nth-child(2):hover {
    background-color: #e6f3e6;
}

.product-feature:nth-child(3):hover {
    background-color: #ddefdd;
}

.product-feature:nth-child(4) {
    background-color: #f2f8f2;
    border-left-color: #6ba56a;
}

.product-feature:nth-child(4):hover {
    background-color: #e9f5e9;
}

.product-feature i {
    font-size: 2.5rem;
    color: #7fb77e;
    margin-bottom: 15px;
}

.product-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #5a8d59;
}

.product-benefits {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.product-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.product-benefits li i {
    color: #7fb77e;
    margin-right: 10px;
    font-size: 1.1rem;
}

.product-cta {
    margin-top: 30px;
}

.product-cta .btn {
    background-color: #7fb77e;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.product-cta .btn:hover {
    background-color: #6aad69;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 173, 105, 0.3);
}

.oway-video {
    display: block;
    width: 100%;
    height: 540px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.products-image {
    align-self: center; /* centreer video verticaal t.o.v. tekstkolom */
    margin-top: 0;
}

@media (max-width: 992px) {
    .products-content {
        grid-template-columns: 1fr;
    }
    
    .products-image {
        order: -1;
        margin-bottom: 10px;
        margin-top: 0; /* reset voor tablet/mobiel */
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }

    .oway-video {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .product-features {
        grid-template-columns: 1fr;
    }

    .oway-video {
        height: 44vh;
        min-height: 300px;
    }
}

/* ===== Cadeaubonnen Section ===== */
.cadeaubonnen {
    background-color: var(--accent-cool-light);
    position: relative;
    overflow: hidden;
}

.cadeaubonnen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    opacity: 0.7;
    z-index: 0;
}

.cadeaubonnen .container {
    position: relative;
    z-index: 1;
}

.cadeaubonnen-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cadeaubonnen-text p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #666;
}

.cadeaubonnen-benefits {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.cadeaubonnen-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.cadeaubonnen-benefits li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.cadeaubonnen-widget {
    background-color: var(--background-light);
    padding: 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-height: 700px;
    overflow: hidden;
    position: relative;
}

.salonized-voucher {
    width: 100%;
    height: 100%;
    min-height: 700px;
}

.widget-placeholder,
.widget-notice {
    display: none;
}

@media (max-width: 992px) {
    .cadeaubonnen-content {
        grid-template-columns: 1fr;
    }
    
    .cadeaubonnen-widget {
        min-height: 700px;
    }
}

.booking-btn {
    flex-shrink: 0;
    margin-left: 15px;
    padding: 5px 0;
}

.booking-btn .btn {
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(230, 223, 211, 0.3);
    transition: all 0.3s ease;
}

/* Breder breakpoint zodat op iPad Pro de navigatie netjes omschakelt en de boekingsknop zichtbaar blijft */
@media (max-width: 1100px) {
    .logo-image { height: 70px; }
    .nav-menu {
        font-size: 13px;
    }
    
    .nav-menu li {
        margin: 0 3px;
    }
    
    .booking-btn .btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* Hamburger menu activeren voor alle mobiele apparaten inclusief iPad Pro */
    .nav-menu {
        display: none; /* standaard verbergen zodat CTA altijd ruimte heeft */
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex; /* tonen bij openen hamburger */
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu a {
        padding: 10px 15px;
        display: inline-block;
        font-size: 16px;
    }
    
    .hamburger {
        display: block;
        order: 2;
        margin-left: 10px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    nav {
        order: 2;            /* houd nav naast logo/hamburger */
        width: auto;         /* voorkom dat nav 100% breedte claimt */
        margin-top: 0;
        flex: 0 0 auto;
    }
    
    .header-content {
        flex-wrap: nowrap;   /* één regel, zodat knop niet wegvalt */
        justify-content: space-between;
        align-items: center;
    }

    /* Zorg dat de boekingsknop rechts blijft staan en zichtbaar is */
    .booking-btn { margin-left: auto; order: 3; }
    .booking-btn .btn { padding: 8px 14px; font-size: 13px; }
}

/* iPad Pro en vergelijkbare tablets in portrait: zorg dat header compacter is en CTA zichtbaar blijft */
@media (orientation: portrait) and (min-width: 768px) and (max-width: 1100px) {
    header { padding: 10px 0; }
    header .container { padding: 0 12px; }
    .header-content { gap: 8px; flex-wrap: nowrap; }
    .logo-image { height: 60px; }
    nav { flex: 0 0 auto; }
    .hamburger { margin-left: 8px; }
    .nav-menu { top: 64px; }
    .booking-btn { margin-left: auto; order: 3; }
    .booking-btn .btn { padding: 8px 12px; font-size: 12px; letter-spacing: 0.5px; }
    /* Zorg dat de CTA prioriteit krijgt en nooit weggedrukt wordt */
    .booking-btn { z-index: 1002; }
    .hamburger { z-index: 1002; }
    .nav-menu { z-index: 1001; }
    /* extra krapte oplossen door nav spacing en font te reduceren (fallback) */
    .nav-menu li { margin: 0 2px; }
    .nav-menu a { font-size: 13px; }
}

@media (max-width: 992px) {
    .booking-btn {
        margin-left: 10px;
    }
    
    .booking-btn .btn {
        padding: 8px 15px;
        font-size: 12px;
        border-radius: 4px;
    }
}

@media (max-width: 576px) {
    .booking-btn {
        margin-left: 5px;
    }
    
    .booking-btn .btn {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 4px;
    }
}

@media (max-width: 375px) {
    .booking-btn .btn {
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 4px;
    }
}

/* Mobile Responsive Tweaks */
@media (max-width: 767px) {
    .service-card h3 {
        font-size: 1.2rem;
        min-height: 2.4rem;
        padding: 0 5px;
    }
    
    .footer-services ul li a {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .footer-links ul li a:hover, 
    .footer-services ul li a:hover {
        color: var(--accent-color);
        transform: translateX(5px);
    }
    
    .footer-links ul li a:hover::after,
    .footer-services ul li a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.footer-services ul li {
    margin-bottom: 8px;
}

.footer-services ul li a {
    display: inline-block;
    padding: 3px 0;
    transition: var(--transition);
    line-height: 1.3;
    position: relative;
}

.footer-services ul li a:hover {
    color: var(--dark-text);
    transform: translateX(3px);
}

.footer-services ul li a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    opacity: 0.7;
}

/* Verbeteringen voor mobiel */
@media (max-width: 767px) {
    .footer-links h3, 
    .footer-services h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
        position: relative;
        display: inline-block;
        padding-bottom: 8px;
        text-transform: none !important;
    }
    
    .footer-links h3:after, 
    .footer-services h3:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--accent-color);
    }
    
    .footer-links ul li a, 
    .footer-services ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        display: block;
        transition: all 0.3s ease;
        margin-bottom: 8px;
        position: relative;
    }
    
    .service-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        min-height: auto;
        padding: 0 5px;
        margin-bottom: 10px;
        word-break: normal;
        hyphens: auto;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
}

/* Specifieke aanpassing voor tablet en mobiel op de algemene-voorwaarden pagina */
@media (max-width: 992px) {
    .terms {
        padding-top: 140px;
    }
}

@media (max-width: 768px) {
    .terms {
        padding-top: 160px;
    }
}

@media (max-width: 576px) {
    .terms {
        padding-top: 130px;
    }
}

@media (max-width: 375px) {
    .terms {
        padding-top: 120px;
    }
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.faq-answer ul li {
    margin-bottom: 0.5rem;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0 2px;
}

.terms-link:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* Specifieke aanpassing voor algemene-voorwaarden pagina */
.terms {
    padding-top: 120px;
    background-color: #f9f7f4;
    padding-bottom: 80px;
}

/* Media queries voor verschillende schermgroottes */
@media (max-width: 992px) {
    :root {
        --header-height: 80px;
    }
    
    main {
        padding-top: var(--header-height);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 90px;
    }
    
    main {
        padding-top: calc(var(--header-height) + 10px);
    }
    
    section:first-of-type {
        padding-top: 15px;
    }
}

@media (max-width: 576px) {
    :root {
        --header-height: 80px;
    }
    
    main {
        padding-top: calc(var(--header-height) + 15px);
    }
    
    section:first-of-type {
        padding-top: 20px;
    }
}

@media (max-width: 375px) {
    :root {
        --header-height: 70px;
    }
    
    main {
        padding-top: calc(var(--header-height) + 20px);
    }
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .hero .container {
        padding: 6vw 4vw;
    }
    
    /* Make headspa layout better on mobile */
    .headspa-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .headspa-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .headspa-image img {
        width: 100%;
        max-width: none;
        height: 60vh;
        object-fit: cover;
        border-radius: 8px;
    }
    
    /* Make booking widget taller on mobile */
    .booking-iframe-container {
        height: 70vh;
        min-height: 650px;
    }
} 