/* ========================================
   RESET & GLOBAL ELEMENTS
======================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 70px;
  scroll-behavior: smooth;
}

body {
  font-family: Menlo, monospace;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  text-align: center;
  font-size: 18px;
}

/* Links */
a {
  color: #ccc;
  text-decoration: underline;
  transition: color 0.3s;
}

a:hover {
  color: #999 !important;
}

a:visited {
  color: #ccc;
}

/* Generic section wrapper */
section {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Generic page wrapper */
.page-wrapper {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 220px auto 0; /* consistent page spacing under nav/logo */
  text-align: center;
}


/* Paragraph spacing */
p + p {
  margin-top: 13px;
  line-height: 1.5;
}

/* ========================================
   HEADER, LOGO, RAINBOW TEXT, NAV
======================================== */

header {
  text-align: center;
  padding: 2rem 0.5rem 1rem;
  background-color: #000;
}

/* Rainbow “Darksoft” text */
.rainbow-text {
  font-family: 'bradley-djr', sans-serif;
  font-size: 4rem;
  letter-spacing: 0.05rem;
}

.rainbow-text span {
  animation: fadeColors 10s infinite;
}

@keyframes fadeColors {
  0%   { color: hsl(0, 40%, 60%); }
  20%  { color: hsl(40, 40%, 60%); }
  40%  { color: hsl(80, 40%, 60%); }
  60%  { color: hsl(160, 40%, 60%); }
  80%  { color: hsl(240, 40%, 60%); }
  100% { color: hsl(320, 40%, 60%); }
}

/* Simple nav (if ever used) */
nav {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

/* Sticky nav + top social icons */
.sticky-nav-bar {
  position: absolute;
  top: 60px;
  right: 60px;
  background: none;
  padding: 0;
  gap: 2rem;
  font-family: Menlo, monospace;
  z-index: 20;
}

.sticky-nav-bar a {
  color: #6dc15b;
  text-decoration: none;
  font-size: 1rem;
}

.sticky-nav-bar a:hover {
  opacity: 0.6;
}

.sticky-nav-bar.stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 60px 6.5rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0.7) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Top social icons (header area) */
.top-social-icons {
  position: absolute;
  top: 105px;
  right: 60px;
  display: flex;
  gap: 20px;
  z-index: 20;
}

.top-social-icons img {
  width: 20px;
  height: 20px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.top-social-icons img:hover {
  opacity: 0.55;
  cursor: pointer;
}

/* Top-left logo */
.logo-top-left {
  position: absolute;
  top: 40px;
  left: 60px;
  font-family: 'bradley-djr', sans-serif;
  font-size: 5rem;
  color: #fff;
  text-decoration: none;
  z-index: 20;
  transition: opacity 0.3s;
}

.logo-top-left:hover {
  opacity: 0.8;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
}

/* Sticky mini-logo (shows when scrolled) */
.sticky-text-logo {
  position: fixed;
  top: 1rem;
  left: 1.5rem;
  font-family: 'bradley-djr', sans-serif;
  font-size: 3rem;
  color: #fff;
  text-decoration: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.scrolled .sticky-text-logo {
  opacity: 1;
}

/* Inline donation CTA (header area) */
.donate-inline {
  position: absolute;
  top: 160px;
  right: 60px;
  z-index: 20;
  font-family: Menlo, monospace;
}

.donate-inline a {
  font-size: 1rem;
  color: #6dc15b;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.donate-inline a:hover {
  opacity: 0.6;
}

/* Default mobile donate link = hidden on desktop */
.mobile-donate {
  display: none;
  color: #6dc15b;
  font-family: Menlo, monospace;
  text-decoration: none;
  opacity: 0.9;
}

/* ========================================
   HOMEPAGE HERO + SHARED HOMEPAGE ELEMENTS
======================================== */

/* Homepage hero container */
.homepage .landing-page {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url('https://raw.githubusercontent.com/darks0ft/website/main/assets/Darksoft%20Promo%20Graphic.jpg')
    center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 18vh;
}

/* Ensure hero spans truly full browser width */
.hero.landing-page {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  height: 100vh !important;
  width: 100vw !important;
  max-width: 100vw !important;
  padding-bottom: 18vh;
  margin: 0 !important;
}

/* Prevent any parent from limiting width */
body.homepage,
.homepage main,
.homepage section.hero,
.homepage .hero {
  width: 100vw !important;
  max-width: 100% !important;
  padding: 0;
}

/* Hero title (text logo if used) */
.homepage .landing-title {
  font-family: 'bradley-djr', sans-serif;
  font-size: 20vh;
  font-weight: normal;
  margin: 0;
  padding: 0;
  line-height: 1;
  color: #fff;
  transition: color 0.5s ease-out;
}

.homepage .landing-title img {
  max-width: 200px;
  height: auto;
  margin-bottom: 2.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Hero logo image */
.hero-logo {
  margin: 3rem 0;
  position: relative;
  z-index: 2;
  width: 180px;
  height: auto;
  filter: brightness(1.2);
  opacity: 0.95;
}

/* Down arrow hint */
.homepage .scroll-down-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  animation: fadeIn 1s ease-in 0.1s forwards,
             pulseWiggle 2s ease-in-out infinite 1.1s;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.85; }
}

@keyframes pulseWiggle {
  0%   { transform: translateX(-50%) translateY(0);    opacity: 0.85; }
  50%  { transform: translateX(-50%) translateY(-8px); opacity: 0.6; }
  100% { transform: translateX(-50%) translateY(0);    opacity: 0.85; }
}

/* Generic hero (non-home usage) */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('/assets/Darksoft Promo Graphic.jpg') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

/* Slight dark overlay */
.hero-overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

/* ========================================
   GENERIC SOCIAL ICONS & PROFILE IMAGE
======================================== */

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-icons img {
  width: 28px;
  height: 28px;
  transition: opacity 0.1s ease;
  cursor: pointer;
}

.social-icons img:hover {
  opacity: 0.6;
}

/* Shared profile image style */
#profile-image {
  display: block;
  margin: 30px auto;
  width: 300px;
  border-radius: 10px;
}

/* ========================================
   SECTION HEADINGS
======================================== */

section h2 {
  position: relative;
  font-family: 'bradley-djr', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

/* Gradient underline on section headings */
section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(109, 193, 91, 0),
    #6dc15b,
    rgba(109, 193, 91, 0)
  );
}

/* ========================================
   NEWSLETTER BOX (Mailchimp)
======================================== */

#mc_embed_signup {
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #333;
  border-radius: 15px;
  margin: 40px auto;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  animation: glowColors 6s infinite alternate;
}

@keyframes glowColors {
  0%   { box-shadow: 0 0 20px hsl(0, 50%, 75%); }
  20%  { box-shadow: 0 0 20px hsl(40, 50%, 75%); }
  40%  { box-shadow: 0 0 20px hsl(80, 50%, 75%); }
  60%  { box-shadow: 0 0 20px hsl(160, 50%, 75%); }
  80%  { box-shadow: 0 0 20px hsl(240, 50%, 75%); }
  100% { box-shadow: 0 0 20px hsl(320, 50%, 75%); }
}

#mc_embed_signup input[type="email"] {
  width: 80%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #555;
  margin-bottom: 10px;
  background-color: #2a2a2a;
  color: #fff;
}

#mc_embed_signup .button {
  background-color: hsl(340, 50%, 70%);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

#mc_embed_signup .button:hover {
  filter: brightness(1.2);
}

#mc_embed_signup .signup-description {
  margin-bottom: 1.5rem;
}

/* ========================================
   MERCH GALLERY (UNIFIED)
======================================== */

.merch-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 2rem;
  align-items: start;
}

.merch-gallery > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
}

.merch-gallery img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.merch-description {
  margin-top: 0.7rem;
  font-size: 1rem;
  color: #ccc;
  text-align: center;
}

/* ========================================
   TOUR (SONGKICK WIDGET)
======================================== */

.songkick-widget-container {
  margin-top: 1.5rem;
}

.songkick-widget-container a {
  text-decoration: underline;
  color: #cccccc;
}

.fallback-message {
  color: #ccc;
  margin-top: 15px;
  font-size: 0.95rem;
}

/* ========================================
   RELEASES GRID (Album Cards)
======================================== */

#releases {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.release-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 2rem;
}

.release-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 1rem;
  width: 250px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.release-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 0.6rem;
}

.release-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.release-card p {
  font-size: 0.95rem;
  margin: 0.3rem 0;
  line-height: 1.4;
}

.release-card a {
  color: #cccccc;
  text-decoration: underline;
  transition: color 0.3s;
}

.release-card a:hover {
  color: #999999;
}

/* ========================================
   LYRICS PAGES (INDIVIDUAL)
======================================== */

.lyric-page-container {
  max-width: 700px;
  margin: 3rem auto 4rem;
  padding: 0 1rem;
  text-align: center;
}

/* Album art */
.album-art {
  width: 260px;
  border-radius: 12px;
  display: block;
  margin: 0 auto 1.5rem;
}

/* Track title */
.track-title {
  font-family: 'bradley-djr', sans-serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/* Track metadata */
.track-meta {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Lyrics block */
.lyrics {
  font-size: 1.15rem;
  line-height: 1.45;
  margin: 0 auto 2rem;
  text-align: center;
  white-space: normal;
}

.lyrics br {
  line-height: 2.1;
}

/* Stream Now box */
.stream-now-box {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 1.25rem;
  margin: 1.8rem auto 2.5rem;
  max-width: 520px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.stream-now-box h3 {
  font-family: 'menlo', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.stream-subtitle {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Vertical list of stream links */
.stream-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stream-links a {
  color: #cccccc;
  text-decoration: underline;
  transition: color 0.3s;
  font-size: 1rem;
}

.stream-links a:hover {
  color: #999999;
}

/* Video box (simple variant) */
.video-box {
  background-color: #3a3a3a;
  padding: 1.6rem;
  border-radius: 10px;
  margin: 3rem auto 0;
  max-width: 700px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.video-title {
  font-size: 1.4rem;
  font-family: 'menlo', sans-serif;
  margin-bottom: 1.4rem;
  letter-spacing: 0.04rem;
}

.video-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Alternate video embed style */
.video-embed {
  margin: 2.5rem auto 3rem;
  max-width: 700px;
}

.video-embed h3 {
  font-family: 'menlo', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 0 auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* SEO line at bottom (optional) */
.lyrics-footer-seo {
  color: #999;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* If needed to nudge album art down under header */
.lyrics-body .album-art {
  margin-top: calc(120px + 3rem);
}

/* Prev / next nav (if used) */
.lyric-nav {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.lyric-nav a {
  margin: 0 1rem;
}

/* Back button on lyrics pages */
.lyrics-back-button {
  display: inline-block;
  margin: 1rem 0 2rem;
  padding: 0.4rem 0.8rem;
  font-family: Menlo, monospace;
  font-size: 0.95rem;
  color: #6dc15b;
  background: #111;
  border: 1px solid #6dc15b;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.2s ease;
}

.lyrics-back-button:hover {
  background: #6dc15b;
  color: #000;
  border-color: #6dc15b;
  opacity: 0.85;
}

/* ========================================
   LYRICS INDEX PAGE
======================================== */

.lyrics-index {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 220px auto 0; /* pushed down under nav/logo */
  text-align: center;
}

.lyrics-album-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.lyrics-album-card {
  display: flex;
  gap: 1.5rem;
  background: #1e1e1e;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  align-items: flex-start;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lyrics-album-art {
  width: 120px;
  border-radius: 8px;
}

.lyrics-album-info {
  flex: 1;
  text-align: left;
}

.lyrics-album-info h3 {
  font-size: 2.2rem;
  font-family: 'bradley-djr', sans-serif;
  margin-bottom: 0.6rem;
}

.lyrics-year {
  font-size: 1.5rem;
  opacity: 0.7;
}

.lyrics-track-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lyrics-track-list li {
  margin: 4px 0;
}

.lyrics-track-list a {
  color: #cccccc;
  text-decoration: underline;
}

.lyrics-track-list a:hover {
  color: #6dc15b;
}

/* ========================================
   PRESS BLOCKQUOTES
======================================== */

#press blockquote {
  border-left: 3px solid #6dc15b;
  padding-left: 1rem;
  margin: 1rem auto;
  max-width: 800px;
  text-align: left;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.45;
}

#press blockquote a {
  color: #cccccc;
  text-decoration: underline;
}

#press blockquote a:hover {
  color: #6dc15b;
}

/* ========================================
   CONTACT SECTION
======================================== */

#contact a {
  color: #6dc15b;
  text-decoration: underline;
}

#contact a:hover {
  opacity: 0.7;
}

/* ========================================
   NEWSLETTER POPUP MODAL
======================================== */

.newsletter-modal.hidden {
  display: none;
}

.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(3px);
}

.newsletter-content {
  position: relative;
  z-index: 2;
  background: #1e1e1e;
  border-radius: 14px;
  padding: 2rem 2.5rem;
  max-width: 450px;
  width: 90%;
  color: #fff;
  text-align: center;
  animation: popupSlide 0.3s ease-out;
  border: 1px solid #333;
  box-shadow: 0 0 25px rgba(0,0,0,0.7);
}

@keyframes popupSlide {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.newsletter-image {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.newsletter-title {
  font-family: 'bradley-djr', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.newsletter-body {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px;
  background-color: #2a2a2a;
  border: 1px solid #555;
  border-radius: 6px;
  color: #fff;
  margin-bottom: 0.8rem;
}

.newsletter-button {
  width: 100%;
  background-color: hsl(340, 50%, 70%);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.newsletter-button:hover {
  filter: brightness(1.2);
}

.newsletter-small {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Close (X) button */
.newsletter-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
}

.newsletter-close:hover {
  opacity: 1;
}

/* ========================================
   GLOBAL FOOTER — MATCH HOMEPAGE
======================================== */

footer {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #000;
  color: #6dc15b;
  font-family: Menlo, monospace;
}

/* Rainbow logo link */
footer .footer-title a {
  text-decoration: none !important;
}

/* “Darksoft” footer title */
footer .footer-title {
  font-family: 'bradley-djr', sans-serif;
  font-size: 3rem;
  margin-top: 1rem;
}

/* Footer navigation links */
footer .footer-links a {
  color: #6dc15b;
  text-decoration: none;
  font-family: Menlo, monospace;
  margin: 0 0.5rem;
}

footer .footer-links a:hover {
  opacity: 0.6;
}

/* Inline donate paragraph in footer */
.footer-donate {
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: Menlo, monospace;
}

.footer-donate a {
  color: #6dc15b;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.footer-donate a:hover {
  opacity: 0.6;
}

/* Copyright */
footer p:last-of-type {
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.75;
  margin-top: 1rem;
}

/* Footer social icons */
.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 1.4rem 0 1rem;
  padding: 0.5rem 0;
}

.footer-social-icons img {
  width: 24px;
  height: 24px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-social-icons img:hover {
  opacity: 0.55;
  cursor: pointer;
}

.footer-wave {
  text-align: center;
  margin-bottom: 1rem;
}

.footer-wave img {
  width: 60px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.4));
}

/* ========================================
   RESPONSIVE / MOBILE
======================================== */

@media (max-width: 768px) {
  /* Mobile logo */
  .logo-top-left {
    font-size: 3rem;
    width: 18px;
    height: 18px;
    top: 20px;
    left: 20px;
  }

  /* Hamburger visible on mobile */
  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #6dc15b;
    background: none;
    border: none;
    z-index: 40;
    cursor: pointer;
  }

  /* Hide nav + social by default on mobile */
  .sticky-nav-bar,
  .top-social-icons {
    display: none;
  }

  /* Slide-out nav when menu-open on body */
  .menu-open .sticky-nav-bar {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background: #000;
    padding: 1rem;
    border: 1px solid #6dc15b;
    z-index: 30;
  }

  .menu-open .top-social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 1rem;
  }

  /* Show the mobile donate link */
  .mobile-donate {
    display: block;
    margin-top: 1rem;
    padding: 0.8rem 0;
  }

  /* Add large tappable areas to menu links */
  .menu-open .sticky-nav-bar a {
    padding: 0.8rem 0;
    font-size: 1.2rem;
  }

  /* Donation CTA mobile position */
  .donate-inline {
    top: 260px;
    right: 20px;
  }

  /* Hide floating desktop donate CTA on mobile */
  .donate-inline {
    display: none !important;
  }

  .hero {
    height: 65vh;
  }

  .hero-logo {
    width: 180px;
  }

  .section-image {
    width: 85%;
  }

  .footer-social-icons {
    gap: 14px;
    margin: 1.5rem 0;
  }

  .footer-social-icons img {
    width: 22px;
    height: 22px;
  }

  /* Force mobile menu visibility behaviors */
  body.menu-open .sticky-nav-bar {
    display: flex !important;
  }

  body.menu-open .top-social-icons {
    display: none !important;
  }
}

/* Shared section images desktop+ */
.section-image {
  width: 300px;
  max-width: 90%;
  border-radius: 12px;
  margin: 0 auto 1.5rem;
  display: block;
}

/* Homepage-specific donate placement (desktop) */
.homepage .donate-inline {
  position: absolute;
  top: 140px !important;
  right: 60px !important;
  z-index: 25;
}

/* Hide donate on homepage by default; show on desktop */
body.homepage .donate-inline {
  display: none;
}

@media (min-width: 769px) {
  body.homepage .donate-inline {
    display: block;
  }
}
