/*------------------------------------------------------------
🟡 ALGEMEEN (BASISSTIJLEN)
------------------------------------------------------------*/
html,body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
body {
    font-family: 'IBM Plex Sans';
    text-align: center;
/*    background-color: rgb(108, 108, 108, 1);*/
    background:url('/assets/src/img/landschap_bg1.jpg') no-repeat center center fixed;
    background-size:cover;
    margin: 0;
    padding: 0;
    color: #fff;
    padding-top:100px;
}
footer {
    background-color: #000;
    opacity: 0.95;
}
footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px; /* afstand tussen items */
}

footer .contact-info div {
  display: flex;
  align-items: flex-start;
}

footer .contact-info div span {
  margin-right: 8px; /* afstand icoon en tekst */
  align-items: flex-start;
  min-width:21px;
}
footer .container{
    width:90%;
    font-size: 0.8rem;
}
#main-content{
    flex: 1 0 auto;        /* Vult resterende ruimte */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Zorgt dat content boven blijft */
    margin-bottom: 50px;
}

.link {
    color: #ffcc00;
    text-decoration: underline;
    font-weight: 500;
}

.link:hover {
    color: #de0818;
    text-decoration: none;
}
.scaling-text-p {
/*  white-space: nowrap;         voorkomt regelafbreking */
  overflow: hidden;           /* verbergt alles wat niet past */
  text-overflow: ellipsis;    /* toont "..." als het niet past (optioneel) */
  font-size: 24px;
}
.scaling-text-h1 {
  white-space: nowrap;
  overflow: hidden;           /* verbergt alles wat niet past */
  text-overflow: ellipsis;    /* toont "..." als het niet past (optioneel) */

  
}
.bg-darktrans{
    background-color: rgba(0, 0, 0, 0.3);    
    color:#fff;
}

@media(max-width: 767px){
    .scaling-text-p {font-size: 5vw}
    .scaling-text-h1 {font-size: 7vw;}
}


/*------------------------------------------------------------
📦 CONTAINER EN LAYOUT
------------------------------------------------------------*/
#main-content .container {
  max-width: 960px;
  padding: 40px;
  background: linear-gradient(160deg, #333, #555555,#000);
/*  background: linear-gradient(160deg, #ffcc00, #555555,#000);*/
/*background: #333;*/
  box-shadow: 0px 3px 15px rgba(255, 204, 0, 0.3);
  border-radius: 8px;
/*  border: 1px solid #ffcc00;*/
  text-align: left;
  opacity: 0.97;
}
#main-content #homeContainer{
 background: linear-gradient(160deg, #ffcc00, #555555,#000);

}
#main-content .section{
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 20px;
    margin: 20px auto;
    border-radius: .25rem !important;
}

#main-content .container img {
  max-width: 380px;
  margin-bottom: 25px;
}
#main-content .container-s1{
    padding: 15px 20px !important;
    background: linear-gradient(160deg, #ffcc00, #555555,#000);
}
#main-content .container-s1 h1{
    color:#fff;
    font-weight: 500;  
}
h1 {
  color:#fff;
  margin-bottom: 15px;
}
.h1{
  font-weight: bold;  
}
h3{
    font-size: 1.3rem;
}

.text-chanvalli{
    color:#ffcc00;
}
.text-chanvalli-bg{
    color:#ffcc00;
    padding: 5px 10px;
    background:rgb(85,85,85,0.5);
    
        
}
.background-chanvalli{
}
.background-opacity-chanvalli{
    
}
    
@media (max-width: 1000px) {
    #main-content  .container {
        width: 90%;
        padding: 40px 20px;
    }
    #homeContainer  .container img {
      max-width: 95%;
      margin-bottom: 25px;
    }
}

/*------------------------------------------------------------
📦 min-width
------------------------------------------------------------*/
.minWidth-60{min-width: 60px;}
.minWidth-175{min-width: 175px;}
    
/*------------------------------------------------------------
🔳 NAVIGATIEBALK
------------------------------------------------------------*/
.navbar {
  background: #ffcc00;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
.navbar img {
  max-height: 50px;
  margin: 5px 0px;
}
.nav-links {
  display: flex;
  gap: 20px;
  max-width: calc(100vw - 200px);
}
.nav-links a {
  color: #000;
  text-decoration: none;
  padding: 14px 20px;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s, background 0.3s;
}
.nav-links a:hover {
  color: #fff;
  background: #de0818;
  border-radius: 5px;
}
.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  max-width: 80px;
}
.menu-toggle:hover {
  background: none;
}

/* Responsief gedrag */
@media (min-width: 800px) and (max-width: 1000px){
  .nav-links a {
    font-size: 1.8vw;
  }
}
@media (max-width: 800px){
  .nav-links {
    display: none;
    flex-direction: column;
/*    background: #de0818;*/
    position: absolute;
    top: 62px;
    right: 1px;
    width: 50%;
    text-align: center;
    padding: 0px;
    opacity:0.95;
    gap: 0px;
    text-align: right;
  }
  .nav-links a {
    display: block;
/*    padding: 1px 0px;*/
    font-size: 19px;
    white-space: nowrap;
    width: calc(100%);
    margin:0px auto 1px;
    background: #ffcc00;
  }
  .menu-toggle {
    display: block;
  }
  .nav-active {
    display: flex;
  }
}



/*------------------------------------------------------------
📞 TELEFOON BUTTON
------------------------------------------------------------*/
.phone {
  display: inline-block;
  padding: 15px 30px;
  font-size: 24px;
  color: #333;
  background: #FFC107;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}
.phone:hover {
  background: #388e3c;
  color: white;
}
/*------------------------------------------------------------
📞 BOOK ONLINE BUTTON
------------------------------------------------------------*/
.bookbtn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 24px;
  color: white;
  background: #4CAF50;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}
.bookbtn:hover {
  background: #388e3c;
  color: white;
}
.orText {
    text-align: center;
    white-space: nowrap;
}
@media (max-width: 742px) {
    .orText {
        width: 100%;
    }
}

/*------------------------------------------------------------
🔄 LOADER
------------------------------------------------------------*/
.loader-container {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  top: 0;
  left: 0;
}
.loader-wrap {
  width: 80px;
  height: 80px;
  margin: 200px auto;
}
.loader {
  width: 80px;
  height: 80px;
  border: 8px solid #f8d301;
  border-top: 8px solid #de0818;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: bold;
  color: #de0818;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*------------------------------------------------------------
🚖 TAXIFORM STIJLEN
------------------------------------------------------------*/
#taxiForm {
  text-align: left;
}

#taxiForm .form-control:disabled, .form-control[readonly]{
    background-color:#fff;
}

#taxiForm h3,
#taxiForm h6 {
  font-weight: bold;
}
#taxiForm .form-label {
  font-weight: bold;
  padding-top: 15px;
  padding-left: 0px;
  padding-right: 15px;
}
#taxiForm .form-control,
#taxiForm .form-select {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 5px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#taxiForm .form-control:hover,
#taxiForm .form-select:hover {
  border-color: #ffcc00;
}
#taxiForm .form-control:focus,
#taxiForm .form-select:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 0 0.15rem rgba(255, 204, 0, 0.4);
}
#taxiForm .form-control::placeholder {
  color: #888;
  opacity: 1;
}

/* Submit knop */
#taxiForm button[type="submit"] {
  background-color: #00C875;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  padding: 12px 20px;
  box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}
#taxiForm button[type="submit"]:hover {
  background-color: #00B86B;
}

/* Bagage toggle switch */
.dual-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}
.dual-switch input[type="checkbox"] {
  display: none;
}
.switch-slider {
  position: relative;
  width: 72px;
  height: 26px;
  background-color: #bbb;
  border-radius: 30px;
  cursor: pointer;
}
.switch-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
input[type="checkbox"]:checked + .switch-slider {
  background-color: #f5c400;
}
input[type="checkbox"]:checked + .switch-slider::before {
  transform: translateX(42px);
}
.label-left, .label-right {
  color: #f5c400;
  opacity: 0.2;
}
.label-left.active,
.label-right.active {
  opacity: 1;
  color: #ffcc00;
}

/* Tussenstops toevoegen */
#add-stop {
  background-color: #555 !important;
  color: #ffcc00 !important;
  border: 1px dashed #ffcc00 !important;
  font-size: 0.7rem !important;
  margin-left: 60px;
}
#add-stop:hover {
  background-color: #ffcc00 !important;
  color: #fff !important;
}

.via-group{
    position: relative;
}
.via-group button.btn-danger {
  font-size: 1.2rem;
  padding: 0 10px;
  background-color: transparent;
  color: #dc3545;
  border: none;
  top: 0px;
  right: 0px;
}

@media (max-width: 767px) {
    #add-stop {
        margin-left: 0px;
    }
    .via-group button.btn-danger{
        top: 45px;
    }
}
/*------------------------------------------------------------
🧷 INLINE FORM LABELS FIX
------------------------------------------------------------*/
#previewRideContainer #taxiForm .form-label {
  min-width: 155px;
  display: inline-block;
}
#taxiForm .form-label {
  display: inline-block;
  white-space: nowrap;
}

#taxiForm .form-group,
#taxiForm .form-control,
#taxiForm .form-select {
  width: 100%;
}

#taxiForm .row .col-md-6 .form-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Optioneel: inputvelden iets compacter maken */
#taxiForm .form-control {
  padding: 10px 20px 10px 10px;
  font-size: 0.95rem;
}

/*------------------------------------------------------------
🧷 INLINE LABELS (.form-label-inline)
------------------------------------------------------------*/
#taxiForm .form-label-inline {
  display: inline-block;
  min-width: 130px;
  font-weight: bold;
  vertical-align: middle;
}

#taxiForm .form-label-inline ~ input,
#taxiForm .form-label-inline ~ select {
  display: inline-block;
  width: calc(100% - 140px); /* rekening houden met label breedte + ruimte */
  vertical-align: middle;
}
#taxiForm .form-check .form-check-input {
    margin-left: 10px;
    border-color: #fc0;
    font-size: 1rem;
}
#taxiForm .form-check .form-check-input:checked{
    background-color: #ffcc00;
}

/*------------------------------------------------------------
🧾 RITPREVIEW STIJLEN
------------------------------------------------------------*/
#previewRideContainer {
  background: linear-gradient(160deg, #ffcc00, #555555, #000);
  width: 95%;
  padding: 10px;
}
#previewRideContainer form {
  text-align: left;
  color: #fff;
  padding: 10px;
}
#previewRideContainer .form-label,
#previewRideContainer .form-label-value {
  color: #fff;
}
#previewRideContainer .form-label-price {
  font-weight: bold;
  font-size: 2em;
  color: #ffcc00;
  text-shadow: 3px 3px 3px rgba(85, 85, 85, 0.6);
}
#previewRideContainer .form-control,
#previewRideContainer .form-select {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px 12px;
}
#previewRideContainer .form-control:focus,
#previewRideContainer .form-select:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 0 0.15rem rgba(255, 204, 0, 0.4);
}
#previewRideContainer button[type="submit"] {
  background-color: #ffcc00;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 1rem 2rem;
}
#previewRideContainer button[type="submit"]:hover {
  background-color: #e6b800;
}


/*------------------------------------------------------------
🔳 CONFIRMATION-INFO
------------------------------------------------------------*/
#confirmation-info{
    background: linear-gradient(160deg, #ffcc00, #555555, #000);
    max-width: 750px;
    color:#fff;
}
#confirmation-info #pickup-info{
    color:#555;
}
#confirmation-info #company-process i{
    color:#ffcc00;
}

/*------------------------------------------------------------
🔳 HOME PAGE
------------------------------------------------------------*/
#homeContainer{
    text-align: center !important;
}
/*------------------------------------------------------------
🔳 OUR SERVICES PAGE
------------------------------------------------------------*/
#our-services .service-box{
    background-color: rgba(0, 0, 0, 0.3) !important; 
}
/*#our-services .imgService{
    width:
}*/
/*------------------------------------------------------------
🔳 CONTACT PAGE
------------------------------------------------------------*/
#contactContainer .accordion-item .accordion-button{
    color:#000;
    background: rgba(255, 204, 0, 0.9);
}
#contactContainer .accordion-collapse{
    border:solid rgba(222,8,24,.125);
    border-width: 1px;
}
#contactContainer .accordion-button:not(.collapsed){
    background: rgba(222, 8, 24, 0.8);    
    color:#fff;
}
.accordion-body{
    background-color: rgba(0, 0, 0, 0.2);    
}
