/* ════════════════════════════════════════════════
   HOME PAGE — hero, about, team, events
   ════════════════════════════════════════════════ */

body { background: var(--majorelle); color: var(--white); }

/* ── HERO ── */
#home {
  background: var(--majorelle);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 11rem 2rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--lemon);
  margin-bottom: 8rem; opacity: 0.85;
}
.hero-logo {
  width: clamp(330px, 60vw, 570px);
  height: clamp(220px, 28vw, 360px);
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0.75rem;
  position: relative; z-index: 1;
  box-shadow: none;
  mix-blend-mode: normal;
  background: var(--majorelle);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  line-height: 1.7;
  font-weight: 100;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
/* first two sentences on their own row; the third flows underneath */
.hero-sub-lead { display: block; }
@media (min-width: 700px) { .hero-sub-lead { white-space: nowrap; } }
.hero-sub strong { color: var(--lemon); font-weight: 500; white-space: nowrap; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-primary {
  background: var(--lemon); color: var(--navy);
  font-family: 'ZTNature', sans-serif; font-weight: 900;
  font-size: 0.9rem; padding: 0.85rem 2rem;
  border: none; border-radius: 50px; cursor: pointer;
  text-decoration: none; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--lime); color: var(--white); transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.35); color: var(--white);
  font-family: 'ZTNature', sans-serif; font-weight: 500;
  font-size: 0.9rem; padding: 0.85rem 2rem;
  border-radius: 50px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--periwinkle); background: rgba(156,154,254,0.15); }
.hero-socials {
  display: flex; gap: 0.75rem; margin-top: 1rem; margin-bottom: 8rem;
  position: relative; z-index: 1; flex-wrap: wrap; justify-content: center;
}
.social-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: 'ZTNature', sans-serif; font-weight: 500;
  font-size: 0.88rem; padding: 0.7rem 1.4rem;
  border-radius: 50px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}
.social-btn:hover {
  background: var(--lemon); color: var(--navy);
  border-color: var(--lemon);
}

/* ── ABOUT ── */
#about { background: var(--navy); padding: 7rem 4rem; }
/* mobile-first: single column, order = text → photos → pillars */
.about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 769px) {
  .about-inner { grid-template-columns: 1fr 1fr; column-gap: 4rem; row-gap: 2.5rem; align-items: start; }
  .about-text    { grid-column: 1; grid-row: 1; }
  .about-pillars { grid-column: 1; grid-row: 2; }
  .about-photos  { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
}
.section-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lemon); font-weight: 500; margin-bottom: 1rem; opacity: 0.75; }
.section-title { font-family: 'ZTNature', sans-serif; font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.about-body { font-size: 1.15rem; line-height: 1.75; color: rgba(255,255,255,0.8); font-weight: 100; margin-bottom: 1.2rem; }
.pillars-heading { font-family: 'ZTNature', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--white); margin: 2.2rem 0 0.2rem; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.pillar { background: rgba(255,255,255,0.05); border: 1px solid rgba(156,154,254,0.2); border-left: 3px solid var(--periwinkle); border-radius: 50px; padding: 1.2rem; }
.pillar-title { font-family: 'ZTNature', sans-serif; font-weight: 500; font-size: 1.02rem; color: var(--periwinkle); margin-bottom: 0.4rem; }
.pillar-body { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.5; font-weight: 100; }

/* ── ABOUT PHOTOS — replaces the old vision card (3 landscape + 1 square) ── */
/* collage: two stacked 3:2 landscapes beside a 1:1 square, one wide 3:2 below.
   3fr:4fr columns make the stacked pair's height equal the square's. */
.about-photos { display: grid; grid-template-columns: 3fr 4fr; gap: 0.8rem; }
.about-photo { border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.06); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo.ph-land  { aspect-ratio: 3 / 2; }                          /* stacked landscapes (col 1) */
.about-photo.ph-square { grid-column: 2; grid-row: 1 / span 2; } /* square (col 2) — fills the span to align with the stacked pair */
.about-photo.ph-wide  { grid-column: 1 / -1; aspect-ratio: 3 / 2; }     /* wide landscape (bottom) */

/* ── TEAM ── */
#team { background: var(--majorelle); padding: 7rem 4rem; }
.team-inner { max-width: 1100px; margin: 0 auto; }
.team-top { text-align: center; margin-bottom: 2.5rem; }
.team-grid { display: grid; gap: 1.5rem; }
.team-grid-leadership { grid-template-columns: repeat(3, 1fr); margin-bottom: 1.5rem; }
.team-grid-founders { grid-template-columns: repeat(4, 1fr); }
.team-card {
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden;
  background: rgba(0,43,98,0.3); backdrop-filter: blur(4px);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); border-color: rgba(215,232,43,0.3); }
.team-avatar {
  height: 240px; overflow: hidden;
}
.team-avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.team-info { padding: 1rem 1.2rem 1.4rem; }
.team-name { font-family: 'ZTNature', sans-serif; font-weight: 900; font-size: 1rem; color: var(--white); margin-bottom: 0.25rem; }
.team-role { font-size: 0.75rem; color: var(--lemon); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

/* Bottom row — centered (Robert, George, Stefan) */
.team-grid-bottom { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.team-grid-bottom .team-card { flex: 0 0 calc(25% - 1.125rem); min-width: 0; }

/* ── EVENTS ── */
#events { background: var(--lemon); padding: 7rem 4rem; }
#events .section-label { color: var(--navy); opacity: 0.55; }
#events .section-title { color: var(--navy); }
.events-inner { max-width: 1100px; margin: 0 auto; }
/* Event card styles are shared with evenimente.html — see events.css */

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { animation: fadeUp 0.5s ease both; }
.hero-pill { animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.6s 0.3s ease both; }
.hero-stats { animation: fadeUp 0.6s 0.4s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .team-grid-leadership { grid-template-columns: repeat(2, 1fr) !important; }
  .team-grid-founders { grid-template-columns: repeat(2, 1fr) !important; }
  .team-grid-bottom .team-card { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 768px) {
  section, #about, #team, #events { padding: 5rem 1.5rem; }
  #home { padding: 7rem 1.5rem 3rem; }
  .hero-logo { width: 100%; max-width: 420px; height: auto; aspect-ratio: 3 / 2; }
  .hero-socials { gap: 0.75rem; margin-bottom: 1.5rem; }
  .social-btn { font-size: 0.8rem; padding: 0.6rem 1rem; }
  .pillars { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .team-grid-leadership, .team-grid-founders { grid-template-columns: repeat(2, 1fr) !important; }
  .team-grid-bottom .team-card { flex: 0 0 calc(50% - 0.75rem); }
  .team-avatar { height: 180px; }
  .team-info { padding: 0.8rem 0.9rem 1rem; }
  .team-name { font-size: 0.88rem; }
  .team-role { font-size: 0.65rem; }
}
@media (max-width: 480px) {
  .hero-pill { font-size: 2.2rem; }
}
