/* ============================================================
   WATSON COMEDY — style.css
   Design System & Component Styles
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --red: #FF5600;
  --red-dark: #cc4400;
  --red-light: #ff7733;
  --black: #0a0a0a;
  --dark: #1f2937;
  --dark-2: #374151;
  --dark-3: #6b7280;
  --mid: #9ca3af;
  --light: #f9fafb;
  --light-2: #f3f4f6;
  --white: #ffffff;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
  --shadow: 0 4px 16px rgba(0, 0, 0, .18);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .28);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .4);

  --transition: 0.25s ease;
  --transition-slow: 0.5s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--light-2);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.top-bar a {
  color: var(--dark-3);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 5px;
}

.top-bar a:hover {
  color: var(--red);
}

.top-bar svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  color: var(--dark);
  text-transform: uppercase;
  transition: color var(--transition);
  line-height: 1;
}

.site-logo:hover {
  color: var(--red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-2);
  transition: color var(--transition);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.site-nav a:hover {
  color: var(--dark);
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 86, 0, .4) !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--red);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1850 / 560;
  overflow: hidden;
  background: #0a0505;
}

/* Dark gradient fallback (shown before photo loads) */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a0500 0%, #0a0a0a 50%, #0f0300 100%);
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.carousel-slide picture,
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carousel Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-prev {
  left: 24px;
}

.carousel-next {
  right: 24px;
}

.carousel-nav:hover {
  background: rgba(255, 86, 0, 0.9);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Carousel Dot Indicators */
.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
  align-items: center;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--red);
  border-color: rgba(255, 255, 255, 0.5);
  width: 32px;
  border-radius: 6px;
}

/* ============================================================
   GET TICKETS CTA
   ============================================================ */
.tickets-cta {
  background: var(--white);
  padding: 48px 0;
  margin-top: 32px;
  text-align: center;
}

.btn-tickets {
  font-size: 1rem;
  padding: 18px 48px;
  letter-spacing: 0.14em;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section {
  padding: 96px 0;
  background: var(--white);
}

.section-alt {
  background: var(--light);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, .08);
  gap: 16px;
  flex-wrap: wrap;
}

.section-dark .section-header {
  border-bottom-color: rgba(255, 255, 255, .1);
}

.section-header-center {
  text-align: center;
  margin-bottom: 56px;
}

.section-header-center .section-title {
  margin-bottom: 12px;
}

.section-header-center p {
  color: var(--mid);
  font-size: 1.05rem;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--transition);
  white-space: nowrap;
}

.view-all:hover {
  gap: 10px;
}

.view-all svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================================
   MEET THE TRIO / CAST SECTION
   ============================================================ */
.section-cast {
  background: var(--light);
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.cast-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.cast-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.cast-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.cast-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.cast-card:hover .cast-photo img {
  transform: scale(1.06);
}

.cast-info {
  padding: 20px 24px;
  border-top: 3px solid var(--red);
}

.cast-info h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
  transition: color var(--transition);
}

.cast-card:hover .cast-info h3 {
  color: var(--red);
}

.cast-info p {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

.cast-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.cast-social {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-2);
  transition: all var(--transition);
}

.cast-social svg {
  width: 16px;
  height: 16px;
  fill: var(--mid);
  transition: fill var(--transition);
}

.cast-social:hover {
  background: var(--red);
}

.cast-social:hover svg {
  fill: var(--white);
}

/* Group photo banner */
.cast-group {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: block;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}

.cast-group:hover {
  box-shadow: var(--shadow-xl), 0 0 0 3px var(--red);
  transform: translateY(-4px);
}

.cast-group img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 940 / 530;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.cast-group:hover img {
  transform: scale(1.03);
}

.cast-group-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 36px;
  background: linear-gradient(to top, rgba(0, 0, 0, .82), transparent);
  color: rgba(255, 255, 255, .9);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .cast-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   SKETCHES / YOUTUBE SECTION
   ============================================================ */
.sketches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.sketch-card {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.sketch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.sketch-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-2);
}

.sketch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.sketch-card:hover .sketch-thumb img {
  transform: scale(1.05);
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  background: rgba(255, 86, 0, .9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  box-shadow: 0 0 0 0 rgba(255, 86, 0, .4);
  animation: pulse 2s ease-in-out infinite;
}

.sketch-card:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--red);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 86, 0, .4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 86, 0, 0);
  }
}

.yt-play-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 4px;
}

.sketch-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .85);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.sketch-info {
  padding: 20px;
}

.sketch-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  transition: color var(--transition);
}

.sketch-card:hover .sketch-info h3 {
  color: var(--red);
}

.sketch-info p {
  font-size: 0.82rem;
  color: var(--mid);
}

/* ============================================================
   GIGS / TOUR DATES
   ============================================================ */
.gigs-list {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.gig-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--light);
  gap: 24px;
  transition: background var(--transition);
}

.gig-item:last-child {
  border-bottom: none;
}

.gig-item:hover {
  background: #fff3ee;
}

.gig-date {
  text-align: center;
  min-width: 72px;
  flex-shrink: 0;
}

.gig-date .month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}

.gig-date .day {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--dark);
}

.gig-info {
  flex: 1;
}

.gig-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  transition: color var(--transition);
}

.gig-item:hover .gig-info h3 {
  color: var(--red);
}

.gig-info p {
  font-size: 0.88rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gig-info p svg {
  width: 14px;
  height: 14px;
  fill: var(--mid);
  flex-shrink: 0;
}

.gig-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-top: 6px;
}

.badge-featured {
  background: rgba(225, 29, 72, .12);
  color: var(--red);
}

.badge-new {
  background: rgba(16, 185, 129, .12);
  color: #059669;
}

.gig-action {
  flex-shrink: 0;
}

.btn-ticket {
  padding: 10px 24px;
  border: 2px solid var(--dark-3);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-ticket:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-soldout {
  padding: 10px 24px;
  border: 2px solid var(--light);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  background: var(--light);
  cursor: not-allowed;
  white-space: nowrap;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.social-section {
  background: var(--light-2);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Gallery photo backgrounds */
.social-post-bg {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .social-post-bg {
  transform: scale(1.05);
}

.sp-1 {
  background-image: url('Photos/Group%2001%20940x530.jpg');
}

.sp-2 {
  background-image: url('Photos/Liam%20940x530.jpg');
}

.sp-3 {
  background-image: url('Photos/Tegan%20940x530.jpg');
}

.sp-4 {
  background-image: url('Photos/DSC00582-Edit.jpg');
}


/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
  border-top: 3px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .5);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-individual-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.footer-individual-socials a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition);
}

.footer-individual-socials a:hover {
  color: var(--red);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.social-icon:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .5);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .5);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--red);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.newsletter-form input:focus {
  border-color: var(--red);
}

.newsletter-form button {
  background: var(--red);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: var(--red-dark);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .site-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero {
    aspect-ratio: 1080 / 1080;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .carousel-prev {
    left: 12px;
  }

  .carousel-next {
    right: 12px;
  }

  .carousel-dots {
    bottom: 16px;
  }

  .sketches-grid {
    grid-template-columns: 1fr;
  }

  .gig-item {
    flex-wrap: wrap;
  }

  .gig-action {
    width: 100%;
  }

  .btn-ticket,
  .btn-soldout {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}