/* ============================================
   DANNY MATTIN — Hammond Organ & Rock Keyboards
   Palette: Deep black, amber/brass, deep purple
   Fonts: Bebas Neue (display), Barlow (body)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  --black: #07060b;
  --dark: #0e0c14;
  --dark-purple: #1a1225;
  --mid-purple: #2a1f3d;
  --amber: #c8963e;
  --amber-light: #e0b45a;
  --amber-glow: #c8963e66;
  --brass: #b8860b;
  --warm-white: #f0e6d6;
  --warm-grey: #a89e8c;
  --body-text: #ccc3b5;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --max-width: 1200px;
  --nav-height: 60px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--body-text);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--amber); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--amber-light); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--warm-white);
  letter-spacing: 0.05em;
  line-height: 1.1;
  font-weight: 400;
}

/* === NAVIGATION (transparent floating, no logo) === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2.5rem;
  transition: background 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(7, 6, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 150, 62, 0.15);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--warm-white);
  letter-spacing: 0.1em;
  padding: 0.3rem 0;
  position: relative;
  transition: color 0.3s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--amber); transition: all 0.3s; }

/* === HERO (split: text left, photo right) === */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 2.5rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-name { display: flex; flex-direction: column; margin-bottom: 0.5rem; }
.hero-name-line {
  font-size: clamp(7rem, 16vw, 14rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.85;
  text-shadow: 0 0 40px rgba(255,255,255,0.4), 0 0 80px rgba(255,255,255,0.15), 0 0 120px rgba(200,150,62,0.12);
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--amber);
  letter-spacing: 0.15em;
  margin: 1.2rem 0 1.5rem;
  text-transform: uppercase;
}
.hero-text { font-size: 1.1rem; max-width: 500px; color: #e0d8cc; margin-bottom: 2rem; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-photo {
  display: block;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  inset: 0;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7,6,11,0.45) 0%, rgba(7,6,11,0) 10%);
}

/* === SPLIT HERO for inner pages (press, contact) === */
.page-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 85vh;
}
.page-hero-split .hero-photo { min-height: 85vh; }
.page-hero-split .page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2.5rem 4rem 4rem;
  background: var(--dark);
}
.page-hero-split .hero-photo img {
  filter: contrast(1.05) saturate(1.1);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--amber);
  cursor: pointer;
  transition: all 0.35s ease;
  text-transform: uppercase;
  text-align: center;
}
.btn-primary { background: var(--amber); color: var(--black); }
.btn-primary:hover { background: var(--amber-light); border-color: var(--amber-light); color: var(--black); box-shadow: 0 0 30px var(--amber-glow); }
.btn-outline { background: transparent; color: var(--amber); }
.btn-outline:hover { background: rgba(200,150,62,0.12); color: var(--amber-light); box-shadow: 0 0 20px rgba(200,150,62,0.15); }

/* === CLASSIC PAGE HERO (full-bleed, for rig page) === */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,6,11,1) 0%, rgba(7,6,11,0.6) 50%, rgba(7,6,11,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
}
.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.page-hero-sub {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--amber);
  letter-spacing: 0.1em;
}

/* === SECTIONS === */
.section { padding: 5rem 2rem; max-width: var(--max-width); margin: 0 auto; }
.section-dark { background: var(--dark); }
.section-purple { background: var(--dark-purple); }
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); text-transform: uppercase; margin-bottom: 0.4rem; letter-spacing: 0.06em; }
.section-accent { display: block; width: 60px; height: 3px; background: var(--amber); margin-bottom: 2rem; }

/* === DIVIDERS === */
.divider-angled { width: 100%; height: 60px; background: var(--dark); clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%); }
.divider-angled-reverse { width: 100%; height: 60px; background: var(--dark-purple); clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%); }

/* === BIO STRIP === */
.bio-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.bio-strip p { font-size: 1.05rem; margin-bottom: 1rem; }
.bio-strip img { border: 3px solid var(--amber); box-shadow: 0 0 30px rgba(200,150,62,0.15); }

/* === BANDS GRID === */
.bands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.band-card { background: var(--dark-purple); border: 1px solid rgba(200,150,62,0.1); padding: 2rem; transition: all 0.4s ease; position: relative; overflow: hidden; }
.band-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--amber), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.band-card:hover::before { transform: scaleX(1); }
.band-card:hover { border-color: rgba(200,150,62,0.3); box-shadow: 0 4px 30px rgba(200,150,62,0.08); }
.band-card h3 { font-size: 1.3rem; color: var(--amber); margin-bottom: 0.5rem; }
.band-card p { font-size: 0.95rem; color: var(--warm-grey); }

/* === VIDEO GRID === */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.video-card { background: var(--dark); border: 1px solid rgba(200,150,62,0.1); overflow: hidden; }
.video-card .video-embed { position: relative; padding-bottom: 56.25%; height: 0; }
.video-card .video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-card .video-label { padding: 1rem 1.2rem; font-family: var(--font-display); font-size: 1.05rem; color: var(--warm-white); letter-spacing: 0.05em; }

/* === GALLERY GRID === */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.8rem; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border: 2px solid rgba(200,150,62,0.15); transition: all 0.4s ease; cursor: pointer; }
.gallery-grid img:hover { border-color: var(--amber); transform: scale(1.03); box-shadow: 0 0 25px var(--amber-glow); }

/* === RIG === */
.rig-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.rig-content p { margin-bottom: 1rem; font-size: 1.05rem; }
.rig-image { border: 3px solid var(--amber); box-shadow: 0 0 40px rgba(200,150,62,0.1); }
.brand-strip { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; padding: 2rem 0; margin-top: 1rem; border-top: 1px solid rgba(200,150,62,0.15); }
.brand-strip span { font-family: var(--font-display); font-size: 1.4rem; color: var(--warm-grey); letter-spacing: 0.1em; opacity: 0.7; transition: opacity 0.3s; }
.brand-strip span:hover { opacity: 1; color: var(--amber); }

/* === STYLE PHOTOS === */
.style-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.style-photos img { width: 100%; height: 300px; object-fit: cover; border: 2px solid rgba(200,150,62,0.15); transition: all 0.4s ease; }
.style-photos img:hover { border-color: var(--amber); box-shadow: 0 0 25px var(--amber-glow); }

/* === PRESS === */
.press-content { max-width: 800px; }
.press-content p { margin-bottom: 1.2rem; font-size: 1.05rem; }
.press-content strong { color: var(--warm-white); }
.press-download { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(200,150,62,0.15); }

/* === CONTACT === */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-details h3 { font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--amber); }
.contact-item { margin-bottom: 1.5rem; }
.contact-item .label { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.12em; color: var(--warm-grey); text-transform: uppercase; margin-bottom: 0.3rem; }
.contact-item a, .contact-item span { font-size: 1.15rem; color: var(--warm-white); }
.contact-item a:hover { color: var(--amber); }
.social-links { display: flex; gap: 1.5rem; margin-top: 2rem; }
.social-links a { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.08em; color: var(--warm-white); padding: 0.6rem 1.2rem; border: 1px solid rgba(200,150,62,0.2); transition: all 0.3s; }
.social-links a:hover { border-color: var(--amber); background: rgba(200,150,62,0.08); color: var(--amber); }

/* === CONTACT FORM === */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form input, .contact-form textarea { background: var(--dark-purple); border: 1px solid rgba(200,150,62,0.2); color: var(--warm-white); font-family: var(--font-body); font-size: 1rem; padding: 0.9rem 1.2rem; outline: none; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--amber); }
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--warm-grey); opacity: 0.6; }

/* === QUOTE === */
.quote-block { border-left: 3px solid var(--amber); padding: 1.5rem 2rem; margin: 2.5rem 0; background: rgba(200,150,62,0.04); }
.quote-block p { font-style: italic; font-size: 1.15rem; color: var(--warm-white); margin-bottom: 0.5rem; }
.quote-block cite { font-size: 0.9rem; color: var(--amber); font-style: normal; }

/* === FOOTER === */
.site-footer { background: var(--dark); border-top: 1px solid rgba(200,150,62,0.1); padding: 2.5rem 2rem; text-align: center; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--amber); letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-links a { font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.08em; color: var(--warm-grey); }
.footer-links a:hover { color: var(--amber); }
.footer-copy { font-size: 0.8rem; color: var(--warm-grey); opacity: 0.6; }

/* === CAROUSEL === */
.carousel-container { width: 100%; max-width: 900px; margin: 2rem auto; border: 3px solid var(--amber); box-shadow: 0 0 40px var(--amber-glow); overflow: hidden; }
.carousel-container iframe { width: 100%; height: 500px; border: none; display: block; }

/* === ROAD MONTAGE === */
.road-montage { position: relative; width: 100%; max-width: 800px; margin: 2rem auto; height: 450px; border: 4px solid var(--amber); box-shadow: 0 0 50px var(--amber-glow), inset 0 0 30px rgba(0,0,0,0.5); overflow: hidden; background: var(--black); }
.road-montage img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); max-width: 85%; max-height: 85%; object-fit: contain; opacity: 0; transition: opacity 0.15s ease, transform 0.15s ease; border: 3px solid rgba(200,150,62,0.4); box-shadow: 4px 4px 20px rgba(0,0,0,0.6); }
.road-montage img.active { opacity: 1; }

/* === ANIMATIONS === */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; animation: fadeInUp 0.8s ease forwards; }
.fade-in-delay-1 { animation-delay: 0.15s; }
.fade-in-delay-2 { animation-delay: 0.3s; }
.fade-in-delay-3 { animation-delay: 0.45s; }
.fade-in-delay-4 { animation-delay: 0.6s; }

/* === TEXTURE OVERLAY === */
.texture-overlay { position: relative; }
.texture-overlay::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; }
.texture-overlay > * { position: relative; z-index: 1; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .bio-strip, .rig-content, .contact-layout { grid-template-columns: 1fr; }
  .style-photos { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-split, .page-hero-split { grid-template-columns: 1fr; }
  .hero-photo, .page-hero-split .hero-photo { min-height: 50vh; }
  .page-hero-split .page-hero-text { padding: 3rem 1.5rem; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-split, .page-hero-split { grid-template-columns: 1fr; }
  .hero-content { padding: 5rem 1.5rem 2.5rem; }
  .hero-photo { min-height: 45vh; }
  .hero-name-line { font-size: clamp(4.5rem, 18vw, 7rem); }
  .nav-links { display: none; position: absolute; top: var(--nav-height); left: 0; right: 0; background: rgba(7,6,11,0.97); flex-direction: column; padding: 1.5rem 2rem; gap: 1rem; border-bottom: 1px solid rgba(200,150,62,0.15); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 3rem 1.2rem; }
  .style-photos { grid-template-columns: 1fr; }
  .bands-grid { grid-template-columns: 1fr; }
  .road-montage { height: 300px; }
  .carousel-container iframe { height: 350px; }
  .page-hero-split .hero-photo { min-height: 40vh; order: -1; }
  .page-hero-split .page-hero-text { padding: 2rem 1.5rem; }
}
