/* Custom Fonts */
@font-face {
  font-family: "Nocturne";
  src: url(./nocturne-serif-font-family-1736050097-0/NocturneSerifTest-Regular-uploaded-63b633de2e1c7.otf);
  font-display: swap;
}

@font-face {
  font-family: "NotoSans";
  src: url(./Noto_Sans/NotoSans-VariableFont_wdth\wght.ttf);
  font-display: swap;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family:
    "NotoSans",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Fixed Booking Button */
.fixed-booking-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #1a1a1a;
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fixed-booking-btn:hover,
.fixed-booking-btn:focus {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.fixed-booking-btn svg {
  width: 20px;
  height: 20px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 1.25rem 2rem;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

nav a:hover,
nav a:focus {
  color: #b9b9b9;
  transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  padding: 0;
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  z-index: 1100;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content */
main {
  width: 100%;
}

/* Hero Section with Parallax */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("./img/varens.JPG");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1.25rem;
}

.hero h1 {
  font-family: "Nocturne", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.cta-button {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  background: transparent;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-button:hover,
.cta-button:focus {
  background: white;
  color: #2c2c2c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
  padding: 5rem 2rem;
  background: #f8f8f8;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about p {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

figure {
  margin: 20;
  justify-items: end;
}

figure img {
  width: 70%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Video Carousel Section - KLEINER GEMAAKT */
.gallery {
  padding: 3rem 2rem 5rem;
  background: white;
  background-color: #2c2c2c;
}

.gallery h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

.carousel {
  max-width: 700px; /* Verkleind van 1000px naar 700px */
  margin: 0 auto;
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide video {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  max-height: 70vh; /* Beperkt hoogte op groot scherm */
  object-fit: cover;
  object-position: 100% 65%;
  background: #000;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a1a1a;
  border: none;
  color: white;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-button:hover,
.carousel-button:focus {
  background: #333;
  transform: scale(1.1);
}

.carousel-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-indicators {
  display: flex;
  gap: 0.5rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: #1a1a1a;
  width: 32px;
  border-radius: 6px;
}

/* Contact Section */
.contact {
  padding: 5rem 2rem;
  background: #f8f8f8;
}

.contact h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Social Section */
.social {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.social h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.social-link:hover,
.social-link:focus {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link[data-platform="instagram"] {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-link[data-platform="tiktok"] {
  background: #000;
}

.social-link svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Footer */
footer {
  background: #2c3e36;
  padding: 1.5rem 2rem;
  text-align: center;
  color: white;
}

footer p {
  font-size: 0.875rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }

  header nav.nav-active {
    transform: translateY(0);
  }

  header nav a {
    font-size: 1.5rem;
  }

  .hamburger-btn {
    display: flex;
  }

  /* Parallax scroll op mobiel */
  .hero {
    background-attachment: scroll;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  figure {
    justify-items: center;
  }

  .carousel {
    max-width: 100%;
  }

  .carousel-slide video {
    max-height: 60vh;
  }

  /* Fixed button smaller op mobiel */
  .fixed-booking-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }

  .fixed-booking-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-slide video {
    max-height: 50vh;
  }
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #4a90e2;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
