/* ===================================
   THE HEALTH HOUSE — White Label Page
   Brand Colors: #021152 (navy), #d53949 (red accent)
   Font: Poppins (user preference)
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --thh-navy: #021152;
    --thh-red: #d53949;
    --thh-red-hover: #e04b5a;
    --thh-white: #ffffff;
    --thh-light-gray: #f6f6f6;
    --thh-gray: #888888;
    --thh-dark-gray: #333333;
    --thh-cyan: #baf7fc;

    --font-primary: 'Poppins', sans-serif;
    --section-padding: 80px 0;
    --container-width: 1200px;
    --radius-pill: 40px;
    --radius-btn: 25px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-primary);
    color: var(--thh-navy);
    background: var(--thh-white);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--thh-navy);
}

p { color: var(--thh-navy); }

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--thh-navy);
    transition: all 0.3s ease;
}

.nav-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--thh-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-text span {
    font-weight: 800;
}

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

.nav-links a {
    color: var(--thh-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--thh-white);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--thh-red);
    color: var(--thh-white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-btn);
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase;
}

.nav-cta:hover {
    background: var(--thh-red-hover);
}

.nav-cta::after { display: none !important; }

/* Mobile menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--thh-white);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--thh-navy);
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--thh-red);
    color: var(--thh-white);
    padding: 16px 40px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--thh-red);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-primary:hover {
    background: var(--thh-red-hover);
    border-color: var(--thh-red-hover);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #021152;
    border: 2px solid #021152;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-outline:hover {
    background-color: #021152;
    color: #fff;
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: var(--thh-white);
    padding: 16px 40px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--thh-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-outline-white:hover {
    background: var(--thh-white);
    color: var(--thh-navy);
}

/* ===== LOGO TEXT NAV ===== */
.logo-text-nav {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}
.logo-text-nav span {
    font-weight: 400;
}

/* ===== HERO SECTION (Franchise Style) ===== */
/* ===== HERO SECTION ===== */
.page-hero {
    background: #021152;
    padding: 0;
    margin: 0;
    overflow: visible;
}

.hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
}

/* Photo positioned to the right, leaving navy blue visible on the left */
.hero-photo {
    position: relative;
    margin-left: 15%;
    overflow: hidden;
    margin-bottom: -40px;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 310px;
    max-height: 510px;
}

@media (min-width: 768px) {
    .hero-inner {
        min-height: 460px;
    }
    .hero-photo {
        margin-left: 12%;
    }
    .hero-image {
        min-height: 410px;
        max-height: 560px;
    }
}

/* Red diagonal stripes through the photo only */
.hero-stripe {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 2;
}
.hero-stripe-1 {
    left: 5%;
    width: 25%;
    background: rgba(139, 30, 50, 0.65);
    clip-path: polygon(35% 0, 100% 0, 65% 100%, 0% 100%);
}
.hero-stripe-2 {
    left: 15%;
    width: 20%;
    background: rgba(139, 30, 50, 0.45);
    clip-path: polygon(35% 0, 100% 0, 65% 100%, 0% 100%);
}

/* Text overlay — starts in the navy blue area and extends over the photo */
.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 20px;
    z-index: 3;
}
@media (min-width: 768px) {
    .hero-text-overlay {
        bottom: 80px;
        left: 40px;
    }
}
@media (min-width: 1024px) {
    .hero-text-overlay {
        bottom: 100px;
        left: 60px;
    }
}

.hero-subtitle {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 6px 4px;
    opacity: 0.9;
}
@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 4px;
        margin-bottom: 10px;
    }
}

.hero-heading {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
    .hero-heading {
        font-size: 56px;
    }
}
@media (min-width: 1024px) {
    .hero-heading {
        font-size: 72px;
    }
}

.hero-heading span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}
@media (min-width: 768px) {
    .hero-heading span {
        -webkit-text-stroke: 1.5px #fff;
    }
}

/* Content below hero */
.hero-content-below {
    background: #fff;
    padding: 80px 0 40px;
}
.hero-content-below .section-title {
    color: #021152;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: left;
}
.hero-content-below p {
    color: #021152;
    font-size: 16px;
    line-height: 28px;
    max-width: 640px;
}
.hero-content-below .hero-usps {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.hero-content-below .hero-usps li {
    color: #021152;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 0 6px 28px;
    position: relative;
}
.hero-content-below .hero-usps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d53949;
    font-weight: 700;
}
.hero-content-below .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .title-sub {
    color: var(--thh-navy);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-title .title-main {
    color: var(--thh-navy);
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15;
}

.section-title.light .title-sub,
.section-title.light .title-main {
    color: var(--thh-white);
}

@media (max-width: 768px) {
    .section-title .title-main { font-size: 28px; }
}

/* ===== STAPPEN (Steps) ===== */
.stappen {
    padding: var(--section-padding);
    background: var(--thh-white);
}

.stappen-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.stap {
    text-align: center;
    padding: 30px 15px;
    position: relative;
}

.stap-nummer {
    width: 60px;
    height: 60px;
    background: var(--thh-navy);
    color: var(--thh-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.stap h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stap p {
    font-size: 14px;
    color: var(--thh-navy);
    opacity: 0.7;
    line-height: 1.6;
}

.stap:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 45px;
    font-size: 24px;
    color: var(--thh-navy);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .stappen-grid { grid-template-columns: 1fr; gap: 15px; }
    .stap:not(:last-child)::after { display: none; }
}

/* ===== PRODUCTEN (Products) ===== */
.producten {
    padding: var(--section-padding);
    background: var(--thh-light-gray);
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 14px 35px;
    background: transparent;
    color: var(--thh-navy);
    border: 2px solid var(--thh-navy);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:first-child { border-radius: var(--radius-pill) 0 0 var(--radius-pill); }
.tab-btn:last-child { border-radius: 0 var(--radius-pill) var(--radius-pill) 0; }

.tab-btn.active {
    background: var(--thh-navy);
    color: var(--thh-white);
}

.tab-btn:hover:not(.active) {
    background: rgba(2, 17, 82, 0.08);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.sub-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.sub-tab-btn {
    padding: 10px 22px;
    background: var(--thh-white);
    border: 1px solid var(--thh-navy);
    border-radius: var(--radius-btn);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    color: var(--thh-navy);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.sub-tab-btn.active {
    background: var(--thh-navy);
    color: var(--thh-white);
}

.sub-tab-btn:hover:not(.active) {
    background: rgba(2, 17, 82, 0.08);
}

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.flavor-card {
    background: var(--thh-white);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--thh-navy);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.flavor-card:hover {
    border-color: var(--thh-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(2, 17, 82, 0.1);
}

.flavor-emoji {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

/* ===== AFNAME TABLE ===== */
.afname {
    padding: var(--section-padding);
    background: var(--thh-white);
}

.table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(2, 17, 82, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-primary);
}

thead {
    background: var(--thh-navy);
}

thead th {
    color: var(--thh-white);
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

tbody tr:hover { background: var(--thh-light-gray); }

tbody td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--thh-navy);
}

tbody tr:nth-child(even) { background: rgba(2, 17, 82, 0.02); }

.moq-badge {
    display: inline-block;
    background: var(--thh-cyan);
    color: var(--thh-navy);
    padding: 6px 16px;
    border-radius: var(--radius-btn);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
}

/* ===== KOSTEN (Costs) ===== */
.kosten {
    padding: var(--section-padding);
    background: var(--thh-light-gray);
}

.kosten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.kosten-card {
    background: var(--thh-white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(2, 17, 82, 0.06);
    transition: transform 0.3s;
}

.kosten-card:hover {
    transform: translateY(-5px);
}

.kosten-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.kosten-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.kosten-card p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.7;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--thh-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

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

.cta-section h2 {
    color: var(--thh-white);
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
}

@media (max-width: 768px) {
    .cta-section h2 { font-size: 28px; }
}

/* ===== CONTACT FORM ===== */
.contact {
    padding: var(--section-padding);
    background: var(--thh-white);
}

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

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--thh-navy);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--radius-btn);
    border: none;
    background: var(--thh-light-gray);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--thh-navy);
    outline: none;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--thh-navy);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 2px var(--thh-navy);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--thh-navy);
    color: var(--thh-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-text strong {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-info-text span {
    font-size: 14px;
    opacity: 0.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--thh-navy);
    padding: 75px 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

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

.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--thh-white);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    max-width: 36ch;
    line-height: 1.8;
}

.footer h3 {
    color: var(--thh-white);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    display: block;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--thh-white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--thh-white);
    font-size: 20px;
}

/* ===== POPUP ===== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(2, 17, 82, 0.7);
    z-index: 9998;
    backdrop-filter: blur(4px);
}

.popup-overlay.active { display: block; }

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--thh-white);
    border-radius: 10px;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(2, 17, 82, 0.3);
}

.popup.active { display: block; }

.popup-header {
    background: var(--thh-navy);
    padding: 30px;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.popup-header h2 {
    color: var(--thh-white);
    font-size: 24px;
    margin-bottom: 5px;
}

.popup-header p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: var(--thh-white);
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thh-navy);
    transition: all 0.3s;
}

.popup-close:hover {
    background: var(--thh-red);
    color: var(--thh-white);
}

.popup-body {
    padding: 30px;
}

.popup-body .form-group { margin-bottom: 16px; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 999;
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
