/* Squarespace Design Aesthetics — Minimalist, Image-Centric, Balanced Typography */

:root {
  --bg-dark: #0a0a0c;
  --bg-card: #141418;
  --bg-card-hover: #1c1c22;
  --accent-gold: #e5b967;
  --accent-purple: #8b5cf6;
  --accent-purple-glow: rgba(139, 92, 246, 0.25);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --border-color: rgba(255, 255, 255, 0.08);
  --font-heading: 'Syne', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.5;
  font-size: 15px; /* Reduced baseline font size */
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* Containers & Grid Layouts */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #1e1b4b, #31103f, #1e1b4b);
  color: var(--text-main);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border-color);
}

.bar-link {
  margin-left: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: underline;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.header-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--text-main);
}

.nav-cta {
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold) !important;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  background: var(--accent-gold);
  color: var(--bg-dark) !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section — Image Centric */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10,10,12,0.2) 0%, rgba(10,10,12,0.92) 85%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem; /* Reduced from 4.2rem */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1rem; /* Reduced from 1.2rem */
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.85rem; /* Reduced from 0.95rem */
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(229, 185, 103, 0.25);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: rgba(255, 255, 255, 0.1);
}

/* Highlight Bar */
.highlight-bar {
  background: var(--bg-card);
  border-y: 1px solid var(--border-color);
  padding: 1.8rem 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.highlight-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem; /* Reduced from 2rem */
  font-weight: 800;
  color: var(--accent-gold);
}

.highlight-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Sections Global — Image-Centric Layout */
.section {
  padding: 4.5rem 0;
}

.section-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.85rem; /* Reduced from 2.5rem */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.section-desc {
  color: var(--text-muted);
}

/* About Section — Image Centric */
.about-image-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
  max-height: 420px;
}

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

.lead-text {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-weight: 500;
}

.body-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.social-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.78rem;
}

.social-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Services / Packages Section — Image Centric Grid */
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.album-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.album-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.album-cover {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.album-card:hover .album-cover img {
  transform: scale(1.06);
}

.album-info {
  padding: 1.25rem;
  text-align: center;
}

.release-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  font-weight: 600;
}

.album-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0.3rem 0;
}

.album-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.listen-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.listen-link:hover {
  color: var(--text-main);
}

/* Audio Player Section */
.player-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #110e1b 100%);
}

.player-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.player-track-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

#player-art {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  object-fit: cover;
}

.now-playing-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-purple);
  font-weight: 700;
}

#player-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0.3rem 0;
}

#player-artist {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.player-controls-container {
  grid-column: span 2;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.controls-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.controls-row button {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.2rem;
  cursor: pointer;
}

.main-play {
  background: var(--text-main) !important;
  color: var(--bg-dark) !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.main-play:hover {
  background: var(--accent-gold) !important;
  transform: scale(1.08);
}

.progress-bar-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

#seek-slider {
  flex-grow: 1;
  accent-color: var(--accent-gold);
  cursor: pointer;
}

.playlist {
  grid-column: span 2;
}

.playlist h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.playlist ul {
  list-style: none;
}

.playlist-item {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.playlist-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.playlist-item.active {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.track-num {
  font-size: 0.85rem;
  color: var(--text-dim);
  width: 40px;
}

.track-name {
  flex-grow: 1;
  font-size: 0.95rem;
  font-weight: 500;
}

.track-len {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Tour Section */
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tour-row {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  transition: var(--transition-smooth);
}

.tour-row:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card-hover);
}

.tour-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  margin-right: 2rem;
  border-right: 1px solid var(--border-color);
  padding-right: 2rem;
}

.tour-date .day {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-gold);
}

.tour-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.tour-details {
  flex-grow: 1;
}

.tour-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.tour-details p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tag-sold-out {
  font-size: 0.75rem;
  color: #f87171;
  margin-right: 1rem;
  font-weight: 600;
}

/* Video Section */
.video-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.video-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 480px;
  object-fit: cover;
  background: #000;
  display: block;
}

.video-info {
  padding: 1.25rem;
  text-align: center;
}

.video-info h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

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

/* Reviews Section */
.reviews-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.review-author span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Gallery Grid — Image Centric */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-main);
}

/* Contact & Booking */
.contact-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.booking-form-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

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

.full-width {
  width: 100%;
  justify-content: center;
}

.direct-contacts {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.hidden {
  display: none !important;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
  background: var(--bg-dark);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-links, .footer-socials {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover, .footer-socials a:hover {
  color: var(--text-main);
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .grid-2-col, .album-grid, .gallery-grid, .highlight-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .player-card {
    grid-template-columns: 1fr;
  }

  .controls-row {
    grid-column: span 1;
  }

  .playlist {
    grid-column: span 1;
  }

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