/* ============================================
   Hailey Williams — haileycw.com
   Style Sheet
   ============================================ */

/* ── Variables ─────────────────────────────── */
:root {
  --sky:      #87CEEB;
  --pink:     #FFB6C1;
  --cherry:   #DC143C;
  --teal:     #3ABCB0;
  --lavender: #C8A8E9;
  --mint:     #B5EAD7;
  --white:    #FFFAF9;
  --dark:     #2a2a2a;

  --font-heading: 'Pacifico', cursive;
  --font-body:    'Nunito', sans-serif;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--white);
  color: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── Sticky Nav ─────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--pink);
  border-bottom: 4px solid var(--cherry);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--cherry);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.6);
}

.nav-links a.active {
  background: var(--white);
  color: var(--cherry);
}

/* ── Footer ─────────────────────────────────── */
.site-footer {
  margin-top: auto;
  background: var(--pink);
  border-top: 4px solid var(--cherry);
  text-align: center;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.site-footer a {
  color: var(--cherry);
  font-weight: 700;
  transition: opacity 0.2s;
}

.site-footer a:hover { opacity: 0.75; }

/* ── Page Header (shared) ───────────────────── */
.page-header {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--cherry);
  padding: 48px 24px 24px;
}

/* ── Page Content Wrapper ───────────────────── */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 64px;
  width: 100%;
}

/* ============================================
   HERO — index.html
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 64px);
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.2));
}

/* Motorcycle stickers */
.sticker {
  position: absolute;
  font-size: 3rem;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.sticker-tl { top: 20px;    left: 20px;    animation: wobble1 3.2s ease-in-out infinite; }
.sticker-tr { top: 20px;    right: 20px;   animation: wobble2 2.8s ease-in-out infinite; }
.sticker-br { bottom: 20px; right: 20px;   animation: wobble3 3.6s ease-in-out infinite; }

@keyframes wobble1 {
  0%, 100% { transform: rotate(-6deg) scale(1);    }
  50%       { transform: rotate(6deg)  scale(1.08); }
}
@keyframes wobble2 {
  0%, 100% { transform: rotate(5deg)  scale(1);    }
  50%       { transform: rotate(-5deg) scale(1.1);  }
}
@keyframes wobble3 {
  0%, 100% { transform: rotate(-4deg) scale(1);    }
  50%       { transform: rotate(8deg)  scale(1.06); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 24px;
  max-width: 700px;
}

.hero-bow {
  font-size: 3.5rem;
  display: inline-block;
  animation: bounce 1.4s ease-in-out infinite;
  margin-bottom: 12px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-14px); }
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  color: var(--white);
  text-shadow: 2px 4px 12px rgba(0,0,0,0.55);
  margin-bottom: 14px;
  line-height: 1.15;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 1px 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

/* Badge row */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.badge {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 7px 18px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  white-space: nowrap;
}

.badge-artist   { background: var(--teal);     color: var(--white); }
.badge-roblox   { background: var(--lavender); color: var(--dark);  }
.badge-nails    { background: var(--pink);     color: var(--cherry);}
.badge-actress  { background: var(--cherry);   color: var(--white); }
.badge-pottery  { background: var(--mint);     color: var(--dark);  }
.badge-motos    { background: var(--dark);     color: var(--white); }

/* Animated moto row */
.hero-moto-row {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  text-shadow: 1px 2px 8px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: translateX(-6px); }
  50%       { transform: translateX(6px);  }
}

/* ============================================
   ABOUT — about.html
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-card {
  border-radius: 20px;
  padding: 28px 24px;
  border-width: 2px;
  border-style: solid;
}

.about-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.about-card p {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.65;
}

/* Card themes */
.card-who {
  background: #fff0f3;
  border-color: var(--pink);
}
.card-who .card-title { color: var(--cherry); }

.card-vibe {
  background: #eaf7ff;
  border-color: var(--sky);
}
.card-vibe .card-title { color: #4a90d9; }

.card-artist {
  background: #e8f9f8;
  border-color: var(--teal);
}
.card-artist .card-title { color: var(--teal); }

.card-dreams {
  background: #f5eeff;
  border-color: var(--lavender);
}
.card-dreams .card-title { color: #8a5cbf; }

/* ============================================
   INTERESTS — interests.html
   ============================================ */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.interest-card {
  background: #fff0f3;
  border: 2px solid var(--pink);
  border-radius: 20px;
  padding: 24px 12px 20px;
  text-align: center;
  cursor: default;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.interest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(220,20,60,0.15);
}

.interest-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1;
}

.interest-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

/* ============================================
   ARTIST NOOK — nook.html
   ============================================ */
.nook-intro {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 36px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.gallery-item {
  border: 2px dashed var(--pink);
  border-radius: 16px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff5f7;
  gap: 8px;
}

.gallery-item .placeholder-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.gallery-item .placeholder-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: #b08090;
}

.nook-cta {
  border: 2px dashed var(--cherry);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cherry);
  background: #fff8f9;
}

/* ============================================
   SOCIAL — social.html
   ============================================ */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.social-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.social-btn-yt {
  background: #FF0000;
}

.social-btn-tt {
  background: var(--dark);
}

.social-btn-icon {
  font-size: 1.3rem;
}

.videos-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--cherry);
  text-align: center;
  margin-bottom: 24px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.video-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--dark);
  border-radius: 16px;
  overflow: hidden;
}

.video-placeholder iframe,
.video-placeholder .video-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-radius: 16px;
}

.video-inner {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.video-inner .video-emoji {
  font-size: 3rem;
}

.video-inner .video-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.social-caption {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #a08090;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
  /* Nav */
  .site-nav {
    height: auto;
    padding: 12px 16px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 4px;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .sticker {
    font-size: 2rem;
  }

  .hero-moto-row {
    font-size: 1.1rem;
  }

  /* Page header */
  .page-header {
    font-size: 2rem;
    padding: 32px 16px 16px;
  }

  /* About grid → single column */
  .about-grid {
    grid-template-columns: 1fr;
  }

  /* Video grid → single column */
  .video-grid {
    grid-template-columns: 1fr;
  }

  /* Social buttons stack */
  .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
