/* Algemene instellingen */
html {
  overflow-x: hidden;
}

body {
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #808080;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #ebbbb9;
}

/* Achtergronden en secties */
.bg-1, .bg-2 { background: #a3a09d; color: #b0a8a2; }
.bg-3, .bg-6 { background: #fff; color: #808080; }
.bg-4, .bg-5 { background: #f4e9e5; color: #808080; }
.bg-7 { background: #fff; color: #ebbbb9; }

/* Tekst in bepaalde secties */
.bg-2 h3, .bg-2 p, .bg-2 a { color: #FFFFFF; }

/* Afbeeldingen */
.fotoshoot-img {
  max-width: 100%;
  border-radius: 50%;
  margin-top: 20px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.portfolio-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-text {
  margin-top: 10px;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: #777;
  text-align: center;
}

.portfolio-text h3 { color: #ebbbb9; font-family: 'Montserrat', sans-serif; }

/* Video */
.video-container video {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Kaarten */
.card {
  border-radius: 0;
  transition: box-shadow 0.5s ease;
  border: none;
  background-color: #fff;
}

.card:hover { box-shadow: 5px 0 40px rgba(0,0,0,0.2); }

.card-footer {
  background-color: #fff;
  padding: 1rem;
}

.card-footer h3 { font-size: 32px; color: #808080; }
.card-footer h4 { font-size: 14px; color: #aaa; }

/* Knoppen */
.btn-primary {
  background-color: #a3a09d;
  border-color: #a3a09d;
  color: #fff;
}

.btn-primary:hover {
  background-color: #8f8c89;
  border-color: #8f8c89;
}

.btn-tarief {
  background-color: #ebbbb9;
  border-color: #ebbbb9;
  color: #fff;
}

.btn-tarief:hover {
  background-color: #dca7a9;
  border-color: #dca7a9;
}

/* Navbar */
.navbar {
  background-color: #ebbbb9;
  letter-spacing: 4px;
  font-size: 13px;
}

.navbar .nav-link,
.navbar-brand { color: #fff !important; }

.navbar .nav-link:hover,
.navbar .nav-link.active {
  background-color: #fff;
  color: #ebbbb9 !important;
}

/* Slogan sectie */
.slogan-section {
  padding: 80px 0;
}

.slogan-section h3 {
  margin-bottom: 30px;
}

/* Parallax afbeeldingen */
.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bgimg-1 {
  background-image: url("/portf/newbornshoot-9.jpg");
  min-height: 100vh;
  background-attachment: fixed;
}

.bgimg-2 {
  background-image: url("/portf/newbornshoot-18.jpg");
  min-height: 600px;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bgimg-3 {
  background-image: url("/portf/newbornshoot-5.jpg");
  min-height: 600px;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bgimg-4 {
  background-image: url("/portf/newbornshoot-49.webp");
  min-height: 600px;
  background-attachment: fixed;
}

.parallax-text {
  font-family: 'Cinzel', serif;
  font-size: 100px;
  color: #fff;
  text-align: center;
  letter-spacing: 6px;
}

@media (max-width: 600px) {
  .parallax-text { font-size: 40px; }
  h5 { font-size: 40px; }
}

@media screen and (max-width: 1024px) {
  .bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4 { background-attachment: scroll; }
}

/* Footer */
.footer-bar {
  background-color: #ebbbb9;
  padding: 12px 0;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.footer-bar span,
.footer-bar a { color: #fff; }

.footer-bar a { margin-left: 12px; transition: opacity 0.2s ease; }
.footer-bar a:hover { opacity: 0.7; }




/* Carousel container: volledige breedte */
.carousel {
  width: 60vw;       /* volledige viewport breedte */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  max-width: 100%;    /* verwijder eerdere limieten zoals 1200px */
}

/* Track: flex zodat slides naast elkaar staan */
.carousel-track {
  display: flex;
   transition: transform 0.4s ease-in-out;
  will-change: transform; /* 🚀 performance boost */
}


/* Slides: iedere slide neemt volledige breedte */
.slide {
  min-width: 60vw;   /* iedere slide vult de volledige viewport breedte */
  height: 700px;      /* pas aan naar wens */
  box-sizing: border-box;
}



/* Knoppen */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.35);
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 0;
  z-index: 10;
}


.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* Responsive */
@media(max-width: 768px){
  .carousel { width: 90%; }
}
