* {
   margin: 0;
   padding: 0;
    font-family: Arial, Helvetica, sans-serif;
	
}

html, body {
    background-color: #f4f4f4;
    width: auto;
    height: auto;
	
}



/* Header en Hero */
header {
    position: relative;
    padding: 0;
}
header {
  position: relative;
  padding: 0;
}

/* ========== HERO-IMAGE ========== */
.hero-image {
  position: relative;
  background-image: url('images/interlaken.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-text {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
  word-wrap: break-word;
}

.hero-text h1 {
  font-size: 4rem;
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
}

.hero-text p {
  font-size: 1.5rem;
  margin: 10px 0;
}

/* ========== KNOPPEN ========== */
.btn-primary,
.btn-secondary,
.cta-button {
  display: inline-block;
  padding: 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  box-sizing: border-box;
}

.btn-primary { background-color: #007bff; }
.btn-primary:hover { background-color: #0056b3; }

.btn-secondary { background-color: #6c757d; }
.btn-secondary:hover { background-color: #5a6268; }

.cta-button { background-color: #28a745; font-size: 18px; }
.cta-button:hover { background-color: #218838; transform: scale(1.05); }

/* ========== NAVIGATIE ========== */
nav.topnav {
  background-color: #305178;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

nav.topnav a,
nav.topnav .dropbtn {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 1rem;
  text-align: center;
}

nav.topnav a.active {
  background-color: #2f5680;
}

nav.topnav .dropdown {
  position: relative;
}

nav.topnav .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  top: 100%;
  left: 0;
}

nav.topnav .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

nav.topnav .dropdown:hover .dropdown-content {
  display: block;
}

nav.topnav a:hover,
nav.topnav .dropdown:hover .dropbtn {
  background-color: #447199;
}

/* ========== HAMBURGER KNOP ========== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
  transition: all 0.4s ease;
}

/* Animatie: hamburger naar 'X' */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 500px; /* voldoende ruimte voor alle links */
  }

  .menu-toggle {
    display: flex;
  }

  nav.topnav a,
  nav.topnav .dropbtn {
    width: 100%;
    padding: 10px;
  }

  nav.topnav .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #eaeaea;
  }
}



/* ========== BUTTON ========== */
.btn-primary,
button {
  display: inline-block;
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 10px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover,
button:hover {
  background-color: #0056b3;
}



/* ========== SLIDER / LANDEN OVERZICHT ========== */
.trip-slider {
  padding: 0 20px 60px;
  max-width: 1200px;
  margin: auto;
}

.slider-container {
  display: flex;
  gap: 29px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

/* LAND KAART / KAART-COMPONENT */
.country-slide {
  flex: 0 0 30%;
  max-width: 350px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.country-slide:hover {
  transform: scale(1.02);
}

.country-slide img {
  width: 100%;
  height: 225px;
  object-fit: cover;
}

.slide-content {
  padding: 15px;
  text-align: left;
}

.slide-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 6px;
}

/* UITKLAP INFO */
.extra-info {
  display: none;
  background: #eef6ff;
  padding: 12px;
  margin-top: 10px;
  border-left: 4px solid #007bff;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #444;
}

.extra-info.show {
  display: block;
}

/* ========== MOBIEL: SLIDER OP MOBIEL ========== */
@media (max-width: 768px) {
  .slider-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .country-slide {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }
}

/* STANDAARD – 1 per rij (mobiel) */
.country-slide {
  flex: 0 0 100%;
  max-width: 100%;
}

/* TABLET – 2 per rij */
@media (min-width: 768px) {
  .country-slide {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

/* DESKTOP – 4 per rij */
@media (min-width: 1024px) {
  .country-slide {
    flex: 0 0 23%;
    max-width: 23%;
  }
}



