/* ==========================================================
   ROOT VARIABLES
   ========================================================== */

:root {
  --font-main: "Inter", sans-serif;
  --font-serif: "Playfair Display", serif;

  --bg-main: #0f0f0f;
  --bg-section: #151515;
  --bg-card: #1c1c1c;

  --text-main: #eaeaea;
  --text-muted: #b5b5b5;

  --accent: #d8a84f;

  --nav-height-desktop: 80px;
  --nav-height-mobile: 64px;

  --radius-small: 6px;
  --radius-media: 12px;
  --radius-pill: 999px;

  --shadow-main: 0 18px 45px rgba(0, 0, 0, .35);
  --shadow-soft: 0 8px 26px rgba(0, 0, 0, .30);

  --carousel-gap: 12px;
}


/* ==========================================================
   GLOBAL RESET
   ========================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg-main);
  color: var(--text-main);

  padding-top: var(--nav-height-desktop);
  line-height: 1.7;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
  body {
    padding-top: var(--nav-height-mobile);
  }
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.fa-solid,
.fa-brands,
.fa-regular {
  line-height: 1;
}


/* ==========================================================
   CONTAINER
   ========================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
}

@media (max-width: 768px) {
  .container {
    padding-inline: 16px;
    max-width: 100%;
  }
}


/* ==========================================================
   TYPOGRAPHY
   ========================================================== */

h1,
h2,
h3 {
  letter-spacing: -0.01em;
  line-height: 1.2;
}


/* ==========================================================
   LINKS
   ========================================================== */

.page-section p a,
.page-section li a {
  color: var(--accent);
  text-decoration: none;
}


/* ==========================================================
   PAGE SECTIONS
   ========================================================== */

.page-section {
  padding: 3rem 0;

  background: radial-gradient(
    900px 450px at 50% -60px,
    rgba(224, 177, 90, .08),
    transparent 70%
  );
}

@media (max-width: 768px) {
  .page-section {
    padding: 2rem 0;
  }
}


/* ==========================================================
   SECTION TITLES (H2)
   ========================================================== */

.page-section h1,
.page-section h2 {
  text-align: center;
}

.page-section h1 {
  margin: 0 auto 3rem;
  max-width: 800px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.page-section h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin: 1rem auto 0;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.page-section h2 {
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 2.5rem 0 1.5rem;
  padding-top: 1rem;
}

.page-section h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: .8rem auto 0;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}


/* ==========================================================
   CONTENT ROW
   ========================================================== */

.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.content-row.reverse .content-text {
  order: 2;
}

.content-row.reverse .content-image {
  order: 1;
}

.content-text {
  max-width: 650px;
}

.content-text p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.content-image {
  align-self: start;
}

.content-image picture {
  width: 100%;
  max-width: 520px;
  display: block;
}

.content-image img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: var(--radius-media);
  box-shadow: var(--shadow-main);
  transition: transform .4s ease;
  filter: contrast(1.05) brightness(0.95);
}

.content-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 992px) {
  .content-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .content-text {
    margin-inline: auto;
  }

  .content-image {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .content-row {
    gap: 2rem;
    margin-bottom: 3rem;
  }
}


/* ==========================================================
   GRID
   ========================================================== */

.grid {
  display: grid;
  gap: 2rem;
}

.grid-icons {
  grid-template-columns: repeat(auto-fit, minmax(120px, 140px));
  justify-content: center;
  gap: 1.5rem;
}


/* ==========================================================
   NAVBAR
   ========================================================== */

.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  height: var(--nav-height-desktop);

  display: flex;
  align-items: center;

  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  box-shadow: var(--shadow-soft);

  transition: background .4s ease, box-shadow .4s ease;
}

.nav-inner,
.nav-left,
.nav-right,
.nav-social-icons {
  display: flex;
  align-items: center;
}

.nav-inner {
  justify-content: space-between;
  width: 100%;
  padding-inline: clamp(28px, 5vw, 90px);
  position: relative;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
}

.nav-brand {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;

  color: var(--accent);
  text-decoration: none;

  flex-shrink: 0;
  transform: translateY(1px);
  transition: .3s ease;
}

.nav-brand:hover {
  color: #ffd98a;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0 6px;

  font-size: 1rem;
  letter-spacing: .08em;
  line-height: 1;

  color: var(--text-main);
  text-decoration: none;
  opacity: .8;

  position: relative;
  transition: .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--accent);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;

  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-login-btn {
  border: 1px solid #c9a84c; /* goudkleur passend bij je branding */
  border-radius: 4px;
  padding: 6px 16px !important;
}

.nav-login-btn:hover {
  background-color: #c9a84c;
  color: #000 !important;
}

.nav-social-icons {
  gap: 1rem;
}

.nav-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;

  color: var(--text-main);
  text-decoration: none;
}

.nav-social-icons i {
  font-size: 1.1rem;
  opacity: .85;
  transition: .25s ease;
}

.nav-social-icons a:hover i {
  transform: translateY(-1px);
  opacity: 1;
  color: var(--accent);
}

.nav-social-icons a:hover .fa-whatsapp { color: #25D366; }
.nav-social-icons a:hover .fa-instagram { color: #E1306C; }
.nav-social-icons a:hover .fa-youtube { color: #FF0000; }
.nav-social-icons a:hover .fa-facebook { color: #1877F2; }


/* ==========================================================
   HAMBURGER
   ========================================================== */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;

  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1100;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;

  background: #fff;
  border-radius: 2px;

  transform: translateX(-50%);
  transition: .3s ease;
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }

.nav-toggle.open span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}


/* ==========================================================
   MOBILE NAV
   ========================================================== */

@media (max-width: 768px) {

  .custom-navbar {
    height: var(--nav-height-mobile);
    background: #000;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 18px;
    height: 100%;
  }

  .nav-brand {
    font-size: 2rem;
    line-height: 1;
  }

  .nav-left {
    position: relative;
    z-index: 1001;
  }

  .nav-center {
    position: fixed;
    inset: 0;
    height: 100dvh;

    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding-top: 95px;
    gap: 1.6rem;

    background: rgba(0, 0, 0, .98);
    backdrop-filter: blur(3px);

    opacity: 0;
    transform: translateY(-110%);
    transition: .35s ease;

    pointer-events: none;
    will-change: transform;
  }

  .nav-center.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.6rem;
  }

  .nav-links a {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: .08em;
  }

  .nav-links a:hover {
    transform: translateY(-2px);
  }

  .nav-social-icons {
    display: none;
  }

  .nav-center.open ~ .nav-right .nav-social-icons {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 1.2rem;
  }

  .nav-social-icons i {
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
  }

}


/* ==========================================================
   HERO
   ========================================================== */

#hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 30%;

  transform: scale(1.03);
  filter: contrast(1.05) brightness(1);

  will-change: transform;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0.08) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;

  padding: 0 clamp(4px, 2vw, 40px) 10vh;
  text-align: left;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .6);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.4;
  opacity: .95;
  margin-top: 0.6rem;
  letter-spacing: 0.01em;
  max-width: 440px;
  text-shadow: 0 6px 20px rgba(0, 0, 0, .6);
}

@media (max-width: 768px) {
  .hero-overlay {
    padding: 0 18px 8vh;
    max-width: none;
  }

  .hero-image img {
    object-position: 60% 25%;
    transform: scale(1.08);
  }
}


/* ==========================================================
   CAROUSEL
   ========================================================== */

.carousel {
  position: relative;
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
  border-radius: var(--radius-media);
  overflow: hidden;
  box-shadow: var(--shadow-main);
}

.carousel::after {
  content: "›";
  position: absolute;
  right: 14px;
  bottom: 14px;
  font-size: 1.4rem;
  opacity: .5;
  animation: carouselHint 1.8s infinite;
  pointer-events: none;
}

.carousel:hover::after {
  opacity: 0;
}

@keyframes carouselHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.carousel-16x9 {
  aspect-ratio: 16 / 9;
}

.carousel-viewport {
  width: 100%;
  height: 100%;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;

  scrollbar-width: none;
  position: relative;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-viewport::before,
.carousel-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 1;
}

.carousel-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-main), transparent);
}

.carousel-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-main), transparent);
}

.carousel-track {
  display: flex;
  height: 100%;
  gap: var(--carousel-gap);
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  padding: 6px;
  scroll-snap-align: start;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #000;
}

.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-media);
  background: #000;
  transition: transform .35s ease;
  will-change: transform;
}

.carousel-slide:hover img,
.carousel-slide:hover video {
  transform: scale(1.03);
}

.carousel-caption {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -40%);

  width: 85%;
  max-width: 640px;
  padding: 6px 14px;

  font-size: .85rem;
  color: #fff;
  text-align: center;
  line-height: 1.4;

  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-small);

  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .35s ease;
}

.carousel-slide:hover .carousel-caption {
  opacity: 1;
  transform: translate(-50%, -40%);
}


/* ==========================================================
   CAROUSEL BUTTONS
   ========================================================== */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, .65);
  color: #fff;

  border: none;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);

  opacity: 0;
  pointer-events: none;

  transition: opacity .25s ease, transform .2s ease, background .2s ease;
}

@keyframes carouselPulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.08); }
}

.carousel.pulse .carousel-btn {
  opacity: .9;
  pointer-events: auto;
  animation: carouselPulse 1.6s ease-in-out 3;
}

.carousel:hover .carousel-btn {
  opacity: .9;
  pointer-events: auto;
  animation: none;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, .85);
  transform: translateY(-50%) scale(1.12);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(.95);
}

.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }

.carousel-btn span {
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-1px);
}

@media (hover: none) {
  .carousel-btn {
    opacity: .9;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-btn,
  .carousel::after {
    animation: none;
  }
}


/* ==========================================================
   CONTACT
   ========================================================== */

#contact .contact-item {
  width: 140px;
  text-align: center;
}

#contact .contact-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;

  color: var(--text-main);
  text-decoration: none;
}

#contact .contact-item a:visited {
  color: var(--text-main);
}

#contact .contact-item i {
  width: 56px;
  height: 56px;
  font-size: 2.2rem;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--text-main);
  border: 1px solid rgba(207, 167, 94, .45);
  border-radius: 50%;

  transition: transform .25s ease, color .25s ease, box-shadow .25s ease;
}

#contact .contact-item span {
  font-size: .85rem;
  letter-spacing: .03em;
  opacity: .85;
  white-space: nowrap;
}

#contact .contact-item a:hover i {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 26px currentColor;
}

#contact .contact-item a:hover .fa-whatsapp { color: #25D366; }
#contact .contact-item a:hover .fa-instagram { color: #E1306C; }
#contact .contact-item a:hover .fa-youtube { color: #FF0000; }
#contact .contact-item a:hover .fa-facebook { color: #1877F2; }

#contact .contact-item a:active i {
  transform: scale(.95);
}


/* ==========================================================
   FOOTER
   ========================================================== */

#footer {
  position: relative;
  background: #111;
  color: var(--text-main);

  padding: 2rem 0;
  font-size: .85rem;
  letter-spacing: .3px;
  text-align: center;
}

#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 80%;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, .15),
    transparent
  );
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .5rem;
}

#footer a {
  color: var(--text-main);
  text-decoration: none;
  transition: .25s ease;
}

#footer a:hover {
  opacity: .7;
  text-decoration: underline;
}

.footer-brand {
  font-weight: 700;
}

@media (max-width: 576px) {
  .footer-content {
    flex-direction: column;
    gap: .4rem;
  }
}