/* =========================================================
   STYLES.CSS — John Meadows Music Artist Page
   Warm neutrals palette, clean box-model layout
   ========================================================= */

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

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #FAF7F2;
  color: #2C2820;
  line-height: 1.65;
  min-height: 100vh;
}

a {
  color: #8B6F47;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #2C2820;
}

ul {
  list-style: none;
}

img, iframe {
  display: block;
  max-width: 100%;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2C2820;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
}

p {
  color: #7A6E62;
  margin-bottom: 1rem;
}

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

/* ── BUTTONS ── */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #8B6F47;
  color: #FFFFFF;
  margin-top: 1.5rem;
}

.btn-primary:hover {
  background: #2C2820;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(44, 40, 32, 0.10);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid #8B6F47;
  color: #8B6F47;
  margin-top: 1rem;
}

.btn-secondary:hover {
  background: #8B6F47;
  color: #FFFFFF;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #D9CFC2;
  height: 64px;
}

.header-inner {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2C2820;
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #7A6E62;
  letter-spacing: 0.01em;
}

.nav a:hover {
  color: #2C2820;
}

/* ── PAGE WRAPPER ── */
.page-wrapper {
  max-width: 96%;
  margin: 0 auto;
  padding: 0 2rem 4.5rem;
}

/* ── INTRO SECTION ── */
.intro-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid #D9CFC2;
  margin-bottom: 3rem;
}

.intro-text {
  flex: 1;
  max-width: 75%;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C4A882;
  margin-bottom: 1rem;
}

.headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.subline {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #7A6E62;
  max-width: 75%;
  margin-bottom: 0;
}

/* Decorative vinyl element */
.intro-visual {
  flex-shrink: 0;
  position: relative;
  width: 200px;
  height: 200px;
}

.vinyl-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #E8E0D3 0deg,
    #D9CFC2 20deg,
    #E8E0D3 40deg,
    #D9CFC2 60deg,
    #E8E0D3 80deg,
    #D9CFC2 100deg,
    #E8E0D3 120deg,
    #D9CFC2 140deg,
    #E8E0D3 160deg,
    #D9CFC2 180deg,
    #E8E0D3 200deg,
    #D9CFC2 220deg,
    #E8E0D3 240deg,
    #D9CFC2 260deg,
    #E8E0D3 280deg,
    #D9CFC2 300deg,
    #E8E0D3 320deg,
    #D9CFC2 340deg,
    #E8E0D3 360deg
  );
  animation: spin 12s linear infinite;
}

.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #8B6F47;
  color: #FFFFFF;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── CONTENT LAYOUT (main + sidebar) ── */
.content-layout {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

/* ── MAIN CONTENT ── */
.main-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #F2EDE4;
  border: 1px solid #D9CFC2;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(44, 40, 32, 0.08);
}

.card h2 {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #D9CFC2;
}

/* ── SIDEBAR ── */
.sidebar {
  flex-shrink: 0;
  width: 320px;
  position: sticky;
  top: calc(64px + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #D9CFC2;
}

/* ── FOOTER ── */
.site-footer {
  background: #F2EDE4;
  border-top: 1px solid #D9CFC2;
  padding: 3rem 0 0;
  margin-top: 4.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand .logo {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #7A6E62;
  max-width: 220px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: #7A6E62;
}

.footer-nav a:hover {
  color: #8B6F47;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

 .page-wrapper {
    padding: 0 1rem 3rem;
  }

  .header-inner {
    padding: 0 1rem;
  }

  .intro-section {
    flex-direction: column;
    padding: 3rem 0 2rem;
  }

  .intro-visual {
    width: 140px;
    height: 140px;
  }

  .vinyl-ring {
    width: 140px;
    height: 140px;
  }

  .nav {
    gap: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}


.footer-social a {
  color: #7A6E62;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #1DB954;
}

.footer-bottom {
  border-top: 1px solid #D9CFC2;
  text-align: center;
  padding: 1rem 2rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #7A6E62;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .content-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: static;
  }
}
