/* ============================================================
   M AT MOSPHERE — Main Stylesheet
   Brand Colors: #000000 · #0F2D62 · #2495FF · #203FD7 · #FF540B · #F4ECE3 · #FFFFFF
   ============================================================ */

:root {
  --black:       #000000;
  --navy:        #0F2D62;
  --navy-dark:   #091e47;
  --blue-bright: #2495FF;
  --blue-deep:   #203FD7;
  --orange:      #FF540B;
  --cream:       #F4ECE3;
  --white:       #FFFFFF;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy-dark);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 0.9;
}

/* ── NAVIGATION ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(9, 30, 71, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36, 149, 255, 0.15);
  transition: padding 0.3s;
}

#site-header.scrolled { padding: 14px 48px; }

.site-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-transform: uppercase;
}

.site-logo .at { color: var(--orange); }

#primary-navigation ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

#primary-navigation a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 236, 227, 0.7);
  transition: color 0.2s;
}

#primary-navigation a:hover,
#primary-navigation .current-menu-item a { color: var(--blue-bright); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 48px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36,149,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,149,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }

.page-hero-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue-bright);
  font-weight: 500;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(56px, 9vw, 120px);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--blue-bright);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); color: var(--white); }

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(244, 236, 227, 0.3);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

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

/* ── SECTION BASE ── */
.section { padding: 100px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.section-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue-bright);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(48px, 7vw, 90px);
  margin-bottom: 60px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36,149,255,0.2), transparent);
  margin: 0 48px;
}

/* ── HOME HERO ── */
#home-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 48px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(32, 63, 215, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(36, 149, 255, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-dark) 0%, #06152e 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36,149,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,149,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 12s ease-in-out infinite alternate;
}

.orb-1 { width: 500px; height: 500px; background: rgba(32,63,215,0.15); top: -100px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(36,149,255,0.1); bottom: -50px; right: -50px; animation-delay: -6s; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.1); }
}

.hero-content { position: relative; z-index: 1; }

.hero-tagline {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}

.hero-title .at {
  color: var(--orange);
  font-weight: 300;
  font-size: 0.55em;
  letter-spacing: 0.05em;
  display: block;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 236, 227, 0.5);
  margin-top: 28px;
  margin-bottom: 52px;
}

.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(36,149,255,0.6), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── TOUR DATES ── */
.tour-list { display: flex; flex-direction: column; gap: 1px; }

.tour-item {
  display: grid;
  grid-template-columns: 120px 1fr 200px 160px;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(36,149,255,0.08);
  transition: background 0.2s, border-color 0.2s;
}

.tour-item:hover {
  background: rgba(36,149,255,0.07);
  border-color: rgba(36,149,255,0.25);
}

.tour-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 0.02em;
}

.tour-event { font-size: 15px; color: var(--cream); }
.tour-location { font-size: 13px; color: rgba(244,236,227,0.5); letter-spacing: 0.05em; }

.tour-tickets {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid rgba(36,149,255,0.4);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  text-align: center;
  transition: all 0.2s;
  font-weight: 500;
}

.tour-tickets:hover { background: var(--blue-bright); color: var(--white); border-color: var(--blue-bright); }

.tour-empty {
  padding: 40px;
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(244,236,227,0.3);
  letter-spacing: 0.1em;
}

/* ── RELEASES / SOUNDCLOUD ── */
.soundcloud-wrapper {
  border: 1px solid rgba(36,149,255,0.15);
  overflow: hidden;
  margin-bottom: 48px;
}

.soundcloud-wrapper iframe { display: block; }

.soundcloud-credit {
  font-size: 10px;
  color: #cccccc;
  line-break: anywhere;
  word-break: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: Interstate, Lucida Grande, Lucida Sans Unicode, Verdana, sans-serif;
  font-weight: 100;
  background: #000;
  padding: 6px 12px;
}

.soundcloud-credit a { color: #cccccc; text-decoration: none; }

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.release-card {
  position: relative;
  overflow: hidden;
  background: rgba(36,149,255,0.05);
  border: 1px solid rgba(36,149,255,0.1);
  display: flex;
  flex-direction: column;
}

.release-cover {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.release-card:hover .release-cover img { transform: scale(1.04); }

.release-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.release-label-name {
  font-size: 10px;
  color: rgba(36,149,255,0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.release-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.release-card:hover .release-placeholder { transform: scale(1.03); }

.release-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(36,149,255,0.15);
  position: absolute;
  top: 12px; right: 16px;
  line-height: 1;
}

.release-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.release-year { font-size: 11px; color: rgba(244,236,227,0.4); letter-spacing: 0.15em; }

.release-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,30,71,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.release-card:hover .release-overlay { opacity: 1; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(244,236,227,0.75);
  margin-bottom: 20px;
}

.about-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(36,149,255,0.1) 0%, rgba(32,63,215,0.2) 100%);
  border: 1px solid rgba(36,149,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-monogram {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 180px;
  color: rgba(36,149,255,0.08);
  position: absolute;
  line-height: 1;
  pointer-events: none;
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
}

.value-block {
  padding: 28px 24px;
  background: rgba(0,0,0,0.2);
  border-top: 2px solid transparent;
  transition: border-color 0.2s;
}

.value-block:hover { border-color: var(--blue-bright); }

.value-block h4 {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 8px;
}

.value-block p { font-size: 13px; color: rgba(244,236,227,0.5); line-height: 1.5; }

/* ── BOOKING / CONTACT ── */
.booking-centered { max-width: 640px; margin: 0 auto; text-align: center; }
.booking-desc { font-size: 15px; color: rgba(244,236,227,0.6); line-height: 1.8; margin-bottom: 48px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-bottom: 40px; text-align: left; }

.contact-block {
  padding: 28px 32px;
  background: rgba(36,149,255,0.05);
  border: 1px solid rgba(36,149,255,0.1);
}

.contact-block label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-block a,
.contact-block span {
  font-size: 15px;
  color: var(--cream);
  display: block;
  transition: color 0.2s;
}

.contact-block a:hover { color: var(--blue-bright); }

.social-strip { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid rgba(244,236,227,0.15);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,236,227,0.6);
  transition: all 0.2s;
  font-weight: 500;
}

.social-link:hover { border-color: var(--blue-bright); color: var(--blue-bright); }

/* ── FOOTER ── */
#site-footer {
  background: var(--black);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(36,149,255,0.1);
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-transform: uppercase;
}

.footer-logo .at { color: var(--orange); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }
.footer-tagline { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.2); }

/* ── WORDPRESS PAGE CONTENT ── */
.entry-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 48px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(244,236,227,0.75);
}

.entry-content h2 {
  font-size: 36px;
  margin: 48px 0 20px;
  color: var(--cream);
}

.entry-content p { margin-bottom: 20px; }
.entry-content a { color: var(--blue-bright); border-bottom: 1px solid rgba(36,149,255,0.3); }
.entry-content a:hover { color: var(--white); }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  #site-header { padding: 16px 24px; }
  #primary-navigation { display: none; }
  #primary-navigation.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: rgba(9,30,71,0.98); padding: 24px; }
  #primary-navigation.open ul { flex-direction: column; gap: 20px; }
  .menu-toggle { display: flex; }
  .section-inner { padding: 0 24px; }
  .section-divider { margin: 0 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-frame { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-strip { grid-template-columns: 1fr; }
  .tour-item { grid-template-columns: 90px 1fr; }
  .tour-location, .tour-tickets { display: none; }
  #site-footer { flex-direction: column; text-align: center; padding: 32px 24px; }
  .page-hero { padding: 100px 24px 48px; }
}
