/* Extracted CSS from index.html */
:root {
  --bg-deep: #222831;
  --bg-panel: #393E46;
  --accent: #948979;
  --cream: #DFD0B8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-deep);
  color: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.card {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.wave {
  font-size: 40px;
  display: inline-block;
  animation: wave 2.2s infinite;
  transform-origin: 70% 70%;
}

@keyframes wave {
  0%, 60%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
}

h1 {
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  font-weight: 700;
  margin: 12px 0 20px;
  color: #fff;
}

.avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 18px;
  overflow: hidden;
  position: relative;
}

.avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar span {
  position: relative;
}

p.tagline {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 4px;
}

p.subnote {
  color: var(--accent);
  font-size: 0.85rem;
  margin: 0 0 22px;
}

.cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--bg-deep);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.15s ease;
}

.cta:hover { opacity: 0.85; }

/* Showcase carousel */
.showcase {
  margin-top: 36px;
  text-align: left;
}

.showcase h2 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
  text-align: center;
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 60vh;
  background: var(--bg-panel);
  border-radius: 14px;
  overflow: hidden;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  user-select: none;
}

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slide.placeholder {
  border: 1px dashed var(--accent);
  margin: 6px;
  border-radius: 10px;
  width: calc(100% - 12px);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(34, 40, 49, 0.7);
  color: var(--cream);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.15s ease;
}

.carousel-btn:hover { background: rgba(34, 40, 49, 0.9); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 1px solid var(--accent);
  cursor: pointer;
  padding: 0;
}

.dot.active { background: var(--accent); }

.socials {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  color: var(--cream);
  opacity: 0.8;
  transition: opacity 0.15s ease;
}

.socials a:hover { opacity: 1; }
.socials svg { width: 22px; height: 22px; }

footer {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--bg-panel);
  font-size: 0.78rem;
  color: var(--accent);
  text-align: center;
}

footer a { color: var(--accent); }

@media (max-width: 420px) {
  .carousel-btn { width: 30px; height: 30px; font-size: 1rem; }
}
