/* =========================================================
   Jenny — Vibrant Baywatch Theme (sexy, glossy, modern)
   Drop-in replacement for your entire style.css
   ========================================================= */

/* Fonts (distinct from the reference site) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #070b16;                /* deeper navy */
  --panel: rgba(255,255,255,0.08);

  --text: #fffaf4;              /* warm bright white */
  --muted: rgba(255,250,244,.72);

  --red: #ff2f2f;               /* hot lifeguard red */
  --redGlow: rgba(255,47,47,.45);

  --aqua: #22d3ee;              /* electric ocean */
  --aquaGlow: rgba(34,211,238,.45);

  --sunset: #ff8a3d;            /* sunset orange */
  --border: rgba(255,255,255,.22);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  letter-spacing: .2px;

  background:
    radial-gradient(900px 600px at 15% -10%, rgba(34,211,238,.45), transparent 60%),
    radial-gradient(800px 500px at 85% 10%, rgba(255,47,47,.45), transparent 55%),
    radial-gradient(600px 400px at 50% 90%, rgba(255,138,61,.25), transparent 65%),
    var(--bg);
}

/* Links */
a { color: inherit; text-decoration: none; }

/* =========================================================
   Top bar
   ========================================================= */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;

  position: sticky;
  top: 0;
  z-index: 10;

  border-bottom: 1px solid rgba(255,255,255,.14);
  background: rgba(7,11,22,.55);
  backdrop-filter: blur(10px);
}

.brand {
  font-weight: 700;
  letter-spacing: .3px;
  opacity: .92;
}
.brand:hover { opacity: 1; }

/* =========================================================
   "Open Menu" animated link (hover animation + click goes to link)
   ========================================================= */

.menuLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-weight: 600;
  letter-spacing: .3px;
  padding: 8px 4px;

  border-radius: 999px;
  overflow: hidden;
}

.menuText {
  display: inline-block;
  transition: transform .25s ease, color .25s ease, text-shadow .25s ease;
}

/* underline sweep */
.menuLink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;

  background: linear-gradient(90deg, var(--red), var(--sunset), var(--aqua));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

/* hover animation */
.menuLink:hover .menuText {
  transform: translateY(-1px);
  color: var(--red);
  text-shadow: 0 0 18px var(--redGlow);
}
.menuLink:hover::after { transform: scaleX(1); }

/* click feedback */
.menuLink:active .menuText { transform: translateY(0) scale(.97); }

/* =========================================================
   Hero layout (index page)
   ========================================================= */

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.heroText { max-width: 560px; }

.kicker {
  margin: 0 0 16px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: lowercase;
}

/* Big name */
.name {
  margin: 0 0 36px;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(58px, 7.4vw, 96px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.02;

  text-shadow:
    0 6px 24px rgba(0,0,0,.45),
    0 0 24px var(--redGlow);
}

/* =========================================================
   Tiles
   ========================================================= */

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 660px;
}

.tile {
  border-radius: 20px;
  padding: 22px;
  min-height: 92px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.4px;

  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.28);

  box-shadow:
    0 12px 40px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.06);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tile:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow:
    0 20px 70px rgba(0,0,0,.55),
    0 0 24px var(--redGlow);
}

/* =========================================================
   Hero image (photo)
   ========================================================= */

.heroImage {
  position: relative;
  border-radius: 24px;
  overflow: hidden;

  box-shadow:
    0 40px 100px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.08);
}

/* sheen overlay */
.heroImage::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.09),
      rgba(255,47,47,.12),
      rgba(34,211,238,.18)
    );
  pointer-events: none;
}

.heroImage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  filter: contrast(1.08) saturate(1.25);
}

/* =========================================================
   Page 2 (good-stuff)
   ========================================================= */

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 24px;
}

.pageTitle {
  margin: 0 0 10px;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 800;
  letter-spacing: -0.3px;
  text-shadow: 0 0 18px rgba(34,211,238,.18);
}

.subtle {
  margin: 0 0 22px;
  color: var(--muted);
}

.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 34px;
}

.jump a {
  border: 1px solid rgba(255,255,255,.22);
  padding: 9px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,.04);
  color: var(--text);
  opacity: .92;

  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.jump a:hover {
  transform: translateY(-2px);
  border-color: var(--aqua);
  box-shadow: 0 0 18px var(--aquaGlow);
}

.section {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.section h2 {
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: .2px;
}

.section p {
  margin: 0;
  color: var(--muted);
}

.footer {
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: var(--muted);
}

.footer a {
  color: var(--aqua);
  opacity: .95;
}
.footer a:hover {
  opacity: 1;
  text-shadow: 0 0 18px var(--aquaGlow);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 56px 18px;
  }

  .heroImage {
    max-height: 460px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
