@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Playfair+Display:wght@700&display=swap');

body {
    padding-top: 56px;
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: var(--arbora-beige);
    color: #333;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar-brand,
.nav-link {
    color: var(--arbora-bruin) !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

#lang-toggle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--arbora-bruin);
    border-color: var(--arbora-bruin);
}

#lang-toggle:hover {
    background-color: var(--arbora-accent);
    color: white;
    border-color: var(--arbora-accent);
}

.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        url("Images/w07961-small.jpg") center/cover no-repeat;

    color: var(--arbora-bruin);
    text-align: center;
    padding: 120px 5px;
    border-bottom: 5px solid var(--arbora-accent);
}


.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    letter-spacing: 0.1em;
    /* 0.1em is een mooie lichte spacing */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    margin: 0 auto;
    max-width: 90vw;
    word-wrap: break-word;
}

/* Mobiel: kleinere letters */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 4rem;
        /* Aangepaste kleinere grootte */
        letter-spacing: 0.1em;
        /* iets minder spacing op mobiel */
        max-width: 95vw;
    }
}

.hero p.lead {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: #4a3b2a;
}

.section-title {
    color: var(--arbora-bruin);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    border-bottom: 2px solid var(--arbora-accent);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

section {
    background-color: var(--arbora-groen);
    padding: 4rem 0;
    border-radius: 16px;
    margin: 2rem 0;
}

footer {
    background-color: var(--arbora-lichtgroen);
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--arbora-bruin);
    border-top: 3px solid var(--arbora-accent);
}

#arbora-text,
#slogan-text {
    transition: opacity 1.5s ease-in;
}

h2.display-3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.05em;
    color: #8b5e3c;
}
/* Portfolio items styling */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.portfolio-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover::after {
  opacity: 1;
}

/* Desktop grid */
@media (min-width: 768px) {
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* Mobiel horizontaal scroll */
@media (max-width: 767px) {
  .portfolio-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }

  .portfolio-grid::-webkit-scrollbar {
    height: 6px;
  }

  .portfolio-grid::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 4px;
  }

  .portfolio-item {
    flex: 0 0 90%; /* elk item neemt 90% van het scherm, niet te breed */
    max-width: 90%; 
    height: auto;
    border-radius: 0.5rem;
    overflow: hidden;
  }

  .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .portfolio-item:hover img {
    transform: scale(1.02); /* zeer subtiele zoom voor mobiel */
  }
}



/* Icoon groter maken */
.social-icons i {
    font-size: 3.5rem; /* groter dan fs-2 */
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover-effect */
.social-icons a.social-link:hover i {
    color: #E1306C; /* Instagram roze */
    transform: scale(1.2); /* iets groter bij hover */
}
