/* Reset en basis */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #fafafa;
  overflow-x: hidden;
  box-sizing: border-box;
}



*, *::before, *::after {
  box-sizing: inherit;
}

/* Overlay voor menu op klein scherm */
#overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 900;
  transition: opacity 0.3s ease;
  opacity: 0; 
  pointer-events: none;
}

#overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Main content */
main {
  margin-left: 220px;
  padding: 2rem;
  transition: margin-left 0.3s ease;
  width: calc(100% - 220px);
}

/* Drie vakken layout */
.three-columns-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 100%;
  width: 100%;
}

.feature-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-box {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #8b7355;
  width: 100%;
}



.feature-box h3 {
  color: #13531d;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
}

.feature-box p {
  color: #6c757d;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
}

.feature-icon {
  font-size: 1.8rem;
  color: #e67e22;
}

.visorando-link {
  display: inline-block;
  margin-top: 1rem;
  color: #13531d;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.visorando-link:hover {
  color: #e67e22;
  text-decoration: underline;
}

.map-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-top: 4px solid #3e7f60;
  width: 100%;
}

.map-section h3{
  color: #13531d;
  font-family: 'Playfair Display', serif;
}

/* Chalets kolom styling */
.chalets-column {
  background-color: #dddddd;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: 'Playfair Display', serif;
}

.chalets-column h2 {
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.chalet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}

.chalet-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  width: 100%;
}

.chalet-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

.chalet-mobile {
background-image: url('https://www.transparenttextures.com/patterns/black-paper.png');
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.chalet-card:hover .chalet-mobile {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.chalet-mobile img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.chalet-text {
  padding: 0.8rem;
  text-align: center;
  font-weight: 600;
  margin: 0;
  color: #fafafa;
  width: 100%;
}

.justify-content-chalet-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  width: 100%;
}

.chalet-btn {
  background: #3e7f60;
  color: white;
  padding: 1.2rem 1.5rem;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s, transform 0.2s;
}

.chalet-btn:hover {
  background-color: #56a57e;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* Intro sectie styling */
#intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  width: 100%;
}

/* MOBIELE AANPASSINGEN */
@media (max-width: 900px) {
  main {
    margin-left: 0 !important;
    padding: 1rem !important;
    width: 100% !important;
  }
  
  .three-columns-section {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .feature-column {
    order: 1;
  }
  
  .chalets-column {
    order: 2;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 0;
    width: 100%;
  }
  
  .chalet-grid {
    grid-template-columns: 1fr !important;
    max-width: 100%;
    margin: 0 auto;
    gap: 1rem;
  }
  
  .feature-box, .map-section, #intro {
    padding: 1.5rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  
  .feature-box h3 {
    font-size: 1.3rem;
  }
  
  #intro {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  #intro h1 {
    font-size: 2rem;
  }
  
  .justify-content-chalet-btn {
    padding: 0.5rem;
    grid-column: 1 / -1;
    order: 999;
  }
  
  .chalet-btn {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .feature-box p, 
  .chalet-text, 
  .checkbox-label,
  #click-to-enlarge {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  #map-small {
    height: 250px;
  }
}

/* Extra kleine schermen */
@media (max-width: 480px) {
  .chalet-grid {
    max-width: 100%;
  }
  
  .chalet-mobile img {
    height: 120px;
  }
  
  .chalet-text {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  
  .feature-box, .map-section, #intro {
    padding: 1rem;
  }
  
  #intro {
    padding: 1rem;
  }
  
  #intro h1 {
    font-size: 1.8rem;
  }
  
  .feature-box h3 {
    font-size: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .feature-icon {
    font-size: 1.5rem;
  }
}











