/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #000;
}

/* ==========================================================================
   2. NAVIGATION BAR (Transparent Overlay)
   ========================================================================== */
nav {
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 20px;
  box-sizing: border-box;
}

#menu-toggle {
  display: none;
}

#nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#nav-links li {
  margin: 0 15px;
}

#nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transition: color 0.3s ease;
}

#nav-links a:hover,
#nav-links a.active {
  color: #e63946;
  border-bottom: 2px solid #e63946;
}

#close-menu {
  display: none;
}

/* ==========================================================================
   3. MOBILE NAVIGATION (Transparent Header & Accordion Dropdown)
   ========================================================================== */
@media (max-width: 768px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
  }

  #menu-toggle {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    margin-left: auto;
    z-index: 1002;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.8));
  }

  #nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111111;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
    z-index: 1001;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  }

  #nav-links.show {
    max-height: 500px;
    transition: max-height 0.3s ease-in-out;
  }

  #nav-links li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  #nav-links a {
    display: block;
    width: 100%;
    padding: 16px 20px;
    color: #ffffff;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s ease;
  }

  #nav-links a:hover,
  #nav-links a.active {
    background-color: #e63946;
    color: #ffffff;
  }

  #close-menu {
    display: none !important;
  }
}

/* ==========================================================================
   4. SHARED SECTION BACKGROUNDS & OVERLAYS
   ========================================================================== */
.hero,
#about,
#events,
#gallery,
#music,
#contact {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 100px 20px 60px;
  box-sizing: border-box;
}

/* Base background setup for non-decoupled pages */
.hero,
#about,
#events,
#music,
#contact {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero::before,
#about::before,
#events::before,
#gallery::before,
#music::before,
#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 0;
}

.hero > *,
#about > *,
#events > *,
#gallery > *,
#music > *,
#contact > * {
  position: relative;
  z-index: 1;
}

.overlay {
  background: rgba(15, 15, 15, 0.75);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 900px;
  width: 100%;
  backdrop-filter: blur(4px);
}

.overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.overlay h2 {
  font-size: 1.8rem;
  margin: 25px 0 15px;
}

/* ==========================================================================
   5. INDIVIDUAL PAGE BACKGROUND ASSIGNMENTS
   ========================================================================== */
.hero    { background-image: url('images/hero-bg.jpg'); }
#about   { background-image: url('images/about-bg.jpg'); }
#events  { background-image: url('images/events-bg.jpg'); }
#music   { background-image: url('images/music-bg.jpg'); }
#contact { background-image: url('images/contact-bg.jpeg'); }

/* Gallery background image assigned via CSS variable or directly */
body.gallery-page #gallery {
  --gallery-bg: url('images/gallery-bg.jpg');
}

/* ==========================================================================
   6. HOMEPAGE HERO (Floating Off-Center Layout)
   ========================================================================== */
.hero {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 140px 8% 80px;
  background-position: center center !important;
}

.hero .hero-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  max-width: 550px;
  text-align: left;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e0e0e0;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

.hero-cta .btn-primary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #e63946 0%, #b81d28 100%);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5), 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.8), 0 6px 15px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #ff4d5a 0%, #d62828 100%);
}

/* ==========================================================================
   7. AUDIO PLAYER & MEDIA ELEMENTS
   ========================================================================== */
.audio-section {
  margin-top: 30px;
}

.audio-section audio {
  width: 100%;
  max-width: 500px;
  margin: 10px auto;
  display: block;
  border-radius: 30px;
}

/* ==========================================================================
   8. GLOBAL BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background: #e63946;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.6);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ff4d5a;
  box-shadow: 0 0 25px rgba(255, 77, 90, 0.9);
  transform: translateY(-2px) scale(1.03);
}

/* Grid Layouts */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Quick Contact Buttons (WhatsApp & Instagram) */
.quick-contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0 30px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn {
  background-color: #25D366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   9. EVENTS PAGE CUSTOM STYLES (Glassmorphism Layout)
   ========================================================================== */
body.events-page #events {
  align-items: flex-end;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 60px;
  background-position: center top !important;
}

body.events-page #events .overlay {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  max-width: 800px;
  width: 100%;
}

body.events-page #events h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95);
}

body.events-page #events p {
  font-size: 1.15rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

body.events-page .events-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

body.events-page .event-card {
  background: rgba(15, 15, 15, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  text-align: center;
  color: #ffffff !important;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

body.events-page .event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 57, 70, 0.5) !important;
}

body.events-page .event-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0 !important;
}

body.events-page .event-card p {
  font-size: 1rem !important;
  color: #d1d1d1 !important;
  margin-bottom: 6px !important;
  text-shadow: none !important;
}

body.events-page .event-card .btn {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  padding: 14px 28px;
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #e63946 0%, #b81d28 100%);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
}

body.events-page .event-card .btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(230, 57, 70, 0.7);
  background: linear-gradient(135deg, #ff4d5a 0%, #d62828 100%);
}

body.events-page .event-card img.event-poster {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

@media (min-width: 769px) {
  body.events-page .event-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: center;
    text-align: left;
  }

  body.events-page .event-card img.event-poster {
    margin-bottom: 0;
    max-height: 100%;
  }

  body.events-page .event-card .btn {
    width: auto;
    max-width: fit-content;
  }
}

/* ==========================================================================
   10. ABOUT PAGE CUSTOM STYLES (Floating Text Layout)
   ========================================================================== */
#about {
  align-items: flex-start;
  padding-top: 130px;
  padding-bottom: 80px;
}

#about .overlay {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 10px !important;
  max-width: 850px;
  text-align: left;
}

#about h1 {
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 25px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.95);
}

#about h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 35px 0 15px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.95);
}

#about p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #f5f5f5;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

#about ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

#about li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f5f5f5;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

#about li::before {
  content: "•";
  color: #e63946;
  font-size: 1.6rem;
  position: absolute;
  left: 5px;
  top: -2px;
}

/* ==========================================================================
   11. MUSIC PAGE CUSTOM STYLES (Modern Linktree Glassmorphism Buttons)
   ========================================================================== */
#music {
  align-items: flex-start;
  padding-top: 130px;
  padding-bottom: 80px;
}

#music .overlay {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 10px !important;
  max-width: 500px;
  text-align: left;
}

#music h1 {
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 25px;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95);
}

.streaming-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.stream-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 380px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stream-btn i {
  font-size: 1.5rem;
  width: 28px;
  text-align: center;
}

.stream-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.stream-btn.spotify:hover i        { color: #1DB954; }
.stream-btn.apple:hover i          { color: #FA243C; }
.stream-btn.youtube-music:hover i,
.stream-btn.youtube:hover i        { color: #FF0000; }
.stream-btn.audiomack:hover i      { color: #FFA200; }
.stream-btn.boomplay:hover i       { color: #00A3E0; }
.stream-btn.deezer:hover i         { color: #A238FF; }
.stream-btn.amazon:hover i         { color: #232F3E; }

/* ==========================================================================
   12. PAGE SPECIFIC OVERRIDES (CONTACT & GALLERY)
   ========================================================================== */
body.contact-page #contact {
  min-height: auto;
  padding-top: 140px;
  padding-bottom: 60px;
  align-items: flex-end;
  justify-content: center;
  background-position: center top !important;
}

body.contact-page #footer-placeholder,
body.gallery-page #footer-placeholder,
body.events-page #footer-placeholder {
  position: relative;
  z-index: 10;
}

/* --- Contact Page Form Layout --- */
body.contact-page .contact-card {
  width: 100%;
  max-width: 550px;
  background: rgba(15, 15, 15, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px);
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  text-align: center;
}

body.contact-page .contact-card h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

body.contact-page .contact-card p {
  font-size: 1rem;
  color: #d1d1d1;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

body.contact-page #contact form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.contact-page #contact input,
body.contact-page #contact textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 0.95rem;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
}

body.contact-page #contact input::placeholder,
body.contact-page #contact textarea::placeholder {
  color: #a0a0a0;
}

body.contact-page #contact input:focus,
body.contact-page #contact textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #e63946;
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.4);
}

body.contact-page #contact button[type="submit"] {
  width: 100%;
  padding: 15px;
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #e63946 0%, #b81d28 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
}

body.contact-page #contact button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 57, 70, 0.7);
  background: linear-gradient(135deg, #ff4d5a 0%, #d62828 100%);
}

/* ==========================================================================
   12b. GALLERY PAGE FIXED BACKGROUND SOLUTION
   ========================================================================== */
body.gallery-page #gallery {
  position: relative;
  align-items: flex-start;
  padding-top: 130px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: none !important; /* Disables container background growth */
}

/* Anchor background image directly to the viewport */
body.gallery-page #gallery::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: var(--gallery-bg, url('images/gallery-bg.jpg'));
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  transform: translateZ(0);
}

body.gallery-page #gallery .overlay {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 10px !important;
  max-width: 900px;
  text-align: center;
}

body.gallery-page #gallery h1 {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95);
}

body.gallery-page #gallery h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 35px 0 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95);
}

body.gallery-page #gallery p {
  font-size: 1.1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  color: #f0f0f0;
}

body.gallery-page .video-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 25px;
}

body.gallery-page .video-card {
  width: 100%;
  max-width: 320px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

body.gallery-page .video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 57, 70, 0.5);
}

body.gallery-page .video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
}

body.gallery-page .video-info {
  padding: 16px;
  text-align: center;
}

body.gallery-page .video-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   13. GLOBAL FOOTER STYLES
   ========================================================================== */
footer,
.site-footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  position: relative;
  z-index: 10;
}

footer p,
.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
  display: block;
}

footer .socials,
.site-footer .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 5px;
}

footer .socials a,
.site-footer .socials a {
  color: #ffffff;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1;
  transition: color 0.3s ease, transform 0.2s ease;
}

footer .socials a:hover,
.site-footer .socials a:hover {
  color: #e63946;
  transform: translateY(-2px);
}

/* ==========================================================================
   14. GLOBAL RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  /* Reset static background scaling for general sections */
  .hero,
  #about,
  #events,
  #music,
  #contact {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center top !important;
  }
}

@media (max-width: 768px) {
  .hero {
    align-items: flex-end;
    justify-content: center;
    padding: 120px 20px 60px;
  }

  .hero .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .hero-cta .btn-primary {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .overlay {
    padding: 25px 15px;
  }

  .gallery-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  #about h1 {
    font-size: 2.8rem;
  }

  #about h2 {
    font-size: 1.75rem;
  }

  #about p {
    font-size: 1rem;
    line-height: 1.7;
  }

  #music h1 {
    font-size: 3rem;
  }

  .stream-btn {
    max-width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }

  body.gallery-page #gallery h1 {
    font-size: 2.4rem;
  }

  body.gallery-page .video-card {
    max-width: 280px;
  }

  body.events-page #events,
  body.contact-page #contact {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  body.events-page #events h1 {
    font-size: 2.5rem;
  }

  body.events-page .event-card,
  body.contact-page .contact-card {
    padding: 25px 20px;
  }

  body.contact-page .contact-card h1 {
    font-size: 2.2rem;
  }
}