/* VOEG DIT BOVENAAN JE STYLE.CSS TOE */
@font-face {
  font-family: 'Compressa VF';
  /* Dit is de URL uit de React component die je stuurde */
  src: url('https://res.cloudinary.com/dr6lvwubh/raw/upload/v1529908256/CompressaPRO-GX.woff2');
  font-style: normal;
}

/* VERVANG DE .hero-title STIJL DOOR DIT */
#interactive-title {
  font-family: 'Compressa VF', sans-serif; /* Gebruik het nieuwe variabele lettertype */
  font-size: 3.5em;
  font-weight: 100; /* Start met een lage weight */
  color: #FEE9E7;
  margin: 0 0 0.5em 0;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.2;
  user-select: none; /* Voorkomt dat tekst geselecteerd wordt tijdens interactie */
}

/* DE REST VAN JE style.css KAN HETZELFDE BLIJVEN */
/* ... (je bestaande .hero, .hero-subtitle, .hero-intro etc. stijlen) ... */

/* Zorg ervoor dat .hero-text de ruimte geeft aan de titel */
.hero-text {
  flex: 1;
  max-width: 700px; /* Iets meer ruimte voor de lange titel */
}

/* Kleine aanpassing voor mobiel */
@media (max-width: 768px) {
  #interactive-title {
    font-size: 2.5em;
    text-align: center;
  }
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4em 2em;
  gap: 2em;
  text-align: left;
  flex-grow: 1; /* Zorgt dat de content de beschikbare ruimte vult */
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5em;
  font-weight: 700;
  color: #FEE9E7;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.8em;
  font-weight: 400;
  color: #A3B5B6;
  margin-top: 0.25em;
  margin-bottom: 1em;
}

.hero-intro {
  font-size: 1.1em;
  line-height: 1.6;
  color: #B0B0B0;
  max-width: 500px;
  margin-bottom: 1.5em;
}

.cta-button {
  display: inline-block;
  background-color: #C5A686;
  color: black;
  padding: 12px 24px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #d4b99d;
  transform: translateY(-3px);
}

.hero-image {
  flex: 0 1 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 50%;
  border: 5px solid #A3B5B6;
}

/* Featured Projects Section */
.featured-projects {
  padding: 4em 2em;
  text-align: center;
  background-color: #050505;
}

.section-title {
  font-size: 2.5em;
  color: #A3B5B6;
  margin-bottom: 1.5em;
}

.project-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2em;
  width: 1300px;
  margin: 0 auto;
}

.project-card {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 600px; /* Maximale breedte voor kaarten */
  display: flex;
  align-items: center;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.project-card img {
  width: 200px;
  height: 150px;
  object-fit: cover;
}

.project-info {
  padding: 1.5em;
  text-align: left;
}

.project-info h4 {
  font-size: 1.4em;
  margin: 0 0 0.5em 0;
  color: #FEE9E7;
}

.project-info p {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 1em;
}

.project-link {
  color: #C5A686;
  text-decoration: none;
  font-weight: 600;
}

/* Responsiviteit */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-title { font-size: 2.5em; }
  .hero-subtitle { font-size: 1.5em; }
  .project-card { flex-direction: column; }
  .project-card img { width: 100%; height: 200px; }
}