/* === HERO === */
.hero {
  margin-top: 72px;
  height: 70vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://dewitteleeuw.be/wp-content/themes/leonebianco/custom/img/home/gent-home.jpg') center/cover;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.65) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: 2;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-blob {
  position: absolute;
  border-radius: var(--radius-organic-1);
  filter: blur(80px);
  z-index: 2;
  animation: blobMorph 20s var(--ease-fluid) infinite, blobPulse 8s ease-in-out infinite;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(200,169,126,0.12), transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: -4s;
}

.hero-blob-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(200,169,126,0.08), transparent 70%);
  bottom: 15%;
  right: 15%;
  animation-delay: -12s;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 .word-ons {
  display: inline-block;
  margin-right: 0.15em;
}

.hero h1 .word-verhaal {
  display: inline-block;
}

.hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 28px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* === TIMELINE === */
.timeline {
  padding: 100px 48px;
  position: relative;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

/* Animated SVG timeline line */
.timeline-line-svg {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  overflow: visible;
}

.timeline-svg-path {
  stroke: var(--color-gold);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.timeline-entry {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.timeline-entry img {
  width: 180px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: var(--radius-organic-1);
  transition: border-radius 1.2s var(--ease-fluid);
}

.timeline-entry img:hover {
  border-radius: var(--radius-organic-2);
}

.timeline-year {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.timeline-content h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.timeline-content p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.timeline-content p + p {
  margin-top: 12px;
}

/* === PHILOSOPHY === */
.philosophy {
  display: flex;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.philosophy-image {
  flex: 1.2;
  overflow: hidden;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-content {
  flex: 1;
  background: var(--color-gold);
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
  margin-left: -40px;
  position: relative;
  z-index: 2;
  box-shadow: -20px 0 60px rgba(0,0,0,0.3);
}

.philosophy-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 32px);
  font-style: italic;
  color: #000;
  margin-bottom: 32px;
  line-height: 1.4;
}

.philosophy-content p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 32px;
  line-height: 1.8;
}

.philosophy-content a {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  border-bottom: 1px solid #000;
  display: inline-block;
  transition: opacity var(--duration-fast);
}

.philosophy-content a:hover {
  opacity: 0.7;
}

/* === GALLERY STRIP === */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 60px 48px;
}

.gallery-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-card);
  transition: border-radius 0.8s var(--ease-fluid), transform var(--duration-normal) var(--ease-fluid);
}

.gallery-strip img:hover {
  border-radius: var(--radius-organic-1);
  transform: scale(1.02) rotate(-1deg);
}

/* === WELKOM SECTION === */
.welkom {
  padding: 100px 48px;
  text-align: center;
  position: relative;
}

.welkom-container {
  max-width: 700px;
  margin: 0 auto;
}

.welkom h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.welkom p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 40px;
}

.welkom .cta-btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid var(--color-gold);
  padding: 16px 40px;
  transition: background var(--duration-normal) var(--ease-fluid), color var(--duration-normal);
  border-radius: var(--radius-card);
}

.welkom .cta-btn:hover {
  background: var(--color-gold);
  color: #000;
}

/* === ABOUT FOOTER === */
.about-footer {
  border-top: 1px solid var(--color-border-gold);
  padding: 80px 48px 40px;
}

.about-footer .footer-gallery {
  margin-bottom: 60px;
}

.about-footer .footer-content {
  max-width: 900px;
}

.about-footer .footer-section h3 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.about-footer .footer-section p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.about-footer .footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast);
}

.about-footer .footer-section a:hover {
  color: var(--color-gold);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { height: 50vh; }

  .timeline { padding: 60px 24px; }
  .timeline-container { grid-template-columns: 1fr; gap: 60px; }
  .timeline-line-svg { display: none; }

  .philosophy { flex-direction: column; min-height: auto; }
  .philosophy-image { height: 300px; border-radius: var(--radius-card); }
  .philosophy-content {
    padding: 60px 40px;
    margin-left: 0;
    margin-top: -20px;
    border-radius: var(--radius-card);
  }

  .gallery-strip { padding: 40px 24px; }

  .welkom { padding: 60px 24px; }

  .about-footer { padding: 60px 24px 40px; }
  .about-footer .footer-content { grid-template-columns: 1fr; gap: 40px; }
  .about-footer .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 560px) {
  .hero { height: 50vh; padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 14px; }
  .hero-blob { display: none; }

  .timeline { padding: 40px 16px; }
  .timeline-container { gap: 40px; }
  .timeline-entry { flex-direction: column; gap: 24px; }
  .timeline-entry img { width: 100%; height: 200px; }

  .philosophy-content { padding: 40px 20px; }
  .philosophy-content h2 { font-size: 18px; margin-bottom: 20px; }
  .philosophy-content p { font-size: 12px; margin-bottom: 20px; }

  .gallery-strip { grid-template-columns: 1fr; height: auto; padding: 20px 16px; gap: 8px; }
  .gallery-strip img { height: 200px; }

  .welkom { padding: 40px 16px; }
  .welkom h2 { font-size: 20px; }
  .welkom p { font-size: 12px; }

  .about-footer { padding: 40px 16px 30px; }
  .about-footer .footer-section h3 { font-size: 10px; }
  .about-footer .footer-section p { font-size: 12px; }
}
