﻿/* ==========================================
   HOME PAGE — PT ROTTERDAM
   Hero, stats-bar, why, CTA-banner
   ========================================== */

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero > .container {
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&h=900&fit=crop') center/cover no-repeat;
  z-index: 0;
}

/* Rasterpatroon verwijderd */
.hero-bg::before {
  content: none;
  display: none;
}

/* Twee-koloms layout binnen de hero */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 6rem;
}

.hero-content {
  min-width: 0;
}

/* Foto-blok rechts */
.hero-photo {
  position: relative;
  flex-shrink: 0;
  display: none;
}

.hero-photo-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0,92,40,.18);
  display: block;
}

.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--card-bg);
  border: 1px solid rgba(0,92,40,.18);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gray);
}

.hero-photo-placeholder i {
  font-size: 3rem;
  color: rgba(0,92,40,.3);
}

.hero-photo-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  line-height: 1.04;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Witte buttons in hero */
.hero .btn-outline {
  background: rgba(255,255,255,.1);
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 0 12px rgba(255,255,255,.2);
}

.hero .btn-outline:hover {
  background: rgba(255,255,255,.2);
  box-shadow: 0 0 24px rgba(255,255,255,.4);
  transform: translateY(-2px);
}

/* Scroll-indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--neon-green));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.scroll-text {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ═══════════════════════════════════════════
   STATISTICS BAR
   ═══════════════════════════════════════════ */
.stats-bar {
  padding: 3rem 0;
  background: var(--neon-green);
  border-top:    none;
  border-bottom: none;
}

/* ═══════════════════════════════════════════
   WHY PT ROTTERDAM
   ═══════════════════════════════════════════ */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-top: 1.5rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--light-gray);
  font-size: 0.95rem;
}

.check-icon {
  color: var(--neon-green);
  text-shadow: var(--shadow-neon-sm);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Decoratief vierkant */
.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-box {
  width: 280px;
  height: 540px;
  border: 2px solid var(--electric-white);
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--card-bg);
  box-shadow: inset 0 0 30px rgba(0,0,0,.4);
}

/* Kleine notch bovenaan als telefoon detail */
.visual-box::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 5px;
  background: rgba(0,92,40,.3);
  border-radius: 999px;
}

.visual-box::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(0,92,40,.09);
  border-radius: 26px;
}

.visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.visual-inner i {
  font-size: 4rem;
  color: var(--neon-green);
  text-shadow: var(--shadow-neon);
}

.visual-inner .visual-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

.visual-sub {
  color: var(--gray);
  font-size: 0.83rem;
}

.section-title.team-title {
  font-size: clamp(2rem, 5.5vw, 3.8rem) !important;
  color: var(--electric-white);
}

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   RESPONSIVE HOME
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner   { grid-template-columns: 1fr; gap: 3rem; padding-top: 7rem; }
  .hero-photo   { max-width: 460px; }
  .why-section  { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual   { display: none; }
}

@media (max-width: 640px) {
  .hero-inner   { padding-top: 6rem; padding-bottom: 3rem; }
  .cta-inner    { flex-direction: column; text-align: center; }
  .hero-scroll  { display: none; }
  .hero-content { text-align: center; }
  .hero-text    { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
}
