/* ============================================
   Music Discovery Hour — Link-in-Bio Site
   Earth tones, minimal, editorial feel
   ============================================ */

:root {
  --bg: #f5f0e8;
  --bg-warm: #ede7db;
  --bg-card: #ffffff;
  --text: #1a1a1a;
  --text-muted: #6b6356;
  --accent: #c8a87c;
  --accent-dark: #a8865a;
  --border: #d9d0c3;
  --radius: 12px;
  --max-w: 480px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Hero ---- */
.hero {
  text-align: center;
  padding: 60px 24px 40px;
  background: var(--bg-warm);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #ede7db;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -1px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px #d9d0c3;
}

.hero h1 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.tagline {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 20px;
}

.social-row {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.social-row a {
  color: var(--text);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.social-row a:hover {
  opacity: 1;
}

/* ---- Links Section ---- */
.links {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.link-btn--accent {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.link-btn--accent:hover {
  border-color: var(--text);
  background: #2a2a2a;
}

.link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

/* ---- Section Headings ---- */
.latest,
.instagram-section,
.contact {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}

h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.section-subtitle a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.section-subtitle a:hover {
  text-decoration: underline;
}

/* ---- Latest Picks Grid ---- */
.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.pick-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.pick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.pick-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.pick-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.pick-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Instagram Embed ---- */
.instagram-section {
  background: var(--bg-warm);
  max-width: 100%;
  padding: 48px 24px;
}

.instagram-section h2,
.instagram-section .section-subtitle {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.ig-embed-placeholder {
  max-width: 540px;
  margin: 0 auto;
}

.ig-embed-placeholder iframe {
  border-radius: var(--radius) !important;
}

/* ---- Contact Form ---- */
.contact-form {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b6356' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  padding: 14px 24px;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.submit-btn:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* ---- Footer ---- */
.footer {
  background: var(--text);
  color: var(--bg);
  padding: 40px 24px;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.footer p {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--bg);
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .hero {
    padding: 48px 20px 32px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .links {
    padding: 24px 20px;
  }

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

  .latest,
  .contact {
    padding: 36px 20px;
  }
}
