/* Juniper Studio LLC - Stylesheet */

:root {
  --black: #000000;
  --dark: #000000;
  --mid: #000000;
  --light: #1a1a1a;
  --accent: #c8a96e;
  --accent-dim: #a68b55;
  --text: #e8e8e8;
  --muted: #888888;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }

img { max-width: 100%; height: auto; display: block; }

/* Navigation */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #000000;
  border-bottom: 1px solid var(--light);
  padding: 0 2rem;
}

nav .inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

nav .logo {
  font-size: 1.2rem; font-weight: 700; color: #fff;
  letter-spacing: 0.5px;
}

nav .logo span { color: var(--accent); }

nav .links { display: flex; gap: 0.25rem; }

nav .links a {
  padding: 0.5rem 1rem; border-radius: 6px;
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  transition: all 0.2s;
}

nav .links a:hover, nav .links a.active {
  color: #fff; background: var(--light);
}

/* Hamburger */
nav .hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}

nav .hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}

/* Main content */
main { padding-top: 64px; }

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

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt { background: var(--dark); }

.section-divider { border-top: 1px solid var(--light); }

h1, h2, h3, h4 {
  font-weight: 700; line-height: 1.3; letter-spacing: -0.02em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; margin-bottom: 2rem; }
h3 { font-size: 1.25rem; margin-bottom: 1rem; }

.subtitle {
  font-size: 1rem; color: var(--muted); max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex; align-items: center;
  position: relative;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}

.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.1) 60%, rgba(10,10,10,0) 100%);
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero-bg-1 { background-image: url('../images/JS LCL-1.jpg'); }
.hero-bg-2 { background-image: url('../images/JS LCL-2.jpg'); }
.hero-bg-3 { background-image: url('../images/JS LCL-3.jpg'); }
.hero-bg-4 { background-image: url('../images/JS LCL-4.jpg'); }
.hero-bg-5 { background-image: url('../images/JS LCL-5.jpg'); }
.hero-bg-6 { background-image: url('../images/JS LCL-6.jpg'); }
.hero-bg-7 { background-image: url('../images/JS LCL-7.jpg'); }

/* Page banner for inner pages */
.page-banner {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}

.page-banner-16x9 { aspect-ratio: 16 / 9; max-height: none; min-height: 300px; }
.page-banner-square { aspect-ratio: 1 / 1; max-height: none; min-height: 300px; }

.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.page-banner h1 {
  position: relative; z-index: 2;
  font-size: 3rem; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }

.hero h1 .accent { color: var(--accent); }

.hero p {
  font-size: 1.15rem; color: var(--muted); max-width: 560px;
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-block; padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent); color: var(--black);
}

.btn-primary:hover { background: var(--accent-dim); color: var(--black); }

.btn-outline {
  background: transparent; color: var(--text); border: 1px solid var(--light);
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }

.card {
  background: var(--dark); border: 1px solid var(--light); border-radius: 12px;
  padding: 2rem; transition: all 0.3s;
}

.card:hover { border-color: var(--accent-dim); transform: translateY(-2px); }

.card .icon {
  font-size: 1.75rem; margin-bottom: 1rem; display: block;
}

.card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }

.card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* Gear table / list */
.gear-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gear-item {
  background: var(--dark); border: 1px solid var(--light); border-radius: 10px;
  padding: 1.25rem 1.5rem;
}

.gear-item .cat {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent); font-weight: 600; margin-bottom: 0.5rem;
}

.gear-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }

.gear-item p { color: var(--muted); font-size: 0.8rem; }

/* Audio player list */
.audio-list { display: flex; flex-direction: column; gap: 1rem; }

.audio-track {
  background: var(--dark); border: 1px solid var(--light); border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.audio-track .track-info { flex: 1; }

.audio-track .track-info h4 { font-size: 0.95rem; margin-bottom: 0.15rem; }

.audio-track .track-info p { color: var(--muted); font-size: 0.8rem; }

.audio-track audio { max-width: 320px; height: 40px; }

/* Contact form */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem; border-radius: 8px;
  background: transparent; border: 1px solid rgba(255,255,255,0.25); color: #fff;
  font-family: var(--font); font-size: 0.95rem; transition: border 0.2s;
}

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

.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info .info-block { background: transparent; padding: 1.5rem; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); }

.contact-info .info-block h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent); margin-bottom: 0.5rem; }

.contact-info .info-block p { color: var(--muted); font-size: 0.9rem; }

.payment-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.5rem;
}

footer {
  border-top: 1px solid var(--light); padding: 3rem 0; margin-top: 2rem;
  text-align: center; color: var(--muted); font-size: 0.85rem;
}

footer .socials { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }

footer .socials a { color: var(--muted); font-size: 0.9rem; }
footer .socials a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 768px) {
  nav .links { display: none; flex-direction: column; background: var(--black); position: absolute; top: 64px; left: 0; right: 0; padding: 1rem; border-bottom: 1px solid var(--light); }
  nav .links.open { display: flex; }
  nav .hamburger { display: flex; }
  nav .links a { padding: 1rem; }
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero { min-height: 70vh; }
  .cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .audio-track { flex-direction: column; align-items: stretch; }
  .audio-track audio { max-width: 100%; }
  .btn-group { flex-direction: column; }
  .btn { text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
}
