/* =========================================
   BASIS
========================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #000000;
}

/* =========================================
   NAVIGATIE – BOVENSTE WITTE BALK
========================================= */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
  background: white;
  height: 60px; /* SMALLER */
  display: flex;
  align-items: center;
  border-bottom: 8px solid white; /* SMALLER */
}

.nav-container {
  width: 1440px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 16px;
  font-weight: 600;
  color: black;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: black;
}

.nav-button {
  background: black;
  color: white !important;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

/* =========================================
   HOME – FULLSCREEN HERO
========================================= */
.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Achtergrondfoto */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden; /* belangrijk */
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%; /* HIER bepaal je hoe laag je hoofd komt */
  filter: brightness(0.75);
}

/* Wrapper voor verticale centrering */
.hero-text-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
}

/* Linker tekst */
.hero-left {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 450px;
  color: white;
}

/* Rechter tekst */
.hero-right {
  font-size: 32px;
  font-weight: 600;
  text-align: right;
  color: white;
}

/* =========================================
   ONDERSTE WITTE BALK
========================================= */
.footer-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: white;
  height: 60px; /* SMALLER */
  display: flex;
  align-items: center;
  border-top: 8px solid white; /* SMALLER */
  z-index: 20;
}

.footer-container {
  width: 1440px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 16px;
  font-weight: 600;
  color: black;
}

.footer-center {
  display: flex;
  gap: 32px;
}

.footer-center a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: black;
}

.footer-button {
  background: black;
  color: white;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

/* =========================================
   ABOUT PAGINA
========================================= */
.page {
  min-height: 100vh;
  padding-top: 120px;
  background: white;
}

.page-container {
  width: 1440px;
  max-width: 90%;
  margin: 0 auto;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 48px;
  align-items: flex-start;
}

.about-image-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-text {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

/* =========================================
   CONTACT PAGINA
========================================= */
.contact-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../images/contact-background.jpg");
  background-size: cover;
  background-position: center 55%; /* FOTO LAGER */
  filter: brightness(0.65);
  z-index: -1;
}

.contact-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.96);
  padding: 32px 40px;
  border-radius: 20px;
  width: 420px;
  max-width: 90%;
  color: #000;
  z-index: 1;
}

.contact-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-intro {
  font-size: 14px;
  margin-bottom: 20px;
  color: #444;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #d4d4d4;
  font: inherit;
}

.contact-form textarea {
  border-radius: 14px;
  min-height: 120px;
  resize: vertical;
}

.contact-submit {
  margin-top: 8px;
  background: black;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  cursor: pointer;
}

/* =========================================
   PROJECTS PAGINA — DEFINITIEF
========================================= */

.page.projects-page {
  background: white; /* alleen achtergrond, geen padding! */
}

.page-title {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  margin-top: 0;        /* voorkomt witte ruimte bovenaan */
  margin-bottom: 60px;
}

.projects-grid {
  width: 1440px;
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.project-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.card-content h2 {
  font-size: 16px;
  font-weight: 600;
}

.card-content p {
  font-size: 14px;
  color: #333;
  flex-grow: 1;
}

.more-button {
  align-self: flex-start;
  background: black;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
}

.page-container {
  padding-top: -20px !important;
}

.page.projects-page {
  padding-top: 65px !important;
}

/* =========================================
   COURSE 1: EXPLORE IT
========================================= */

.course-page {
  padding-top: 120px !important; /* ruimte voor vaste header */
  padding-bottom: 120px;         /* ruimte voor vaste footer */
  background: white;
}

.course-intro,
.course-description {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.course-subtitle {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.course-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.poster-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #ddd;
  z-index: 1000;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 40px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid #ddd;
}

/* =========================================
   ART EN ILLUSTRATIONS
========================================= */

.art-page {
  padding-top: 120px !important; /* ruimte voor vaste header */
  padding-bottom: 120px;         /* ruimte voor vaste footer */
  background: white;
}

.art-intro {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.art-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* =========================================
   LOGO DESIGN
========================================= */

.logo-page {
  padding-top: 120px !important; /* ruimte voor vaste header */
  padding-bottom: 120px;         /* ruimte voor vaste footer */
  background: white;
}

.logo-intro {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.logo-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* =========================================
   PHOTOGRAPHY
========================================= */

.photography-page {
  padding-top: 120px !important;
  padding-bottom: 120px;
  background: white;
}

.photography-intro {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.photo-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}