/* HEADER: transparant over de foto vóór scrollen */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  /*background: #2CB3E8;*/
  background: linear-gradient(
    to bottom,
    #1380B9,
    #5FD0F7
  );
}

/* Logo als link, met zelfde hoverlijn als nav-link */
.logo-link {
  position: relative;
  text-decoration: none;
}

/* zelfde hoverkleur als nav-link */
.logo-link:hover {
  color: #FF8360;
}

/* oranje lijn onder het logo, zelfde animatie als nav-link */
.logo-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 0;
  background: #FF8360;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.logo-link:hover::after {
  width: 100%;
}

/* Hero-sectie */
.hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Donkere overlay over de hero-afbeelding, 0% zwart */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.00);  
  z-index: 1;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition:
    opacity 0.8s ease,
    transform 10s ease;
}

/* Hero-content over volledige schermbreedte op boekenpagina */
.hero-content {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 80px 0 80px;
  text-align: center;
  z-index: 6;
  flex: 1;
}

/* zorgt voor stevige letters, subtiel maar zeer effectief */
.hero-content h1,
.hero-content h2,
.hero-content p {
  color: white;
  font-weight: 700; 
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6); 
}

.hero-content #theview {
  font-size: 50px;
  line-height: 2;
  text-transform: none;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 20px 0 28px 0;
}

.hero-content h2 {
  text-transform: uppercase;
  font-size: 1.6rem;
  margin: 0 0 4px 0;
  margin-top: 0.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  margin: 0 0 36px 0;
  font-size: 17px;
}

/* Smoobu container */
#apartmentIframeAll {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  border-radius: 10px;
}

/* Iframe van Smoobu */
#apartmentIframeAll iframe {
  display: block;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  max-height: none;
  border: none;
  border-radius: 10px;
}

.footer {
  position: relative;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #ffffff;
  /*background: #2CB3E8;*/
  background: linear-gradient(
    to bottom,
    #5FD0F7,
    #1380B9
  );
}
