/*
Theme Name: LaSarel Astra Child
Template: astra
Version: 1.0
*/

/* Kleuren & lettertypen */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Abhaya+Libre:wght@400;600&family=Nunito:wght@300;400;600&display=swap');

:root {
    --roze: #ffd4c4;
    --zwart: #000000;
    --oranje: #ffb07f;
    --creme: #ffeddd;
    --teal: #2d656f;
    --donkerrood: #7d3833;
    --goud: #ffcc7c;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #000000;
    background: #ffffff;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h4, h5, h6 {
    font-family: 'Abhaya Libre', serif;
}

/* Hero */
.hero {
    background-color: var(--creme);
    padding: 0 !important;
    width: 100% !important;
    display: block !important;
}

.hero-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    min-height: 600px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
}

.hero-tekst {
    flex: 1;
    text-align: left;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-tekst h1 {
    font-size: 2.8rem;
    color: var(--donkerrood);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-tekst p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-tekst .btn {
    display: inline-block;
    background-color: var(--teal);
    color: white !important;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.hero-tekst .btn:hover {
    background-color: var(--donkerrood);
    color: white !important;
}

.hero-foto {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-foto img {
    max-height: 500px;
    width: auto;
    border-radius: 8px;
}

/* Trajecten sectie */
.trajecten {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
    display: block !important;
}

.trajecten h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--teal);
}

.traject-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.traject {
    border: 1px solid var(--roze);
    padding: 36px;
    border-radius: 8px;
    background: var(--creme);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.traject.zichtbaar {
    opacity: 1;
    transform: translateY(0);
}

.traject:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.traject h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--donkerrood);
}

.traject p {
    margin-bottom: 24px;
    line-height: 1.7;
}

.traject a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
}

.traject a:hover {
    color: var(--donkerrood);
}

/* Header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background: #ffffff;
    border-bottom: 1px solid var(--roze);
}

.site-header .site-logo img {
    max-height: 80px;
    width: auto;
}

.main-header-bar {
    padding: 0 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.ast-site-identity {
    padding: 10px 0 !important;
}

.custom-logo {
    max-height: 80px !important;
    width: auto !important;
}

/* Menu rechts uitlijnen */
.main-header-bar .ast-main-header-bar-alignment {
    justify-content: space-between !important;
}

#ast-desktop-nav-wrap {
    margin-left: auto !important;
}

.ast-header-break-point .ast-mobile-header-wrap,
.main-header-bar .main-header-bar-navigation {
    margin-left: auto !important;
}

.ast-flex.main-header-bar {
    justify-content: space-between !important;
}

.main-header-bar-navigation {
    display: flex !important;
    justify-content: flex-end !important;
    flex-grow: 1 !important;
}

.main-header-bar-navigation .main-navigation-use-inline-flex {
    justify-content: flex-end !important;
    width: 100% !important;
}

/* Menu styling */
.main-header-menu .menu-item a,
.main-header-menu .menu-item .ast-menu-toggle {
    color: #000000 !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
}

.main-header-menu .menu-item a:hover,
.main-header-menu .current-menu-item a {
    color: var(--teal) !important;
}

.ast-builder-menu-1 .menu-item.current-menu-item > .menu-link {
    border-bottom: none !important;
    box-shadow: none !important;
}

.astra-full-megamenu-wrapper,
ul.sub-menu {
    background: #ffffff !important;
    border-top: 2px solid var(--teal) !important;
}

ul.sub-menu .menu-item a {
    color: #000000 !important;
    font-family: 'Nunito', sans-serif !important;
}

ul.sub-menu .menu-item a:hover {
    color: var(--teal) !important;
    background: var(--creme) !important;
}

/* Reviews sectie */
.reviews {
    background: var(--creme);
    padding: 80px 40px;
    text-align: center;
}

.reviews h2 {
    font-size: 2.2rem;
    color: var(--teal);
    margin-bottom: 40px;
}

/* Afspraak sectie */
.afspraak {
    background: var(--teal);
    padding: 80px 40px;
}

.afspraak-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.afspraak h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
}

.afspraak p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.afspraak .btn {
    display: inline-block;
    background-color: white;
    color: var(--teal) !important;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
}

.afspraak .btn:hover {
    background-color: var(--roze);
    color: var(--zwart) !important;
}

/* WPForms knop */
.afspraak .wpforms-submit {
    background-color: var(--donkerrood) !important;
    border-color: var(--donkerrood) !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 1rem !important;
    padding: 14px 32px !important;
    border-radius: 4px !important;
}

.afspraak .wpforms-submit:hover {
    background-color: var(--roze) !important;
    border-color: var(--roze) !important;
    color: var(--zwart) !important;
}

/* Footer */
.lasarel-footer {
    background: var(--teal);
    color: white;
    padding: 60px 40px 20px;
    margin-top: 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-kolom h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--roze);
}

.footer-kolom p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: white;
}

.footer-kolom a {
    color: white;
    text-decoration: none;
}

.footer-kolom a:hover {
    color: var(--roze);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-social a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    opacity: 0.9;
}

.footer-social a:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Over mij pagina */
.overmij-hero {
    background: var(--creme);
    padding: 80px 40px;
}

.overmij-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.overmij-foto {
    flex: 1;
}

.overmij-foto img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    object-fit: cover;
}

.overmij-tekst {
    flex: 1;
}

.overmij-tekst h1 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 10px;
}

.overmij-tekst h2 {
    font-size: 2.2rem;
    color: var(--donkerrood);
    margin-bottom: 24px;
}

.overmij-tekst p {
    line-height: 1.8;
    margin-bottom: 16px;
}

.overmij-tekst em {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--teal);
}

/* Verhaal sectie */
.overmij-verhaal {
    padding: 80px 40px;
}

.overmij-verhaal-inner {
    max-width: 800px;
    margin: 0 auto;
}

.overmij-verhaal h2 {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 30px;
}

.overmij-verhaal p {
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Kwaliteit sectie */
.overmij-kwaliteit {
    background: var(--creme);
    padding: 80px 40px;
}

.overmij-kwaliteit-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.overmij-kwaliteit h2 {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 40px;
    text-align: center;
}

.kwaliteit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.kwaliteit-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid var(--teal);
}

.kwaliteit-item h3 {
    color: var(--teal);
    font-size: 1.1rem;
    margin-bottom: 12px;
    margin-top: 16px;
}

.kwaliteit-item img {
    max-height: 80px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

/* Voor wie sectie */
.voor-wie {
    background: var(--donkerrood);
    padding: 80px 40px;
}

.voor-wie-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.voor-wie-inner.zichtbaar {
    opacity: 1;
    transform: translateY(0);
}

.voor-wie h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 24px;
}

.voor-wie p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.voor-wie ul {
    text-align: left;
    display: inline-block;
    margin-bottom: 24px;
}

.voor-wie ul li {
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    padding-left: 8px;
}

.voor-wie .btn {
    display: inline-block;
    background: white;
    color: var(--donkerrood) !important;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 16px;
}

.voor-wie .btn:hover {
    background: var(--roze);
    color: var(--donkerrood) !important;
}

/* Animaties */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animeer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animeer.zichtbaar {
    opacity: 1;
    transform: translateY(0);
}

/* Lopende banner */
.ticker-wrap {
    background: var(--teal);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: ticker 20s linear infinite;
}

.ticker span {
    display: inline-block;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    padding: 0 60px;
}

.ticker span::after {
    content: '✦';
    margin-left: 60px;
    color: var(--roze);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Trajectpagina */
.traject-hero {
    background: var(--creme);
    padding: 100px 40px;
    text-align: center;
}

.traject-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.traject-hero h1 {
    font-size: 2.8rem;
    color: var(--donkerrood);
    margin-bottom: 24px;
}

.traject-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Stappen */
.traject-stappen {
    padding: 80px 40px;
}

.traject-stappen-inner {
    max-width: 900px;
    margin: 0 auto;
}

.traject-stappen h2 {
    font-size: 2.2rem;
    color: var(--teal);
    margin-bottom: 50px;
    text-align: center;
}

.stap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--roze);
}

.stap:last-child {
    border-bottom: none;
}

.stap-nummer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    font-family: 'Playfair Display', serif;
    color: var(--roze);
    line-height: 1;
}

.stap-nummer span {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--roze);
    line-height: 1;
}

.stap-inhoud h3 {
    font-size: 1.4rem;
    color: var(--donkerrood);
    margin-bottom: 12px;
}

.stap-inhoud p {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Stap met foto */
.stap-inhoud-foto {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.stap-inhoud-foto > div {
    flex: 1;
    min-width: 0;
}

.stap-inhoud-foto img {
    width: 260px;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
}

/* Tussenbanner */
.traject-banner {
    width: 100% !important;
    display: block !important;
    clear: both !important;
    height: 400px;
    background-size: cover;
    background-position: center 90%;
    background-repeat: no-repeat;
}

/* Pakketten */
.traject-pakketten {
    background: var(--creme);
    padding: 80px 40px;
}

.traject-pakketten-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.traject-pakketten h2 {
    font-size: 2.2rem;
    color: var(--teal);
    margin-bottom: 16px;
}

.pakketten-intro {
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pakket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pakket-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto 40px;
}

.pakket {
    background: white;
    border-radius: 8px;
    padding: 36px;
    text-align: left;
    border-top: 3px solid var(--teal);
}

.pakket-uitgelicht {
    border-top: 3px solid var(--donkerrood);
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.pakket-header {
    margin-bottom: 16px;
}

.pakket-header h3 {
    font-size: 1.4rem;
    color: var(--donkerrood);
    margin-bottom: 6px;
}

.pakket-prijs {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--teal);
    font-size: 1rem;
}

.pakket p {
    line-height: 1.7;
    margin-bottom: 16px;
}

.pakket ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.pakket ul li {
    line-height: 1.8;
    margin-bottom: 8px;
}

.pakket .btn {
    display: inline-block;
    background: var(--teal);
    color: white !important;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.pakket .btn:hover {
    background: var(--donkerrood);
}

.pakketten-footer {
    font-size: 1.05rem;
    color: var(--teal);
    font-style: italic;
}

/* Resultaat sectie */
.traject-resultaat {
    background: var(--teal);
    padding: 100px 40px;
    text-align: center;
    margin: 40px 40px 40px;
    border-radius: 8px;
}

.traject-resultaat-inner {
    max-width: 700px;
    margin: 0 auto;
}

.traject-resultaat h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
}

.traject-resultaat p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.traject-resultaat .btn {
    display: inline-block;
    background: white;
    color: var(--teal) !important;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.traject-resultaat .btn:hover {
    background: var(--roze);
    color: var(--zwart) !important;
}

/* Healthy Skin Program */
.hsp-voor-wie {
    padding: 80px 40px 0;
}

.hsp-voor-wie-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.hsp-voor-wie h2 {
    font-size: 2.2rem;
    color: var(--teal);
    margin-bottom: 16px;
    text-align: center;
}

.hsp-voor-wie > .hsp-voor-wie-inner > p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.hsp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.hsp-item {
    background: var(--creme);
    border-radius: 8px;
    padding: 30px;
    border-top: 3px solid var(--teal);
}

.hsp-icon {
    margin-bottom: 16px;
}

.hsp-item h3 {
    font-size: 1.2rem;
    color: var(--donkerrood);
    margin-bottom: 10px;
}

.hsp-item p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.hsp-extra-foto {
    width: 100%;
    line-height: 0;
}

.hsp-extra-foto img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center 30%;
}

/* Contact pagina */
.contact-hero {
    background: var(--creme);
    padding: 80px 40px;
}

.contact-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-hero-tekst {
    flex: 1.2;
}

.contact-hero h1 {
    font-size: 2.8rem;
    color: var(--donkerrood);
    margin-bottom: 20px;
}

.contact-hero-tekst p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.contact-hero-foto {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.contact-hero-foto img {
    max-height: 400px;
    width: auto;
    border-radius: 8px;
}

/* Contact info */
.contact-info {
    padding: 80px 40px;
}

.contact-info-inner {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-tekst {
    flex: 1.5;
}

.contact-tekst p {
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.contact-tekst a {
    color: var(--teal);
    font-weight: 600;
}

.contact-gegevens {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-blok {
    background: var(--creme);
    border-radius: 8px;
    padding: 20px 24px;
    border-left: 3px solid var(--teal);
}

.contact-blok h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 8px;
}

.contact-blok p {
    line-height: 1.7;
}

.contact-blok a {
    color: var(--zwart);
    text-decoration: none;
}

.contact-blok a:hover {
    color: var(--donkerrood);
}

/* Kaart */
.contact-kaart {
    width: 100%;
    line-height: 0;
}

.contact-kaart-klein {
    margin-top: 24px;
    line-height: 0;
}

/* Prijslijst */
.prijs-sectie {
    padding: 80px 40px;
}

.prijs-sectie-creme {
    background: var(--creme);
}

.prijs-sectie-inner {
    max-width: 900px;
    margin: 0 auto;
}

.prijs-sectie h2 {
    font-size: 2.2rem;
    color: var(--teal);
    margin-bottom: 12px;
    text-align: center;
}

.prijs-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.05rem;
}

.prijs-lijst {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prijs-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 24px 30px;
    border-radius: 8px;
    border-left: 3px solid var(--teal);
    gap: 30px;
}

.prijs-sectie-creme .prijs-item {
    border-left: 3px solid var(--donkerrood);
}

.prijs-item-tekst {
    flex: 1;
}

.prijs-item-tekst h3 {
    font-size: 1.2rem;
    color: var(--donkerrood);
    margin-bottom: 6px;
}

.prijs-item-tekst p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.prijs-item-bedrag {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--teal);
    white-space: nowrap;
    font-weight: 700;
}

/* ============================= */
/* MOBIEL RESPONSIVE (max 768px) */
/* ============================= */

@media (max-width: 768px) {

    /* Hero homepage */
    .hero-inner {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        text-align: center;
    }

    .hero-tekst h1 {
        font-size: 2rem;
    }

    .hero-tekst p {
        font-size: 1rem;
    }

    .hero-foto {
        justify-content: center;
    }

    .hero-foto img {
        max-height: 350px;
    }

    /* Trajecten */
    .traject-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trajecten {
        padding: 50px 20px;
    }

    .trajecten h2 {
        font-size: 1.8rem;
    }

    /* Voor wie sectie */
    .voor-wie {
        padding: 50px 20px;
    }

    .voor-wie h2 {
        font-size: 1.8rem;
    }

    /* Reviews */
    .reviews {
        padding: 50px 20px;
    }

    /* Afspraak */
    .afspraak {
        padding: 50px 20px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-social {
        margin-top: 10px;
    }

    .footer-social a {
        margin: 0 10px;
    }

    /* Over mij pagina */
    .overmij-inner {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .overmij-foto img {
        max-width: 100%;
    }

    .overmij-tekst h2 {
        font-size: 1.6rem;
    }

    .overmij-verhaal,
    .overmij-kwaliteit {
        padding: 50px 20px;
    }

    .kwaliteit-grid {
        grid-template-columns: 1fr;
    }

    /* Trajectpagina hero */
    .traject-hero {
        padding: 60px 20px;
    }

    .traject-hero h1 {
        font-size: 2rem;
    }

    /* Stappen */
    .traject-stappen {
        padding: 50px 20px;
    }

    .stap {
        flex-direction: column;
        gap: 16px;
    }

    .stap-nummer {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        min-width: auto;
    }

    .stap-inhoud-foto {
        flex-direction: column;
    }

    .stap-inhoud-foto img {
        width: 100%;
        height: auto;
    }

    /* Pakketten */
    .traject-pakketten {
        padding: 50px 20px;
    }

    .pakket-grid,
    .pakket-grid-2 {
        grid-template-columns: 1fr;
    }

    .pakket-uitgelicht {
        transform: none;
    }

    /* Resultaat sectie */
    .traject-resultaat {
       margin: 40px 40px 40px;
        padding: 60px 20px;
    }

    .traject-resultaat h2 {
        font-size: 1.8rem;
    }

    /* Healthy Skin grid */
    .hsp-grid {
        grid-template-columns: 1fr;
    }

    .hsp-voor-wie {
        padding: 50px 20px 0;
    }

    /* Contact pagina */
    .contact-hero-inner {
        flex-direction: column;
        padding: 40px 20px;
    }

    .contact-info-inner {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info {
        padding: 50px 20px;
    }

    /* Prijslijst */
    .prijs-sectie {
        padding: 50px 20px;
    }

    .prijs-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .prijs-item-bedrag {
        font-size: 1.2rem;
    }

    /* Ticker */
    .ticker span {
        font-size: 0.9rem;
        padding: 0 30px;
    }

    /* Mobiel menu styling */
    .main-header-menu .menu-item {
        border-bottom: 1px solid var(--roze);
        padding: 12px 20px;
    }

    .main-header-menu .menu-item a {
        font-size: 1rem;
    }

    .main-header-menu .sub-menu {
        display: block !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        background: var(--creme) !important;
        padding-left: 20px;
    }

    .main-header-menu .sub-menu .menu-item {
        border-bottom: none;
        padding: 8px 0;
    }

    .main-header-menu .sub-menu .menu-item a {
        padding-left: 20px !important;
        font-size: 0.9rem !important;
    }

    .main-header-menu .ast-menu-toggle {
        display: none !important;
    }

    #ast-hf-menu-1 {
        background: white;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero-tekst h1 {
        font-size: 1.6rem;
    }

    .traject-hero h1 {
        font-size: 1.6rem;
    }

    .stap-nummer span {
        font-size: 1.8rem;
    }
}