/* Config */
:root {
    --sol-red: #dc3545;
    --sol-red: #dc3545;
    --bs-blue: #1573A2;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #fd4f00 !important;
    --bs-secondary: #28343d !important;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bg-grey: #f5f5f5;
    --primary-color: #00613a;
    --secondary-color: #1573A2;
    --primary-font: "Barlow", sans-serif;
}
/* GENERAL CSS */
body{
    background-color: var(--bg-grey);
    font-family: var(--primary-font);
    overflow-x: hidden;
}
html{
    scroll-padding-top: 200px;
}
.btn-primary{
    background-color: var(--primary-color);
    border-radius: 100px;
    border-color: var(--primary-color);
    padding: 8px 25px;
    color: var(--bs-white) !important;
}

.btn-primary:hover {
background-color: var(--secondary-color);
border-color: var(--secondary-color);
}
a{
    color: var(--secondary-color);
}

a:hover {
    color: var(--primary-color);
}

h2 {
    color: var(--secondary-color);
}

h3 {
    color: var(--primary-color);
}

h4 {
    font-size: 1.1rem;
}

h5 {
    font-size: 1rem;
}

/* FONT SIZER */
.font-large h1 {
    font-size: calc(calc(1.375rem + 1.5vw)*1.5);
}

.font-large h2 {
    font-size: calc(2rem * 1.5);
}

.font-large h3 {
    font-size: calc(1.75rem * 1.5);
}

.font-large h4 {
    font-size: calc(1.1rem * 1.5);
}

.font-large h5 {
    font-size: calc(1rem * 1.5);
}

.font-large p, .font-large a, .font-large li {
    font-size: calc(1rem * 1.5);
}

.font-medium h1 {
    font-size: calc(calc(1.375rem + 1.5vw)*1.2);
}

.font-medium h2 {
    font-size: calc(2rem * 1.2);
}

.font-medium h3 {
    font-size: calc(1.75rem * 1.2);
}

.font-medium h4 {
    font-size: calc(1.1rem * 1.2);
}

.font-medium h5 {
    font-size: calc(1rem * 1.2);
}

.font-medium p, .font-medium a, .font-medium li {
    font-size: calc(1rem * 1.2);
}

/* HEADER */
header {
    background-color: var(--bs-white);
    padding: 10px 0;
}
header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
} 

header .menu{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0;
    margin: 0;
}
header .menu .menu-item a{
    text-decoration: unset;
    color: var(--secondary-color)
}

.font-controller .single-font{
    font-weight: 600;
    cursor: pointer;
    color: var(--secondary-color);
}

.font-controller .single-font:hover {
    color: var(--primary-color);
}
.font-controller .single-font.active{
    text-decoration: underline;
}
.font-controller #small-font{
    font-size: 20px;
}
.font-controller #medium-font{
    font-size: 24px;
}
.font-controller #large-font{
    font-size: 28px;
}

.header-bg {
position: sticky;
top: 0;
z-index: 100;
background-color: var(--bs-white);
}

/*menutest*/
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 18px;
    justify-content: end;
}

.menu > li > a {
    text-decoration: none;
}

.menu > li > a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    color: var(--primary-color); 
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: var(--primary-color);
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 700px) {

    .top-nav{
        height: 80px;
    }

    .menu-button-container {
        display: flex;
    }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 80px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

    #menu-toggle ~ .menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid var(--primary-color);
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: var(--primary-color);
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
    .menu > li > a{
        color: var(--bs-white);
    }
}

/* Body */
.availability {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.hero-image {
    background-image: linear-gradient(rgba(21, 115, 162, 0.6), rgba(21, 115, 162, 0.6)),url("../images/header-bg.jpg");
    background-color: var(--bs-blue);
    height: 500px;
}

.hero-text h1 {
    color: var(--bs-white);
}

.font-small .hero-text h1 {
    font-size: 3rem;
}

.services, .beleid-intro {
    padding: 50px 0px;
}

.beleid-intro {
    margin-bottom: 0 !important;
    padding-bottom: 25px;
}

.beleid-blocks {
padding-top: 25px;
}

.services .card {
    height: 100%;
}

.general {
    background-color: var(--bs-white);
}

.general .card {
    border: 0;
}

.general .card img {
        max-height: 300px;
        object-fit: cover;
        object-position: top;
}

.boek-rit .row {
    background-color: var(--bs-white);
}
.section-opstap-vervoer .section-left, .section-groepsvervoer .section-left, .section-speciale-gelegenheden .section-left {
    width: 300px;
    height: 250px;
}


.section-opstap-vervoer .section-left {
    background-image: url("../images/opstap-vervoer.jpg");
  
}

.section-opstap-vervoer .section-left h3, .section-groepsvervoer .section-left h3, .section-speciale-gelegenheden .section-left h3 {
        color: var(--bs-white);
    }

.block-booking {
        background-color: var(--bg-grey);
}

.block-booking h4{
    font-weight:bold;
}

.section-groepsvervoer .section-left {
    background-image: url("../images/groepsvervoer.jpg");
}

.section-speciale-gelegenheden .section-left {
    background-image: url("../images/speciale-gelegenheden.jpg");
}
/*accordion*/
.accordion-item:first-of-type {
    border-radius: 0;
}

.accordion-item {
    border-left: 0;
    border-right: 0;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-white);
}

.accordion-button:focus {
    border: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0,97,58,.25);
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300613a'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
  }

/*footer*/
.footer {
    background-color: var(--primary-color);
    color: var(--bs-white);
    border-top: 15px solid #004D2E;
}

.footer a {
    color: var(--bs-white);
}
