:root {
  --brown: #45322e;
  --gold: #f1cc80;
  --light-bg: #fffaf2;
  --light-border: #e7d6c6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--brown);
  background-color: var(--light-bg);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--brown);
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: var(--gold);
}


.dark-bg {
  background-color: var(--brown);
  color: #fff;
}

.gold-bg {
  background-color: var(--gold);
  color: var(--brown);
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn.dark {
  background-color: var(--brown);
  color: var(--gold);
}

.btn.dark:hover {
  background-color: #3a2a27;
}

.btn.light {
  background: #fff;
  color: var(--brown);
  border: 1px solid var(--brown);
}

.btn.light:hover {
  background-color: var(--light-bg);
}


.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}


.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  object-position: center 25%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 2;
  padding: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  max-width: 800px;
  color: #fff;
}



.main-header {
  background-color: var(--brown);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;

}


.nav-container a {
  color: var(--gold);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}


.nav-container a:hover {
  text-decoration: underline;
}

.hero-nav a {
  color: var(--gold);
  font-weight: 500;
}

.hero-nav a:hover {
  text-decoration: underline;
}


.over-mij-section {
  padding: 4rem 0;
}

.over-mij-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2rem;
}

.over-mij-tekst {
  flex: 3;
}

.over-mij-foto {
  flex: 2;
}


.over-mij-foto img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
}


.over-mij-knoppen {
  justify-content: flex-start;
  display: flex;
  gap: 1rem;
}


.projects {
  background: #f9f2e4;
  padding: 4rem 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.project {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 0.5rem;
  overflow: hidden;
}

.project img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-info {
  padding: 1.5rem;
}

.photo {
  padding: 4rem 0;
  text-align: center;
}

.contact {
  padding: 4rem 0;
  text-align: center;
}

footer {
  text-align: center;
  padding: 2rem;
  color: var(--gold);
  font-size: 0.9rem;
}


.flower-bg {
  position: absolute;
  opacity: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: left;
  pointer-events: none;
  z-index: 0;
}

.flower-bg img {
  width: 900px;
  opacity: 0.9;
}

.over-mij-section {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-nav {
    top: 1rem;
    left: 0;
    right: 0;
    justify-content: center;
  }

}


.photo {
  position: relative;
  padding: 4rem 0;
  text-align: center;
}

.photo-scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;

  padding: 1.5rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.photo-scroll-container::-webkit-scrollbar {
  display: none;
}

.photo-scroll-container img {
  height: 300px;
  width: 280px;

  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
}

.photo::before,
.photo::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.photo::before {
  left: 0;
  background: linear-gradient(to right, var(--light-bg) 20%, transparent);
}

.photo::after {
  right: 0;
  background: linear-gradient(to left, var(--light-bg) 20%, transparent);
}


.contact-footer {
  padding: 4rem 0 2rem 0;
  text-align: center;
}

.contact-footer h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-footer p {
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-footer .copyright {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3rem;
  margin-bottom: 0;
}


.filter-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--brown);
  border-radius: 2rem;
  background: transparent;
  color: var(--brown);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background-color: var(--brown);
  color: var(--gold);
}

.filter-btn.active {
  background-color: var(--brown);
  color: var(--gold);
}


.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 2rem auto 0;
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  width: fit-content;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator svg {
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}



.contact-footer {
  padding: 6rem 0 3rem 0;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}


.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 1rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.skill-item {
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  background-color: var(--gold);
  border: 1px solid var(--gold);
}

.skill-naam {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brown);
  font-family: 'Inter', sans-serif;
}


@media (min-width: 1024px) {
  .over-mij-content {
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .over-mij-tekst {
    text-align: left;
  }

  .skills-grid {
    justify-content: flex-start;
  }
}


.photo-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.photo-arrow {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--brown);
  color: var(--gold);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  z-index: 2;
}

.photo-arrow:hover {
  opacity: 0.8;
}

.photo-arrow-left,
.photo-arrow-right {
  position: relative;
  z-index: 3;
}

.grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 340px));
  justify-content: center;
}