/* ===============================
   Cafelito Robot Cafe — Founders Wall
   Page-specific styles (navbar lives in index.css)
   Theme: Light roast, glassy accents
   =============================== */

:root {
  --nav-height: 90px;
  --brand-blue: #f2e4d5;   /* light roast */
  --brand-dark: #1d1b1a;   /* deep brown text */
  --accent: #d29f71;       /* caramel accent */
  --white: #ffffff;
  --divider: rgba(0,0,0,.12);
  --bg: #fefaf6;

  --shadow-sm: 0 2px 10px rgba(0,0,0,.06);
  --shadow-md: 0 10px 28px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 44px rgba(0,0,0,.10);

  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--brand-dark);
  overflow-x: hidden;
}

/* --- HERO --- */
.founders-hero {
  margin-top: var(--nav-height);
  min-height: clamp(220px, 34vh, 360px);
  display: grid;
  place-items: center;
  position: relative;
  padding: 1.6rem .8rem 2rem;
  background:
    radial-gradient(900px 320px at 85% -10%, rgba(210,159,113,.26), transparent 60%),
    radial-gradient(780px 300px at 5% 0%, rgba(242,228,213,.44), transparent 60%),
    linear-gradient(180deg, #fff, #fff);
}

.hero-glass {
  width: min(980px, 92vw);
  margin: 0 auto;
  background: rgba(242,228,213,.38);
  border: 1px solid rgba(210,159,113,.28);
  border-radius: 34px;
  padding: 1.6rem 1.2rem 1.4rem;
  text-align: center;
  backdrop-filter: blur(10px) saturate(160%);
  box-shadow: 0 12px 40px rgba(210,159,113,.12);
}

.hero-icon {
  font-size: 2.4rem;
  filter: drop-shadow(0 6px 16px rgba(210,159,113,.25));
  margin-bottom: .4rem;
}

.founders-hero h1 {
  margin: 0 0 .3rem 0;
  font-size: clamp(28px, 4.6vw, 44px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.hero-tagline {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 18px);
  opacity: .9;
}

/* --- WALL INTRO CARD --- */
.wall-intro {
  display: grid; place-items: center;
  padding: 1.2rem .8rem 1.8rem;
}

.intro-card {
  width: min(980px, 92vw);
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.intro-card h2 {
  margin: 0 0 .4rem 0;
  font-size: 1.4rem;
  font-weight: 900;
}
.intro-card p {
  margin: 0;
  opacity: .9;
  line-height: 1.6;
}

/* --- MOSAIC WALL --- */
.wall-grid {
  width: min(1080px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: .4rem 0 2.2rem;
}

.tile {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: .85rem .85rem .8rem;
  box-shadow: var(--shadow-sm);
  min-height: 120px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(210,159,113,.6);
}

.badge {
  font-size: 1.1rem;
  line-height: 1;
  background: #fff5ec;
  border: 1px solid rgba(210,159,113,.4);
  padding: .42rem .56rem;
  border-radius: 999px;
  width: max-content;
  box-shadow: 0 4px 12px rgba(210,159,113,.18);
}

.name {
  margin: .55rem 0 .2rem 0;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0;
}

.note {
  margin: 0;
  font-size: .95rem;
  color: #58493e;
  opacity: .85;
}

/* Make the layout breathe on medium screens */
@media (max-width: 1100px) {
  .wall-grid { grid-template-columns: repeat(4, 1fr); }
}
/* Tablet */
@media (max-width: 800px) {
  .wall-grid { grid-template-columns: repeat(3, 1fr); }
}
/* Mobile */
@media (max-width: 570px) {
  .wall-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- CTA --- */
.cta-block {
  display: grid; place-items: center;
  padding: .8rem .8rem 3rem;
}
.cta-card {
  width: min(880px, 92vw);
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.cta-card h2 {
  margin: 0 0 .35rem 0;
  font-size: 1.46rem;
  font-weight: 900;
}
.cta-card p {
  margin: 0 0 .9rem 0;
  opacity: .9;
}
.btn {
  appearance: none;
  display: inline-block;
  padding: .78rem 1.15rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  transition: transform .06s ease, background .12s ease;
  line-height: 1;
}
.btn:hover { background: #be8355; }
.btn:active { transform: translateY(1px); }

/* --- Footer polish (uses same structure as other pages) --- */
footer {
  background: var(--brand-blue);
  color: var(--brand-dark);
  text-align: center;
  padding: 1.5rem 0 1.1rem 0;
  font-size: 1rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  margin-top: 2rem;
}
.footer-content p { margin: .25rem 0; }
