:root {
  /* Colors */
  --primary: #c38a0d; /* New Brand Gold/Bronze */
  --primary-dark: #a0710a;
  --bg-deep: #0a0a0a;
  --bg-dark: #121212;
  --bg-card: #1e1e1e;
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --white: #ffffff;
  --glass: rgba(20, 20, 20, 0.9);
  
  /* Fonts */
  --font-body: 'Outfit', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-accent: 'firula', sans-serif; /* Typekit Font */
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
  position: relative;
}

.firula-text {
  font-family: var(--font-accent);
  color: var(--white);
  -webkit-text-stroke: 5px var(--primary);
  paint-order: stroke fill;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: var(--section-padding);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

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

.btn-primary:hover {
  background: var(--white);
  color: var(--bg-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(195, 138, 13, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem; /* Reduced padding */
}

.logo img {
  height: 35px; /* Smaller logo */
  transition: var(--transition-smooth);
  display: block;
}

.links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem; /* Smaller font */
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.contact-btn {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
}

.contact-btn:hover {
  background: var(--white);
  color: var(--bg-deep) !important;
  transform: none;
}

.contact-btn::after {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
}

.menu-toggle .bar {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero-banner {
  height: 100vh;
  min-height: 600px;
  background-image: url('img/hero-photo-desktop.jpg');
  background-size: cover;
  background-position: right 30% center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 30%, rgba(10, 10, 10, 0.2) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-name-small {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-name-small .accent-is {
  color: var(--primary);
  font-style: italic;
  font-family: var(--font-accent);
  font-size: 1.4rem;
  margin-left: 5px;
}

.hero-tagline-big {
  font-family: var(--font-accent);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.9;
  color: var(--white);
  -webkit-text-stroke: 10px var(--primary);
  paint-order: stroke fill;
  margin-bottom: 2rem;
  text-transform: none;
  text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
}

/* About Section */
.about {
  background: var(--bg-dark);
}

.mobile-stack {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  padding: 6px;
  background: linear-gradient(135deg, var(--primary), rgba(195, 138, 13, 0.3), var(--primary));
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(195, 138, 13, 0.15), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.premium-img {
  width: 100%;
  border-radius: 10px;
  display: block;
  z-index: 2;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.image-accent {
  display: none;
}

.experience-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(195, 138, 13, 0.1);
  color: var(--primary);
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

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

.youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition-smooth);
}

.youtube-link:hover {
  color: var(--white);
}

/* Shows Section */
.reverse-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.shows-image-wrapper {
  position: relative;
  padding: 6px;
  background: linear-gradient(135deg, var(--primary), rgba(195, 138, 13, 0.3), var(--primary));
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(195, 138, 13, 0.15), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.city-indicator {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.city-indicator::after {
  content: '';
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
}

.shows-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.show-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  background: var(--bg-card);
  padding: 1.2rem 1.8rem;
  border-radius: 10px;
  align-items: center;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.show-card:hover {
  transform: translateX(8px);
  border-color: rgba(195, 138, 13, 0.3);
  background: #252525;
}

.show-date {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 1.8rem;
}

.show-date .day {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.show-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.show-info h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.show-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Gallery Section */
.gallery {
  background: var(--bg-deep);
}

.text-center {
  text-align: center;
}

.gallery-header {
  margin-bottom: 1.5rem;
}

.carousel-container {
  position: relative;
  width: 100%;
}

.gallery_grid {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery_grid::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 calc(33.333% - 1.34rem);
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  scroll-snap-align: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.carousel-nav:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev { left: -22px; }
.carousel-nav.next { right: -22px; }

/* Contact Section */
.contact {
  background: var(--bg-dark);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-desc span {
  color: var(--primary);
  font-style: italic;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  margin-bottom: 1.8rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.3rem;
}

.contact-socials {
  display: flex;
  gap: 1.2rem;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-socials a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.premium-form {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 15px;
}

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

.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(195, 138, 13, 0.05);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: var(--white);
  color: var(--bg-deep);
  transform: translateY(-3px);
}

/* Footer */
.main-footer {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  height: 50px; /* Smaller footer logo */
  margin-bottom: 1.5rem;
}

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

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 1.3rem;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  color: var(--primary);
  transform: scale(1.2);
}

/* Responsiveness */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .mobile-stack, .reverse-stack, .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .reverse-stack .shows-list-container {
    order: 2;
  }
  
  .reverse-stack .shows-image-wrapper {
    order: 1;
  }

  .gallery-item {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #000; /* Richer black for mobile menu */
    flex-direction: column;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2000;
    padding: 2rem;
    gap: 2.5rem;
  }
  
  .links.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
  }

  .nav-link {
    font-size: 1rem;
    width: auto;
    text-align: center;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
  }

  .links {
    align-items: center;
  }

  .gallery {
    padding: 60px 0;
  }
  
  .hero-banner {
    background-image: url('img/hero-photo.jpg');
    text-align: center;
    background-position: center; /* Center image on mobile */
    flex-direction: column; /* Allow margin-top: auto for hero-content */
    justify-content: flex-end; /* Push content to bottom */
  }

  .banner-overlay {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.05) 0%, rgba(10, 10, 10, 0.3) 40%, rgba(10, 10, 10, 0.85) 100%);
  }
  
  .hero-content {
    padding-left: 0;
    width: 100%;
    padding: 0 1.5rem;
    margin-top: auto;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-name-small {
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 0.2rem;
  }

  .hero-tagline-big {
    font-size: 4rem;
    line-height: 0.85;
    -webkit-text-stroke: 8px var(--primary);
    margin-bottom: 1.5rem;
  }

  .firula-text {
    -webkit-text-stroke: 4px var(--primary);
  }
  
  .hero-cta {
    justify-content: center;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .gallery-header {
    margin-bottom: 0.5rem;
  }

  .gallery_grid {
    gap: 0;
    padding: 0 0 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery-item {
    flex: 0 0 100%;
    height: 400px; /* Taller to accommodate circular photo + borders */
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .gallery-item img {
    width: auto;
    max-width: 90%;
    height: 90%;
    object-fit: contain;
  }

  .show-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }

  .show-info {
    width: 100%;
  }

  .show-info p {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .show-date {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 1rem;
  }
  
  .carousel-nav {
    display: flex; /* Keep arrows on mobile if needed, or hide if using scroll */
  }

  .carousel-nav.prev { left: 10px; top: 50%; }
  .carousel-nav.next { right: 10px; top: 50%; }
}
