        :root {
            --primary-color: #FFC107; /* Zonnig geel */
            --secondary-color: #00B6DD;  /* Fris blauw */
            /*--secondary-color: #005EA1;  Fris blauw */            
            --third-color: #00A8CC; /*Donker blauw*/
            --secondary-dark: #008ba8;
            --accent-color: #FF6B6B; /* Zacht rood/koraal */
            --green-success: #28a745; /* Voor besparingen */
            --text-dark: #191919;
            --text-light: #FFFFFF;
            --background-light: #F5F7FA;
            --prijs: #ff0000;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--background-light);
            overflow-x: hidden;
        }


        .social-btn {
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s, color 0.3s;
        }

        .social-btn:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }


.footerlink { color:white; }
/*.paginalink { color:#00B6DD; font-weight: 700; }*/ /*staat in routes.css */


ol { padding-left:30px; text-align:left; padding-bottom: 10px; }


.nav-wrapper {
    background-color: #00B0D6;
    height: 85px;
    margin: 55px 20px 0 20px;
    border-radius: 8px;
    position: relative;
    z-index: 1000;
    /*box-shadow: 0 4px 20px rgba(0,0,0,0.1);*/
}


.main-header { background-color: #00B0D6; }

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    height: 100%;
    padding: 0 30px;
}



/* STAPPEN */


        .stapcontainer {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            padding: 20px;
            max-width: 1090px; 
            margin: 0 auto;
        }
 
        .stapcontainer .afbeelding-wrapper {
            flex: 1;
            /*min-width: 250px;*/
            max-width: 370px;

            background-color: #fefefe;
            border: 1px solid #ddd;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .stapcontainer .afbeelding-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }


@media (max-width: 700px) {
   
    .stapcontainer { max-width: 100%; }    
     
    .stapcontainer .afbeelding-wrapper {
       min-width: 98%;
       max-width: 98%;
       }    
        
}      
        
        

/* --- LOGO --- */
.logo-box { position: relative; z-index: 1001; }
.logo-box img {
    width: 180px; height: 180px;
    display: block; object-fit: contain;
    transform: translateY(-5px);
}

/* --- DESKTOP NAV --- */
.nav-content {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 0 0 100px;
}

.nav-item a {
    color: #ffffff;
    padding: 0 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}



/* --- SOCIALS --- */
.social-wrapper { display: flex; gap: 12px; margin-left: 20px; }
.s-icon {
    background: rgba(255,255,255,0.2);
    color: white; width: 38px; height: 38px;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; text-decoration: none;
    font-size: 11px; font-weight: bold; transition: 0.3s;
}
.s-icon:hover { background: #fff; color: #00B0D6; }


/* --- MOBIEL & ANIMATIE --- */
.menu-btn { display: none; }
.menu-icon { display: none; }

@media (max-width: 950px) {
    .nav-wrapper { margin: 35px 10px 0 10px; }

    .nav-contentORG {
        /* De animatie instellingen */
        display: flex; /* Altijd flex, maar... */
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #00B0D6;
        padding: 0;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        
        /* Start-status: onzichtbaar en iets hoger */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }


.nav-content {
        display: flex; 
        flex-direction: column;
        position: absolute;
        top: 105px;
        left: 0;
        width: 100%;
        background: #00B0D6;
        padding: 0;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        
        /* Start-status: onzichtbaar */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);

/* Verwijder de transition hier... */
        transition: none; 
        pointer-events: none; /* Voorkomt klikken op onzichtbaar menu */
    }


.menu-btn:checked ~ .nav-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 20px 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: auto;
    }


    /* Status als checkbox is aangevinkt: glij naar beneden en word zichtbaar */
    /*
    .menu-btn:checked ~ .nav-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 20px 0;
    }
    */

    .logo-box img { width: 135px; height: 135px; }

    .menu-icon {
        display: flex;
        align-items: center;
        color: white;
        cursor: pointer;
        font-weight: 600;
        border: 1.5px solid white;
        padding: 8px 15px;
        border-radius: 4px;
    }

    .nav-item { width: 100%; text-align: center; }
    .nav-item a { padding: 15px 0; display: block; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .social-wrapper { margin-top: 20px; justify-content: center; }
}




        /* --- Animaties --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- Header & Banner --- */
        /*
        header {
            background: linear-gradient(90deg, rgba(0,168,204,1) 0%, rgba(0,194,235,1) 100%);
            color: var(--text-light);
            padding: 0.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-left { display: flex; align-items: center; gap: 2rem; }
        */
/*
        .logo-area { display: flex; align-items: center; }
        
        .logo-img {
            height: 80px;
            width: auto; 
            display: block;
            transition: transform 0.3s ease;
        }

        .logo-img:hover { transform: scale(1.05); }
  */      
        
/*
        .social-media { display: flex; gap: 15px; }

        .social-btn {
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s, color 0.3s;
        }

        .social-btn:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        */
/*
        nav ul { list-style: none; display: flex; gap: 2rem; }
        nav a {
            text-decoration: none; color: var(--text-light);
            font-weight: 600; font-size: 0.9rem; transition: color 0.3s;
        }
        nav a:hover { color: var(--primary-color); }
        */

        /* --- Hero Introductie --- */
        .hero {
            text-align: center;
            background: linear-gradient(rgba(0, 168, 204, 0.85), rgba(0, 168, 204, 0.7)), url('https://spotgoedkoopwinkelen.nl/images/bus21procent.jpg');
            background-size: cover;
            background-position: center 40%;
            color: var(--text-light);
            padding: 8rem 5% 12rem; /* Ruimte voor de knop en overlap */
            clip-path: polygon(0 8%, 100% 0, 100% 91%, 0 100%);
        }

        .hero h1 {
            font-size: 3rem; margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; }

        /* NIEUW: De Hero Button stijl */
        .btn-hero {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--text-dark);
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            margin-top: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s, background-color 0.3s;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            background-color: #ffdb4d; /* Iets lichter geel */
        }













        /* --- Calculator Sectie --- */
        .calculator-wrapper {
            max-width: 1120px;
            margin: 4rem auto 3rem;
            position: relative;
            z-index: 10;
            padding: 0 2.5rem;
        }

        .calculator-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            text-align: center;
            border-bottom: 5px solid var(--primary-color);
        }

        .calculator-card h3 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .slider-container { margin: 2rem 0; }

        input[type=range] {
            -webkit-appearance: none;
            width: 100%; height: 10px; background: #e0e0e0;
            border-radius: 5px; outline: none; transition: background 0.3s;
        }

        input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none; appearance: none;
            width: 25px; height: 25px; border-radius: 50%;
            background: var(--secondary-color); cursor: pointer;
            box-shadow: 0 0 10px rgba(0,0,0,0.2); transition: transform 0.2s;
        }

        input[type=range]::-webkit-slider-thumb:hover {
            transform: scale(1.2); background: var(--accent-color);
        }

        .calc-results {
            display: flex; justify-content: space-around;
            flex-wrap: wrap; margin-top: 1.5rem; gap: 1rem;
        }

        .calc-box {
            background: var(--background-light); padding: 1rem;
            border-radius: 10px; min-width: 150px;
        }

        .calc-box span { display: block; font-size: 0.9rem; color: #666; }
        .calc-box strong { display: block; font-size: 1.8rem; color: var(--text-dark); }
        .calc-box.savings strong { color: var(--accent-color); }

















        /* --- Product Vergelijker Sectie --- */
        .comparison-section {
            padding: 2rem 5% 4rem;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .comparison-section h2 { color: var(--secondary-color); margin-bottom: 2rem; }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            border: 1px solid #eee;
            transition: transform 0.3s;
        }

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

        .product-badge {
            position: absolute; top: 10px; right: 10px;
            background: var(--green-success); color: white;
            font-weight: 700; padding: 4px 10px; border-radius: 20px; font-size: 0.8rem;
        }

        .product-icon-area {
            font-size: 2.5rem; color: var(--secondary-color);
            margin-bottom: 1rem; height: 60px;
            display: flex; align-items: center; justify-content: center;
        }

        .product-title { font-weight: 700; margin-bottom: 1rem; display: block; }

        .price-row {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 0.5rem; border-bottom: 1px dashed #eee; padding-bottom: 5px;
        }

        .price-nl { color: #999; text-decoration: line-through; }
        .price-de { color: var(--text-dark); font-weight: 700; font-size: 1.2rem; }
        .flag-icon { margin-right: 5px; }

        /* --- De 3 Stappen Sectie --- */
        .steps-container {
            display: flex; flex-wrap: wrap; justify-content: center;
            gap: 2rem; padding: 0 5% 5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step-card {
            background: #fff; flex: 1 1 300px;
            padding: 2.5rem 2rem; border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            text-align: center; border-top: 6px solid var(--secondary-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0; animation: fadeInUp 0.8s ease-out forwards;
        }

        .step-card:nth-child(1) { animation-delay: 0.2s; }
        .step-card:nth-child(2) { animation-delay: 0.4s; border-top-color: var(--accent-color); }
        .step-card:nth-child(3) { animation-delay: 0.6s; border-top-color: var(--primary-color); }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0,168,204,0.2);
        }

        .step-icon {
            font-size: 3.5rem; color: var(--primary-color);
            margin-bottom: 1.5rem; display: inline-block;
            background: #fffdf2; padding: 15px; border-radius: 50%;
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
        }

        .step-card h2 { color: var(--secondary-color); margin-bottom: 1rem; }
        .slogan-highlight {
            font-weight: 700; color: var(--accent-color);
            font-size: 1.2rem; display: block; margin-top: 1.5rem;
        }














        /* --- Boekingsoverzicht --- */
        .booking-preview { margin-top: 2rem; text-align: left; }

        .booking-day {
            display: flex; justify-content: space-between; align-items: center;
            padding: 0.8rem 1rem; margin-bottom: 0.8rem;
            background-color: var(--background-light);
            border-radius: 10px; border-left: 4px solid var(--secondary-color);
            transition: all 0.3s ease; cursor: pointer;
        }

        .booking-day:hover {
            background-color: #e0f7fa; transform: translateX(5px);
            border-left-color: var(--primary-color);
        }

        .day-date span { display: block; font-weight: 700; color: var(--text-dark); }
        .day-date small { color: #666; }

        .btn-book-small {
            background-color: var(--primary-color); color: var(--text-dark);
            border: none; padding: 0.5rem 1rem; border-radius: 20px;
            font-weight: 700; font-family: inherit; cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .booking-day:hover .btn-book-small {
            background-color: #ffdb4d; transform: scale(1.05);
        }

        /* --- Reviews Sectie --- */
        .reviews-section {
            background-color: white;
            padding: 4rem 5%;
            text-align: center;
        }
        
        .reviews-grid {
            display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
            max-width: 1000px; margin: 2rem auto 0;
        }

        .review-card {
            background: var(--background-light); padding: 1.5rem;
            border-radius: 15px; flex: 1 1 250px; position: relative;
        }

        .stars { color: var(--primary-color); margin-bottom: 0.5rem; }
        .review-text { font-style: italic; font-size: 0.9rem; color: #555; }
        .review-author { font-weight: 700; margin-top: 1rem; display: block; color: var(--secondary-color); }

        /* --- Account Sectie --- */
        .account-info-section {
            background: var(--primary-color);
            background-image: radial-gradient(circle at center, rgba(255,255,255,0.25) 2px, transparent 2px);
            background-size: 25px 25px;
            color: var(--text-dark);
            padding: 6rem 5% 6rem;
            text-align: center;
            margin-top: 2rem;
            transform: skewY(-2deg);
        }

        .account-info-content {
            max-width: 800px; margin: 0 auto;
            background: rgba(255,255,255,0.95);
            padding: 3rem; border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: skewY(2deg);
        }

        .account-info-content h2 { color: var(--secondary-color); margin-bottom: 1.5rem; font-size: 2rem; }
        
        .account-highlight {
             background: #eefbff; border-left: 5px solid var(--accent-color);
             padding: 1.5rem; margin-top: 1.5rem; text-align: left; border-radius: 0 10px 10px 0;
        }










        /* --- LOGIN Sectie --- */
        .login-section {
            max-width: 800px; margin: 4rem auto; padding: 0 1rem;
        }

		.login-section h2 { text-align: center; color: var(--secondary-color); margin-bottom: 2rem; }




        /* --- FAQ Sectie --- */
        .faq-section {
            max-width: 800px; margin: 4rem auto; padding: 0 1rem;
        }

        .faq-section h2 { text-align: center; color: var(--secondary-color); margin-bottom: 2rem; }
        
        .faq-section details {
            background: white; border-radius: 10px; margin-bottom: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05); overflow: hidden;
        }


        .faq-section summary {
            padding: 1rem 1.5rem; cursor: pointer; font-weight: 600;
            background: #fff; list-style: none; position: relative;
            transition: background 0.3s;
        }

        .faq-section summary:hover { background: #f9f9f9; color: var(--secondary-color); }

        .faq-section summary::after {
            content: '+'; position: absolute; right: 1.5rem; top: 1rem;
            font-weight: 700; font-size: 1.2rem; color: var(--secondary-color);
        }

        .faq-section details[open] summary::after { content: '-'; }

        .faq-section details p { padding: 1rem 1.5rem; color: #555; border-top: 1px solid #eee; background: #fafafa; }














        /* --- Contact Formulier Sectie --- */
        .contact-section {
            max-width: 700px; margin: 0 auto; padding: 2rem 1rem 6rem;
            text-align: center; position: relative; 
        }

        .contact-section h2 { color: var(--secondary-color); margin-bottom: 2rem; }

        .contact-form {
            background: white; padding: 2.5rem; border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: left;
            border: 1px solid #eee;
        }

        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; }
        
        .form-control {
            width: 100%; padding: 12px; border: 2px solid #eee;
            border-radius: 8px; font-family: inherit; font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus { border-color: var(--secondary-color); outline: none; }

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

        .btn-submit {
            display: inline-block; background-color: var(--secondary-color);
            color: white; padding: 12px 30px; font-size: 1.1rem;
            font-weight: 600; border: none; border-radius: 30px;
            cursor: pointer; transition: background 0.3s; width: 100%;
        }

        .btn-submit:hover { background-color: var(--secondary-dark); }

        /* --- Footer --- */
        /*
        footer {
            text-align: center; padding: 3rem 2rem;
            background-color: var(--text-dark); color: #888;
            font-size: 0.9rem;
        }*/

        /* --- Responsive --- */
        @media (max-width: 900px) {
            header { flex-direction: column; gap: 1rem; text-align: center; position: relative; }
            .header-left { flex-direction: column; gap: 1rem; }
            .hero { padding: 4rem 5% 8rem; clip-path: polygon(0 8%, 100% 0, 100% 91%, 0 100%); }
            .hero h1 { font-size: 2.2rem; }
            .calculator-wrapper { margin-top: 2rem; padding:2.3rem;}
            .comparison-grid { grid-template-columns: 1fr; }
        }
        
        
/* --- Vernieuwde Tabel Stijl --- */
.table-container {
    overflow-x: auto; /* Zorgt dat tabel scrollt op mobiel */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    background: white;
    margin-top: 2rem;
}

.shock-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Forceert breedte zodat layout mooi blijft */
}

.shock-table th {
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.shock-table th.highlight-head {
    background: var(--primary-color);
    color: var(--text-dark);
}

.shock-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.shock-table tr:hover {
    background-color: #f9fcff;
}

.product-name {
    font-weight: 600;
    text-align: left;
    color: var(--text-dark);
}
.product-name i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.price-nl {
    color: #999;
    text-decoration: line-through;
}

.price-de {
    font-weight: 700;
    color: var(--text-dark);
}

.profit {
    color: var(--green-success);
    font-weight: 800;
    background: #e8f5e9;
    border-radius: 4px;
}

/* De Totaalregel */
.total-row td {
    background: var(--text-dark);
    color: white;
    font-weight: 700;
    border: none;
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
}

.total-row .total-nl {
    color: #bbb;
    text-decoration: line-through;
    font-size: 1rem;
}

.total-row .total-profit {
    background: var(--primary-color);
    color: var(--text-dark);
    font-size: 1.2rem;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}  

/* MARGE ANCHORS */

#info, #boeken, #vergelijken, #faq, #contact {
   /*padding-top: 120px;*/ /*height of your navbar*/
   /*margin-top: -120px;*/
   /*margin-bottom:120px;*/
}





















  
  
  
  
  
        
      
/*search*/      
      
/* Container voor de zoekbalk */
.search-container {
    position: sticky; /* Blijft bovenin staan tijdens scrollen op mobiel : sticky */
    top: 0;
    z-index: 1000;
    padding: 25px 10px;
    margin-bottom: 20px;
	margin-top:20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* De zoekbalk zelf */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 15px;
    font-size: 1.2rem;
    pointer-events: none;
}

#routeSearch {
    width: 100%;
    padding: 15px 15px 15px 45px; /* Extra ruimte links voor het icoon */
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px; /* Ronde hoeken voor moderne look */
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Effect als je op het zoekveld klikt */
#routeSearch:focus {
    border-color: #ff5722; /* Jouw accentkleur */
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.2);
    background-color: #fff;
}

/* Kleine tekst onder de zoekbalk */
.result-count {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 10px;
}      
        
        
        
/*Categorie chips*/        
       
 /*      
.filter-chips {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
}

.chip {
    background: #f0f0f0;
    padding: 8px 15px;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 0.9rem;
    border: 1px solid #ddd;
}

.chip.active {
    background: #ff5722;
    color: white;
    border-color: #ff5722;
}        
        
  */      
        
        
/*
        .routecontainer .trip-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border-left: 6px solid var(--secondary-color);
        }

        @media (min-width: 768px) {
            .routecontainer .trip-card {
                flex-direction: row;
            }
        }

        @media (max-width: 768px) {
        .routes-info-content {
            padding: 0.5rem; border-radius: 20px;
        }
		}

        .routecontainer .trip-info {
            padding: 20px;
            flex-grow: 1;
        }

        .routecontainer .trip-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .routecontainer .destination {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--text-dark);
        }

        .routecontainer .date-tag {
            background: var(--background-light);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--third-color);
            font-weight: 600;
        }

        .routecontainer .boarding-list {
            list-style: none;
            padding: 0;
            margin: 15px 0;
        }

        .routecontainer .boarding-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .routecontainer .boarding-item::before {
        */
            /*content: &#128205;*/
           /* margin-right: 10px;
        }*/
/*
        .routecontainer .map-link {
            font-size: 0.85rem;
            color: var(--secondary-color);
            text-decoration: none;
            margin-left: auto;
            border-bottom: 1px dashed var(--secondary-color);
        }

        .routecontainer .map-link:hover {
            color: var(--secondary-color);
        }

        .routecontainer .trip-actions {
            background: #fafafa;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top: 1px solid #eee;
        }

        @media (min-width: 768px) {
            .routecontainer .trip-actions {
                border-top: none;
                border-left: 1px solid #eee;
                min-width: 180px;
            }
        }

        .routecontainer .btn-order {
            background-color: var(--secondary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s ease;
            text-align: center;
            width: 100%;
        }

        .routecontainer .btn-order:hover {
            background-color: var(--third-color);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
        }
        
        */
        
/* - EINDE ROUTES - */        




/*OVERLAY*/

.overlay {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.overlay-content.iframe-container {
  background-color: #fff;
  margin: 2% auto; /* Iets minder marge van de bovenkant */
  padding: 0; /* Geen padding voor een strakke look */
  border-radius: 8px;
  width: 90%;
  max-width: 1000px;
  height: 90vh; /* 85% van de schermhoogte */
  position: relative;
  overflow: hidden;
}

#boekFrame {
  width: 100%;
  height: 100%;
  border-radius: 0 0 8px 8px;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 5px;
  font-size: 35px;
  color: #333;
  z-index: 10001;
  cursor: pointer;
}




/* ALGEMENE VOORWAARDEN */
        .voorwaardencontainer {
            background-color: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            max-width:1000px;
        }
        .voorwaardencontainer h1 {
            color: #2c3e50;
            border-bottom: 3px solid #3498db;
            padding-bottom: 10px;
            text-align: center;
        }
        .voorwaardencontainer h2 {
            color: #2980b9;
            margin-top: 30px;
            border-bottom: 1px solid #eee;
            padding-bottom: 5px;
        }
        .voorwaardencontainer h3 {
            color: #2c3e50;
            background-color: #f8f9fa;
            padding: 8px 15px;
            border-left: 4px solid #3498db;
            margin-top: 20px;
        }
        .voorwaardencontainer .intro {
            font-style: italic;
            color: #555;
            margin-bottom: 30px;
        }
        .voorwaardencontainer ul {
            list-style-type: disc;
            margin-left: 20px;
        }
        .voorwaardencontainer li {
            margin-bottom: 8px;
        }
        .voorwaardencontainer .important-box {
            background-color: #fff3cd;
            border: 1px solid #ffeeba;
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
        }
        .voorwaardencontainer .link-button {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 5px 12px;
            text-decoration: none;
            border-radius: 4px;
            font-size: 0.9em;
        }
        .voorwaardencontainer .footer {
            margin-top: 40px;
            font-size: 0.8em;
            text-align: center;
            color: #888;
        }
        @media print {
        .voorwaardencontainer { box-shadow: none; }
        }


/* verschillende divs */

.vol { max-width:100%; padding-bottom:40px; }
.half { max-width:50%; }
.duizend { max-width:1000px; background-color:yellow; margin:0 auto; }





/* Styling voor de terug naar boven knop */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: none; /* Standaard verborgen */
    background-color: #333;
    color: white;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    z-index: 999;
    transition: background-color 0.3s, opacity 0.5s;
}

.back-to-top:hover {
    background-color: #555; /* Donkerder bij hover */
}


/* Styling voor de boek nu button */

.btn-boek-nu {


    position: fixed;
    bottom: 20px;
    right: 20px;
    /*display: block;*/
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  border-radius: 50px;
  
  /* Kleuren */
  background: linear-gradient(45deg, #e64a19, #ff7043); /* Warm oranje/rood */
  color: white;
  text-decoration: none;
  
  /* Tekst styling */
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  
  /* Schaduw & Animatie */
  box-shadow: 0 4px 15px rgba(230, 74, 25, 0.4);
  transition: all 0.3s ease;
  /*position: relative;*/
  overflow: hidden;
  animation: subtle-pulse 2s infinite;
}

/* De ster naast de tekst */
/*.star-icon {
  margin-left: 10px;
  font-size: 20px;
  color: #fffdec;
}
*/

/* Hover effect */
.btn-boek-nu:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(230, 74, 25, 0.6);
  background: linear-gradient(45deg, #ff7043, #e64a19);
}

/* De subtiele pulse-animatie */
@keyframes subtle-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(230, 74, 25, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(230, 74, 25, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(230, 74, 25, 0);
  }
}










/* Zorg voor smooth scrolling */
html {
    scroll-behavior: smooth;
}



/* formulier responses */

        #respons-melding { display: none; padding: 15px; margin-bottom: 20px; border-radius: 4px; }
        .success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
        .error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
