/*
* Style
*/


/*
* Google font
*/

@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,700|Roboto");


/*
* Section - Home
*/
.background-cover{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
figure{
	overflow:hidden;
}
img{
	width:100%;
}
/* Reservation create button 
#make_res_img{
	position: fixed;
	left: 10px;
	top: 50px;
	cursor: pointer;
	-ms-transform: rotate(-7deg);
	-webkit-transform: rotate(-7deg);
	transform: rotate(-7deg);
	z-index: 9999;
	width: 180px;
}*/
/* BG Image */
#home {
    background-image: url("../images/bg-home-1.jpg");
}

/** BG Parallax */
#home-bg-parallax > .bg-parallax {
    background: url("../images/bg-parallax.jpg");
}

/** BG Slideshow */
#home-bg-slideshow .slides > .bg-cover:nth-child(1) {
    background: url("../images/bg-home-1.jpg");
}
#home-bg-slideshow .slides > .bg-cover:nth-child(2) {
    background: url("../images/bg-home-2.jpg");
}
#home-bg-slideshow .slides > .bg-cover:nth-child(3) {
    background: url("../images/bg-home-3.jpg");
}
#home-bg-slideshow > .position-absolute {
    z-index: 20;
}

/** BG Video */
#home-bg-video .player:before {
    z-index: 15;
}
#home-bg-video .player.is-mobile {
    display: none;
}
#home-bg-video .container {
    position: relative;
    z-index: 20;
}
#home-bg-video .inline-YTPlayer {
    height: 100%;
    overflow: hidden;
}

.sep-line-medium-thick {
    width: 150px;         /* Adjust width as needed */
    height: 6px;          /* Adjust height to make it thicker */
    background-color: #3498db; /* Ensure it matches your branding color */
    margin: 10px auto;    /* Center it and add spacing */
  }
  
/* Very simple fade-in animation */

.fade-line {
    font-size: 1.6rem;       /* Increase as desired */
    color: #fff;             /* White text */
    line-height: 1.4;        /* Some spacing between lines */
  }
  

  
  /* 3) The fade-in animation (as before) */
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  
  .fade-in {
    animation: fadeIn 1.2s ease forwards;
  }
  
  
 

@media (min-width: 768px) {
  .col-md-6 {
    width: 45%; /* Breder op tablets en grotere schermen */
  }
}

@media (min-width: 992px) {
  .col-md-6 {
    width: 30%; /* Terug naar standaard op desktops */
  }
}


  #services {
    margin-top: -60px; /* Pull the section up into the banner above */
    margin-bottom: 0px; /* Remove padding below the section */
    z-index: 16;
    position: relative;

    
    
}
  .service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: -5px;
    transition: all 0.3s ease;
  
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    font-size: 2rem;
    color: #3498db;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.service-checklist {
    padding-left: 0.5rem !important;
    list-style: none;
    margin-bottom: 1rem;
}

.service-checklist li {
    position: relative;
    padding-left: 3rem; 
    margin-bottom: 0.5rem;
    text-align: left;   
}

.service-checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #3498db;
    position: absolute;
    left: 1rem;      
    top: 50%;
    transform: translateY(-50%);
}

/* Styling voor de iconen in de campersectie */
.info i {
  font-size: 2rem; /* Vergroot de iconen */
  color: #3498db; /* Blauwe kleur passend bij je branding */
  margin-bottom: 10px; /* Ruimte onder de iconen */
  transition: color 0.3s ease; /* Effect bij hover */
}

.info i:hover {
  color: #2c7db3; /* Donkerdere blauwe tint bij hover */
}

#voucher-ad {
  background-color: #b8cbd6; /* Darker blue for better contrast */
  position: relative;
  overflow: hidden;
  z-index: 1; /* Ensure this section stays above other elements */
}

.voucher-card {
  animation: float 3s ease-in-out infinite;
  z-index: 2; /* Ensure this is above overlays */
}

.animated-overlay {
  pointer-events: none; /* Prevent interference with interactive elements */
}

.animated-overlay .glow-circle {
  width: 200px;
  height: 200px;
  background: rgba(138, 170, 190, 0.5); /* Slightly darker glow */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  animation: glow 4s ease-in-out infinite;
}
.voucher-card {
  animation: float 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

.glow-circle {
  width: 200px;
  height: 200px;
  background: rgb(169, 199, 214); /* Adjust for desired glow color */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(100px);
  animation: glow 4s ease-in-out infinite;
  z-index: 5;
}

@keyframes glow {
  0%, 100% {
      opacity: 0.1;
      transform: scale(1);
  }
  50% {
      opacity: 2;
      transform: scale(1.2);
  }
}

.btn-primary {
  background-color: #3498db; 
  border-color: #3498db;
  transition: all 0.3s ease;
  z-index: 3; /* Ensure button stays above everything */
  margin: 0 auto; /* Center the button horizontally */
  display: inline-block; /* Ensure proper spacing */
}

.btn-primary:hover {
  background-color: #2666b2;
  border-color: #2666b2;
  box-shadow: 0 0 15px #a7a7a7;
}

.btn-outline-secondary {
  background-color: #1f964d; 
  border-color: #1f964d;
  transition: all 0.3s ease;
  z-index: 3; /* Ensure button stays above everything */
  margin: 0 auto; /* Center the button horizontally */
  display: inline-block; /* Ensure proper spacing */
}

.btn-outline-secondary:hover {
  background-color: #166835;
  border-color: #166835;
  box-shadow: 0 0 15px #a7a7a7;
}


/*******************************************
  1. Card Container
********************************************/
.houseboat-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.2s ease;
  }
  
  /* Slight hover lift effect */
  .houseboat-card:hover {
    transform: translateY(-5px);
  }
  

  
  /*******************************************
    2. Background Image
  ********************************************/
  .houseboat-image {
    width: 100%;
    height: 200px;      /* Adjust as needed */
    background-position: center;
    background-size: cover;
  }
  
  /*******************************************
    3. Content + Title
  ********************************************/
  .houseboat-content {
    flex-grow: 1;       /* Ensures footer stays at bottom */
  }
  
  .houseboat-title {
    font-size: 1.5rem;  /* Adjust for your design */
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  /*******************************************
    4. Checklist
  ********************************************/
  .houseboat-checklist {
    max-width: 250px;   /* Keeps the list in a neat column */
  }
  
  .houseboat-checklist li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  /* Example: Using a check icon from Font Awesome (adjust to your preference) */
  .houseboat-checklist li::before {
    content: "\f00c"; /* Font Awesome check icon (fa-check) */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #3498db; /* Brand color or accent */
  }
  
  /*******************************************
    5. Footer Buttons
  ********************************************/
  .houseboat-footer .btn {
    border-radius: 4px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  
/* Banner Styling */
.banner {
  position: relative;
  background-size: cover;       
  background-position: center;  
  height: 500px;                
  z-index: 1;
}

/* Schaduw-overlay */
.banner .bg-overlay-black-3 {
  background-color: rgba(0, 0, 0, 0.2); /* Donkere overlay */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Overlay laag */
}

/* Tekst op de schaduw */
.banner .text-center {
  position: relative;
  z-index: 2; /* Tekst boven overlay */
  color: #ffffff; /* Witte tekst */
}

.banner h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 0px;
  z-index: 1; /* Tekst onder tabcontent */
  overflow: hidden; /* Voorkom overloop van tekst */
}
  
  .nav-tabs {
   margin-top: 0px;
  
  }
  
  .nav-tabs .nav-link {
    background-color: #3498db; 
    border-color: #3498db;
    transition: all 0.3s ease;
    z-index: 3;
    border-radius: 1px; 
    margin: 0px; 
    padding: 20px 20px; 
    font-size: 1.5rem; 
    font-weight: 600; 
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    color: #ffffff; /* Set text color to white by default */
}

.nav-tabs .nav-link.active {
    background: #3498db;
    color: #ffffff; /* White text for the active state */
    border: 0px solid #ffffff;
    box-shadow: 0 0 15px #2666b2;
}

.nav-tabs .nav-link:hover {
    background: #2879b9;
    color: #ffffff; /* Ensure text remains white on hover */
    text-decoration: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

  
  .tab-content {
    padding: 20px; /* Add some padding inside the tab panels */
    background: #f8f9fa; /* Light gray background for separation */
    border: 1px solid #2879b9; /* Border around the content for clarity */
    border-radius: 4px; /* Matches tab and button corners */
    margin-top: 0px; /* Space between tabs and content */
  }
  
  
  .general-info {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
  
  .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .button-container .btn {
    padding: 10px 25px; /* Matches tabs */
    border-radius: 4px; /* Consistent radius */
    font-size: 1rem; /* Matches text size */
    font-weight: 600; /* Consistent weight */
    margin: 0 10px; /* Consistent spacing */
  }
  
  
.omline {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/*
* Section - Fun Facts
*/

#fun-facts {
    background-image: url("../images/bg-fun-facts.jpg");
}


/*
* Section - Skills
*/

#skills {
    background-image: url("../images/bg-skills.jpg");
}


/*
* Section - Quote
*/

#quote {
    background-image: url("../images/bg-quote.jpg");
}


/*
* Section - Keep In Touch
*/

#keep-in-touch {
    background-image: url("../images/bg-keep-in-touch.jpg");
}


/*
* Section - Coming Soon
*/

#coming-soon {
    background-image: url("../images/bg-coming-soon.jpg");
}


/*
* Section - Contact
*/

#contact {
    background-image: url("../images/bg-contact.jpg");

}


/*
* Footer
*/

.footer-logo {
    max-height: 40px;
}
.footer-icon-social {
    bottom: 10px;
    position: relative;
}

/* Booking Steps */
.booking-steps {
  background: #fff;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
}

.step-item {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.step-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #e0e0e0;
  transform: translateY(-50%);
}

.step-item:last-child::after {
  display: none;
}

.step-number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  margin: 0 auto 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background: var(--primary-color);
  color: white;
}

.step-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.9rem;
  color: #666;
}

/* Video Section */
.video-wrapper {
  position: relative;
  cursor: pointer;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-play-btn i {
  font-size: 30px;
  color: var(--primary-color);
}

.video-play-btn:hover {
  background: var(--primary-color);
}

.video-play-btn:hover i {
  color: white;
}

/* Price Cards */
.price-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price-card .price span {
  font-size: 1rem;
  color: #666;
}

.facility-list {
  list-style: none;
  padding: 0;
}

.facility-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.facility-list li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Time Card */
.time-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.time-list {
  list-style: none;
  padding: 0;
}

.time-list li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.time-list li:last-child {
  border-bottom: none;
}

/* Rules Grid */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.rule-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}

.rule-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.rule-item h4 {
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .step-item::after {
      display: none;
  }
  
  .step-item {
      padding: 1rem;
  }
  
  .rules-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
}