/* ============================================
   OhMySax — Learning to Fix What I Love
   Color palette: warm golds, aged brass, cream
   ============================================ */

:root {
  --gold: #b8860b;
  --gold-light: #d4a843;
  --brass: #8b6914;
  --cream: #fdf6e3;
  --parchment: #f5e6c8;
  --dark: #2c1e0f;
  --dark-soft: #3d2b1a;
  --text: #4a3728;
  --text-light: #7a6555;
  --white: #fffef9;
  --shadow: rgba(44, 30, 15, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Navigation ---- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 2px solid var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--parchment);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184, 134, 11, 0.15) 0%, transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, var(--dark-soft) 50%, #4a3520 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(253, 246, 227, 0.02) 2px,
      rgba(253, 246, 227, 0.02) 4px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem;
  color: var(--gold-light);
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: rgba(245, 230, 200, 0.6);
}

/* ---- Sections ---- */

.section {
  padding: 4rem 0;
}

.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  text-align: center;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}

/* ---- Prose ---- */

.prose {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.prose p {
  margin-bottom: 1.2rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* ---- Intro ---- */

.intro {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.intro .prose {
  font-size: 1.15rem;
  text-align: center;
}

/* ---- Story (horn entries) ---- */

.story {
  background: var(--parchment);
}

.horn-list {
  max-width: 700px;
  margin: 0 auto;
}

.horn-entry {
  margin-bottom: 2.5rem;
}

.horn-entry h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.horn-entry p {
  font-size: 1.05rem;
}

.more-coming {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* ---- Skills grid ---- */

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(184, 134, 11, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow);
}

.skill-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.skill-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ---- Why Vintage ---- */

.why-vintage {
  background: var(--parchment);
}

.why-vintage .prose p:last-child {
  font-weight: 600;
  color: var(--dark);
}

/* ---- About ---- */

.about .prose {
  text-align: center;
}

/* ---- Footer ---- */

.site-footer {
  background: var(--dark);
  color: rgba(245, 230, 200, 0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  border-top: 2px solid var(--gold);
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--dark);
    padding: 1rem 2rem;
    gap: 1rem;
    border-bottom: 2px solid var(--gold);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .section {
    padding: 3rem 0;
  }

  .skills-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}
