/* ===== CSS RESET & VARIABLES ===== */
:root {
  --primary-color: #3e3a34;
  --accent-color: #b8a48c;
  --background-dark: #ede7de;
  --text-light: #fcf8f3;
  --border-radius: 5px;
  --transition: all 0.3s ease;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  --space-section: 5rem;
  
  /* Lynchian color palette - light version */
  --dream-blue: #c8d4d6;
  --dream-red: #b87a7a;
  --dream-gold: #d4c49c;
  --dream-fog: rgba(200, 195, 190, 0.2);
  --dream-shadow: rgba(20, 15, 10, 0.08);
}

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

body {
  background-color: #e8e3dc33;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: #3e3a34;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============================================================ */
/* ===== BACKGROUND IMAGE UNDERLAY - bridgeovermyhead.png ===== */
/* ============================================================ */
.bg-underlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image: url('images/bridgeovermyhead.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  animation: bgDrift 25s ease-in-out infinite alternate;
}

@keyframes bgDrift {
  0% { transform: scale(1) translate(0, 0); opacity: 0.25; }
  50% { transform: scale(1.05) translate(1%, -0.5%); opacity: 0.35; }
  100% { transform: scale(0.98) translate(-0.5%, 0.5%); opacity: 0.28; }
}

/* ===== ATMOSPHERIC FOG OVERLAY - LIGHT ===== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(210, 205, 195, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(200, 195, 185, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(190, 185, 175, 0.08) 0%, transparent 40%);
  animation: fogDrift 20s ease-in-out infinite alternate;
}

@keyframes fogDrift {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  50% { transform: scale(1.05) translate(2%, -1%); opacity: 1; }
  100% { transform: scale(0.98) translate(-1%, 1%); opacity: 0.7; }
}

/* ===== SURREAL FLOATING PARTICLES - LIGHT ===== */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background-image: 
    radial-gradient(2px 2px at 10% 20%, rgba(180, 175, 165, 0.15), transparent),
    radial-gradient(2px 2px at 30% 60%, rgba(180, 175, 165, 0.1), transparent),
    radial-gradient(1px 1px at 50% 30%, rgba(180, 175, 165, 0.2), transparent),
    radial-gradient(2px 2px at 70% 80%, rgba(180, 175, 165, 0.08), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(180, 175, 165, 0.15), transparent),
    radial-gradient(2px 2px at 15% 85%, rgba(180, 175, 165, 0.1), transparent),
    radial-gradient(1px 1px at 60% 10%, rgba(180, 175, 165, 0.12), transparent),
    radial-gradient(2px 2px at 45% 50%, rgba(180, 175, 165, 0.06), transparent),
    radial-gradient(1px 1px at 80% 70%, rgba(180, 175, 165, 0.18), transparent),
    radial-gradient(2px 2px at 25% 40%, rgba(180, 175, 165, 0.08), transparent);
  background-size: 100% 100%;
  animation: particleDrift 30s linear infinite;
}

@keyframes particleDrift {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(1%, -0.5%) scale(1.02); opacity: 0.8; }
  100% { transform: translate(-0.5%, 0.5%) scale(0.98); opacity: 0.5; }
}

/* ===== FONT STYLES ===== */
h1, h2, h3, h4, h5, h6,
.band-name,
.section-title,
.hero-content .band-name,
.menu-links li a {
  font-family: 'Noto Serif Display', serif;
  font-weight: 400;
}

/* ===== MAIN CONTAINER ===== */
.site {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 0;
  background-color: rgba(246, 242, 235, 0.85);
  backdrop-filter: blur(2px);
  position: relative;
  min-height: 100vh;
  z-index: 2;
  box-shadow: 0 0 80px rgba(10, 10, 10, 0.06);
}

/* ============================================================ */
/* ===== BLACK LODGE ZIGZAG PATTERN - MORE PROMINENT ===== */
/* ============================================================ */
.black-lodge-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
  overflow: hidden;
}

.black-lodge-bg .zigzag-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 40px,
      rgba(80, 75, 70, 0.35) 40px,
      rgba(80, 75, 70, 0.35) 44px,
      transparent 44px,
      transparent 80px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 40px,
      rgba(80, 75, 70, 0.35) 40px,
      rgba(80, 75, 70, 0.35) 44px,
      transparent 44px,
      transparent 80px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(160, 155, 145, 0.2) 0px,
      rgba(160, 155, 145, 0.2) 20px,
      rgba(200, 195, 185, 0.35) 20px,
      rgba(200, 195, 185, 0.35) 40px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.03) 0px,
      rgba(0, 0, 0, 0.03) 40px,
      rgba(0, 0, 0, 0.06) 40px,
      rgba(0, 0, 0, 0.06) 80px
    );
  background-size: 80px 80px, 80px 80px, 80px 80px, 160px 160px;
  background-position: 0 0, 40px 0, 0 0, 20px 20px;
  mask-image: linear-gradient(to bottom, transparent 5%, black 95%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 5%, black 95%);
  transform: perspective(800px) rotateX(55deg) scale(2.2);
  transform-origin: bottom center;
  opacity: 0.9;
  animation: zigzagPulse 12s ease-in-out infinite alternate;
}

@keyframes zigzagPulse {
  0% { 
    opacity: 0.7; 
    transform: perspective(800px) rotateX(55deg) scale(2.2);
  }
  30% { 
    opacity: 1; 
    transform: perspective(800px) rotateX(57deg) scale(2.3);
  }
  70% { 
    opacity: 0.9; 
    transform: perspective(800px) rotateX(53deg) scale(2.15);
  }
  100% { 
    opacity: 0.75; 
    transform: perspective(800px) rotateX(56deg) scale(2.1);
  }
}

/* ===== SURREAL DREAMLIKE BORDER GLOW - LIGHT ===== */
.site::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 4px;
  z-index: -1;
  background: linear-gradient(135deg, 
    rgba(184, 164, 140, 0.08) 0%,
    rgba(200, 210, 215, 0.05) 30%,
    rgba(184, 164, 140, 0.06) 60%,
    rgba(180, 160, 160, 0.04) 100%
  );
  pointer-events: none;
  animation: borderGlow 12s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% { opacity: 0.3; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

/* ----- left hamburger (fixed) - overlays hero ----- */
.hamburger-nav {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.hamburger-btn {
  background: rgba(217, 205, 188, 0.85);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(62, 58, 52, 0.15);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.hamburger-btn:hover {
  background: rgba(203, 188, 172, 0.95);
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.hamburger-btn:active {
  transform: scale(0.95);
}

/* ===== FANTASY 8-DASH STAR POINTING INWARD ===== */
.star-icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 8 dashes arranged in a perfect circle, each pointing toward the center */
.star-dash {
  position: absolute;
  width: 4px;
  height: 12px;
  background: #3e3a34;
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  left: 50%;
  top: 50%;
  transform-origin: center center;
}

/* Position each dash at 45° intervals around the circle, pointing inward */
.star-dash:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-14px) rotate(180deg);
}
.star-dash:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg) translateY(-14px) rotate(180deg);
}
.star-dash:nth-child(3) {
  transform: translate(-50%, -50%) rotate(90deg) translateY(-14px) rotate(180deg);
}
.star-dash:nth-child(4) {
  transform: translate(-50%, -50%) rotate(135deg) translateY(-14px) rotate(180deg);
}
.star-dash:nth-child(5) {
  transform: translate(-50%, -50%) rotate(180deg) translateY(-14px) rotate(180deg);
}
.star-dash:nth-child(6) {
  transform: translate(-50%, -50%) rotate(225deg) translateY(-14px) rotate(180deg);
}
.star-dash:nth-child(7) {
  transform: translate(-50%, -50%) rotate(270deg) translateY(-14px) rotate(180deg);
}
.star-dash:nth-child(8) {
  transform: translate(-50%, -50%) rotate(315deg) translateY(-14px) rotate(180deg);
}

/* ===== ACTIVE/OPEN STATE - Transform into an "X" ===== */
.hamburger-btn.active .star-dash {
  background: #fcf8f3;
  transform: translate(-50%, -50%) rotate(0deg) translateY(0px) rotate(0deg) scale(0.3);
  opacity: 0.4;
}

.hamburger-btn.active .star-dash:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg) translateY(0px) rotate(0deg) scale(0.3);
  opacity: 0.4;
}
.hamburger-btn.active .star-dash:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg) translateY(0px) rotate(0deg) scale(0.3);
  opacity: 0.4;
}
.hamburger-btn.active .star-dash:nth-child(3) {
  transform: translate(-50%, -50%) rotate(90deg) translateY(0px) rotate(0deg) scale(0.3);
  opacity: 0.4;
}
.hamburger-btn.active .star-dash:nth-child(4) {
  transform: translate(-50%, -50%) rotate(135deg) translateY(0px) rotate(0deg) scale(0.3);
  opacity: 0.4;
}
.hamburger-btn.active .star-dash:nth-child(5) {
  transform: translate(-50%, -50%) rotate(180deg) translateY(0px) rotate(0deg) scale(0.3);
  opacity: 0.4;
}
.hamburger-btn.active .star-dash:nth-child(6) {
  transform: translate(-50%, -50%) rotate(225deg) translateY(0px) rotate(0deg) scale(0.3);
  opacity: 0.4;
}
.hamburger-btn.active .star-dash:nth-child(7) {
  transform: translate(-50%, -50%) rotate(270deg) translateY(0px) rotate(0deg) scale(0.3);
  opacity: 0.4;
}
.hamburger-btn.active .star-dash:nth-child(8) {
  transform: translate(-50%, -50%) rotate(315deg) translateY(0px) rotate(0deg) scale(0.3);
  opacity: 0.4;
}

.hamburger-btn.active {
  border-color: rgba(184, 164, 140, 0.4);
  box-shadow: 0 0 30px rgba(184, 164, 140, 0.15);
  background: rgba(62, 58, 52, 0.8);
}

.hamburger-btn::after {
  content: '✦';
  position: absolute;
  font-size: 0.6rem;
  color: rgba(62, 58, 52, 0.15);
  bottom: -0.2rem;
  right: -0.2rem;
  transition: all 0.4s ease;
}

.hamburger-btn.active::after {
  transform: rotate(180deg) scale(1.3);
  color: rgba(184, 164, 140, 0.4);
}

/* ===== SIDE MENU - Clean, transparent, no X ===== */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 80vw;
  height: 100%;
  background: transparent;
  backdrop-filter: none;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6rem 2rem 2rem;
  display: flex;
  align-items: center;
}

.side-menu.open {
  transform: translateX(0);
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.menu-links li a {
  font-family: 'Noto Serif Display', serif;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fcf8f3 !important;
  text-decoration: none;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6) !important;
  border-bottom: 2px solid transparent;
  transition: border 0.5s ease, color 0.3s ease, padding 0.3s ease;
  padding-bottom: 0.3rem;
  display: inline-block;
  position: relative;
  opacity: 1 !important;
}

.menu-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(252, 248, 243, 0.6);
  transition: width 0.3s ease;
}

.menu-links li a:hover {
  color: #fcf8f3 !important;
  padding-left: 0.5rem;
}

.menu-links li a:hover::after {
  width: 100%;
}

/* Overlay behind the side menu */
.side-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.side-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ----- sections ----- */
.section {
  padding: 3.5rem 0 2.5rem;
  scroll-margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: 'Noto Serif Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5f5343;
  border-bottom: 2px solid #dacfc1;
  padding-bottom: 0.6rem;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '✦';
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  font-size: 1.2rem;
  color: rgba(184, 164, 140, 0.3);
}

.section-anchor {
  scroll-margin-top: 5rem;
  margin: var(--space-section) 0;
  padding-top: var(--space-lg);
}

.section-anchor h2 {
  margin-bottom: var(--space-xl);
  text-align: center;
}

/* ===== HERO - FULL WIDTH, NO WHITE SIDES - FIXED ===== */
.hero-section-full {
  padding: 0;
  margin: 0;
  scroll-margin-top: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 2;
  overflow: hidden;
}

.hero-full-bleed {
  width: 100%;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(30, 25, 20, 0.1) 0%,
    rgba(30, 25, 20, 0.3) 60%,
    rgba(30, 25, 20, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fcf8f3;
  width: 90%;
  max-width: 780px;
  padding: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.band-name {
  font-family: 'Noto Serif Display', serif;
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  color: #fcf8f3;
  text-shadow: 0 0 40px rgba(184, 164, 140, 0.15);
  animation: nameGlow 8s ease-in-out infinite alternate;
}

@keyframes nameGlow {
  0% { text-shadow: 0 0 20px rgba(184, 164, 140, 0.1); }
  100% { text-shadow: 0 0 60px rgba(184, 164, 140, 0.2), 0 0 100px rgba(184, 164, 140, 0.08); }
}

.tagline {
  font-size: 1.4rem;
  color: #ede7de;
  margin-bottom: 1.5rem;
  font-weight: 350;
  letter-spacing: 0.04em;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.hero-content .news-badge {
  border: 1px solid rgba(255, 248, 240, 0.2);
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-size: 0.95rem;
  color: #fcf8f3;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.hero-content .hero-news {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1rem;
  color: #ede7de;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.hero-content .hero-news p {
  margin: 0;
}

/* ===== HERO SOCIAL ICONS (center bottom) ===== */
.hero-social-icons {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: auto;
  max-width: 98vw;
  flex-shrink: 0;
}

.hero-social-icons ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin: 0 auto;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
  flex-wrap: nowrap;
  max-width: 100%;
  justify-content: center;
  align-items: center;
}

.hero-social-icons .social-icon {
  color: #fcf8f3;
  font-size: clamp(1rem, 3vw, 1.5rem);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 8vw, 48px);
  height: clamp(32px, 8vw, 48px);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-social-icons .social-icon:hover {
  transform: translateY(-2px);
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding-top: 3rem;
  position: relative;
  z-index: 2;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  background: #dad0c2;
}

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

.video-caption {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #6b5e4e;
  text-align: center;
  letter-spacing: 0.03em;
}

/* ===== VIDEO CAROUSEL ===== */
.video-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.video-carousel-track {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  width: 100%;
}

.video-carousel-track::-webkit-scrollbar {
  display: none;
}

.video-carousel-slide {
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  box-sizing: border-box;
  min-width: 0 !important;
}

.video-carousel-slide iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
}

/* ===== CAROUSEL ARROWS - WHITE BG, BEIGE BORDER & ARROW ===== */
.carousel-arrow {
  background: #ffffff;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  width: 50px;
  aspect-ratio: 1/1.6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  z-index: 5;
  border-radius: var(--border-radius);
  flex-shrink: 0;
  align-self: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.carousel-arrow:hover:not(:disabled) {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fcf8f3;
  box-shadow: 0 4px 16px rgba(184, 164, 140, 0.2);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  background: #f0ebe4;
  border-color: #d5c8b8;
  color: #d5c8b8;
  box-shadow: none;
}

.carousel-arrow:disabled:hover {
  transform: none;
  background: #f0ebe4;
  border-color: #d5c8b8;
  color: #d5c8b8;
  box-shadow: none;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.2rem;
}

.card {
  background: #ede7de;
  padding: 1.2rem 1rem;
  border-radius: 18px;
  font-size: 1rem;
  color: #3e3a34;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(184, 164, 140, 0.1);
}

.card:hover {
  background: #e2d8cb;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border-color: rgba(184, 164, 140, 0.2);
}

.card-date {
  display: inline-block;
  font-weight: 500;
  background: #d5c8b8;
  padding: 0.1rem 0.7rem;
  border-radius: 30px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  letter-spacing: 0.04em;
}

.card i {
  margin-right: 8px;
  color: #6f6252;
  width: 1.4rem;
}

/* ===== ABOUT SECTION - TALLER PORTRAIT PHOTOS ===== */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  max-width: 2000px;
  width: 100%;
  align-items: start;
  background: linear-gradient(135deg, #ede7de 0%, #e8dfd3 100%);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--border-radius);
  border-bottom: 3px solid var(--accent-color);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.03);
}

.about-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(184, 164, 140, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(200, 210, 215, 0.02) 0%, transparent 50%);
  pointer-events: none;
  border-radius: var(--border-radius);
}

.about-photos {
  width: 100%;
  position: relative;
  z-index: 2;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
  height: 100%;
}

.about-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--border-radius);
  transition: all 0.4s ease;
  cursor: pointer;
  filter: saturate(0.9) contrast(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.about-photo:hover {
  transform: scale(1.03);
  filter: saturate(1) contrast(1.1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.about-bio {
  width: 100%;
  position: relative;
  z-index: 2;
}

.about-bio p {
  margin-bottom: var(--space-md);
  line-height: 1.6;
  font-weight: bold;
  text-align: left;
  color: #3e3a34;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

/* ============================================================ */
/* ===== CONTACT SECTION - ORIGINAL STYLING WITH BACKGROUND ===== */
/* ============================================================ */
.contact-section {
  padding: 0;
  margin: var(--space-section) 0 0;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  z-index: 2;
}

.contact-bg-wrapper {
  background-image: url('images/Auntie Mike Studio Shoot March 2025 - 3.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  padding: 4rem 2rem 3rem;
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Dark overlay for readability */
.contact-bg-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 25, 20, 0.55);
  z-index: 0;
}

.contact-bg-wrapper > * {
  position: relative;
  z-index: 1;
}

/* Light section title for dark background */
.section-title-light {
  color: #fcf8f3;
  border-bottom-color: rgba(252, 248, 243, 0.3);
}

/* ===== CONTACT FORM - DAYS ON PARADE STYLE ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.contact-field {
  border: none;
  padding: 0;
  margin: 0;
}

.form-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0;
}

.form-group {
  text-align: left;
  margin-bottom: var(--space-md);
}

.form-group:last-of-type {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  color: #fcf8f3;
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.required-asterisk {
  color: #ff6b6b;
}

.form-input,
.form-textarea {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-family: inherit;
  padding: 0.9rem 1rem;
  width: 100%;
  color: #fcf8f3;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.form-textarea {
  height: 120px;
  resize: vertical;
  margin-bottom: 0;
  font-family: inherit;
}

.contact-form .btn {
  margin-top: 0.5rem;
  margin-bottom: 0;
  padding: 0.9rem 2.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.btn {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  color: var(--primary-color);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  padding: 1em 2em;
  transition: var(--transition);
  margin: var(--space-sm) 0;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fcf8f3;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fcf8f3;
  backdrop-filter: blur(4px);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fcf8f3;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: translateY(0);
}

/* ============================================================ */
/* ===== SPOTIFY EMBED PLAYER - FIXED FOR MOBILE ===== */
/* ============================================================ */
.spotify-embed-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 1rem auto 1.5rem;
  display: flex;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.spotify-embed-wrapper iframe {
  width: 100% !important;
  height: 152px;
  border-radius: 12px !important;
  max-width: 100%;
}

/* ============================================================ */
/* ===== FOOTER WITH SOCIAL ICONS - FULL WIDTH ===== */
/* ============================================================ */
.footer-with-bg {
  margin-top: 0 !important;
  border-top: none !important;
  background: #3e3a34;
  padding: 2rem 0 1.5rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  z-index: 2;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  color: rgba(252, 248, 243, 0.7);
}

/* Footer Social Icons */
.footer-social-icons {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.footer-social-icons ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-social-icons li {
  margin: 0;
}

.footer-social-icons .social-icon {
  color: rgba(252, 248, 243, 0.7);
  font-size: 1.6rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-social-icons .social-icon:hover {
  color: #fcf8f3;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Footer copyright text */
.footer-copyright {
  font-size: 0.9rem;
  color: rgba(252, 248, 243, 0.5);
  margin-top: 0.5rem;
}

/* ============================================================ */
/* ===== PHOTO MODAL ===== */
/* ============================================================ */
.photo-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
}

.photo-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content .modal-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* Close button - plain text, no circle */
.modal-close {
  position: absolute;
  top: -3.5rem;
  right: -0.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.8rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 2001;
  font-weight: 300;
}

.modal-close:hover {
  color: #ffffff;
  transform: scale(1.1);
}

/* Navigation arrows - plain text, no circle */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 3.5rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  transition: all 0.3s ease;
  z-index: 2001;
  line-height: 1;
  font-weight: 300;
}

.modal-nav:hover {
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: -4rem;
}

.modal-next {
  right: -4rem;
}

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

@media screen and (min-width: 769px) {
  .about-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
  }
  
  .video-carousel-slide {
    flex: 0 0 calc(33.333% - var(--space-md) * 2 / 3) !important;
  }
}

@media (max-width: 768px) {
  .site {
    padding: 0 1.2rem 0;
    overflow: hidden;
  }

  .hero-section-full {
    margin: 0;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    overflow: hidden;
  }

  .hero-full-bleed {
    width: 100%;
    overflow: hidden;
  }

  .hero-image-wrapper {
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
    width: 100%;
    overflow: hidden;
  }

  .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  .band-name {
    font-size: 2.8rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .hamburger-nav {
    top: 1rem;
    left: 1rem;
  }
  
  .hamburger-btn {
    width: 2.6rem;
    height: 2.6rem;
    background: rgba(217, 205, 188, 0.85) !important;
    border-color: rgba(62, 58, 52, 0.15) !important;
  }
  
  .hamburger-btn .star-dash {
    background: #3e3a34 !important;
  }
  
  .hamburger-btn.active .star-dash {
    background: #fcf8f3 !important;
  }

  .star-icon {
    width: 22px;
    height: 22px;
  }
  
  .star-dash {
    width: 3px !important;
    height: 10px !important;
  }
  
  .star-dash:nth-child(1),
  .star-dash:nth-child(2),
  .star-dash:nth-child(3),
  .star-dash:nth-child(4),
  .star-dash:nth-child(5),
  .star-dash:nth-child(6),
  .star-dash:nth-child(7),
  .star-dash:nth-child(8) {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-11px) rotate(180deg) !important;
  }
  
  .star-dash:nth-child(2) {
    transform: translate(-50%, -50%) rotate(45deg) translateY(-11px) rotate(180deg) !important;
  }
  .star-dash:nth-child(3) {
    transform: translate(-50%, -50%) rotate(90deg) translateY(-11px) rotate(180deg) !important;
  }
  .star-dash:nth-child(4) {
    transform: translate(-50%, -50%) rotate(135deg) translateY(-11px) rotate(180deg) !important;
  }
  .star-dash:nth-child(5) {
    transform: translate(-50%, -50%) rotate(180deg) translateY(-11px) rotate(180deg) !important;
  }
  .star-dash:nth-child(6) {
    transform: translate(-50%, -50%) rotate(225deg) translateY(-11px) rotate(180deg) !important;
  }
  .star-dash:nth-child(7) {
    transform: translate(-50%, -50%) rotate(270deg) translateY(-11px) rotate(180deg) !important;
  }
  .star-dash:nth-child(8) {
    transform: translate(-50%, -50%) rotate(315deg) translateY(-11px) rotate(180deg) !important;
  }

  .side-menu {
    width: 280px;
    max-width: 80vw;
    padding: 5rem 1.5rem 1.5rem;
  }

  .menu-links li a {
    font-size: 2.2rem;
  }

  .spotify-embed-wrapper {
    max-width: 100%;
    padding: 0;
    margin: 0.75rem auto 1rem;
  }
  
  .spotify-embed-wrapper iframe {
    height: 120px !important;
    width: 100% !important;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .video-container {
    border-radius: 16px;
  }

  .video-carousel-slide {
    flex: 0 0 calc(50% - var(--space-md) / 2) !important;
  }
  
  .video-carousel {
    padding: 0 var(--space-md);
    max-width: 900px;
  }

  .carousel-arrow {
    width: 40px;
    height: 120px;
  }

  .hero-content .news-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }

  .hero-social-icons {
    bottom: 1.5rem;
  }

  .hero-social-icons ul {
    gap: 1rem;
    padding: 0.75rem 1.25rem;
  }

  .hero-social-icons .social-icon {
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: var(--space-xxl);
    padding: var(--space-lg);
  }

  .about-photo {
    height: 280px;
  }

  .about-bio {
    font-size: 0.9rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .contact-section {
    margin: var(--space-section) 0 0;
    left: 0;
    right: 0;
    margin-left: -1.2rem;
    margin-right: -1.2rem;
    width: calc(100% + 2.4rem);
    overflow: hidden;
  }

  .contact-bg-wrapper {
    padding: 3rem 1.2rem 2rem;
    min-height: 400px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-with-bg {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 1.5rem 0 1rem;
  }

  .footer-content {
    padding: 0 1.2rem;
  }

  .footer-social-icons ul {
    gap: 1rem;
  }

  .footer-social-icons .social-icon {
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
  }

  .modal-prev {
    left: -2.5rem;
  }
  
  .modal-next {
    right: -2.5rem;
  }
  
  .modal-close {
    top: -3rem;
    right: -0.25rem;
    font-size: 2.2rem;
  }
  
  .modal-nav {
    font-size: 2.5rem;
  }

  .hero-divider {
    height: 50px;
  }
}

/* ===== MOBILE PHONES (640px and below) ===== */
@media (max-width: 640px) {
  .site {
    padding: 0 0.8rem 0;
  }

  .hero-section-full {
    width: 100%;
    margin: 0;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-image-wrapper {
    height: 60vh;
    min-height: 350px;
  }

  .band-name {
    font-size: 2.2rem;
  }

  .spotify-embed-wrapper {
    padding: 0;
    margin: 0.5rem auto 0.75rem;
  }
  
  .spotify-embed-wrapper iframe {
    height: 100px !important;
    width: 100% !important;
  }

  .video-carousel-slide {
    flex: 0 0 100% !important;
  }
  
  .video-carousel {
    max-width: 100%;
    padding: 0 var(--space-sm);
    margin: var(--space-xs) auto;
    gap: var(--space-xs);
  }
  
  .carousel-arrow {
    width: 35px;
    height: 80px;
    font-size: 1.1rem;
  }

  .contact-section {
    margin-left: -0.8rem;
    margin-right: -0.8rem;
    width: calc(100% + 1.6rem);
  }

  .contact-bg-wrapper {
    min-height: 350px;
    padding: 2rem 0.8rem 1.5rem;
  }

  .footer-with-bg {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 1.2rem 0 0.8rem;
  }

  .footer-content {
    padding: 0 0.8rem;
  }

  .footer-social-icons ul {
    gap: 0.75rem;
  }

  .footer-social-icons .social-icon {
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
  }

  .hero-divider {
    height: 40px;
  }

  .side-menu {
    width: 100%;
    max-width: 100%;
    padding: 5rem 1.5rem 1.5rem;
    align-items: center;
    justify-content: center;
    background: rgba(30, 25, 20, 0.9);
    backdrop-filter: blur(8px);
  }

  .menu-links {
    align-items: center;
    gap: 1.8rem;
  }

  .menu-links li a {
    font-size: 2.5rem;
    text-align: center;
  }

  .menu-links li a::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-links li a:hover {
    padding-left: 0;
  }
}

/* ===== SMALL PHONES (480px and below) ===== */
@media (max-width: 480px) {
  .site {
    padding: 0 0.5rem 0;
  }

  .hero-section-full {
    width: 100%;
    margin: 0;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-image-wrapper {
    height: 55vh;
    min-height: 300px;
  }
  .band-name {
    font-size: 2rem;
  }
  .tagline {
    font-size: 0.9rem;
  }
  .hero-content .hero-news {
    font-size: 0.8rem;
  }

  .spotify-embed-wrapper {
    padding: 0;
    margin: 0.4rem auto 0.6rem;
  }
  
  .spotify-embed-wrapper iframe {
    height: 80px !important;
    width: 100% !important;
  }

  .hero-social-icons {
    bottom: 1rem;
  }

  .hero-social-icons ul {
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
  }

  .hero-social-icons .social-icon {
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
  }

  .about-photo {
    height: 200px;
  }

  .about-container {
    padding: var(--space-md);
  }
  
  .hamburger-btn {
    width: 2.2rem;
    height: 2.2rem;
    background: rgba(217, 205, 188, 0.85) !important;
    border-color: rgba(62, 58, 52, 0.15) !important;
  }
  
  .hamburger-btn .star-dash {
    background: #3e3a34 !important;
  }
  
  .hamburger-btn.active .star-dash {
    background: #fcf8f3 !important;
  }
  
  .star-icon {
    width: 18px;
    height: 18px;
  }
  
  .star-dash {
    width: 2.5px !important;
    height: 8px !important;
  }
  
  .star-dash:nth-child(1),
  .star-dash:nth-child(2),
  .star-dash:nth-child(3),
  .star-dash:nth-child(4),
  .star-dash:nth-child(5),
  .star-dash:nth-child(6),
  .star-dash:nth-child(7),
  .star-dash:nth-child(8) {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-9px) rotate(180deg) !important;
  }
  
  .star-dash:nth-child(2) {
    transform: translate(-50%, -50%) rotate(45deg) translateY(-9px) rotate(180deg) !important;
  }
  .star-dash:nth-child(3) {
    transform: translate(-50%, -50%) rotate(90deg) translateY(-9px) rotate(180deg) !important;
  }
  .star-dash:nth-child(4) {
    transform: translate(-50%, -50%) rotate(135deg) translateY(-9px) rotate(180deg) !important;
  }
  .star-dash:nth-child(5) {
    transform: translate(-50%, -50%) rotate(180deg) translateY(-9px) rotate(180deg) !important;
  }
  .star-dash:nth-child(6) {
    transform: translate(-50%, -50%) rotate(225deg) translateY(-9px) rotate(180deg) !important;
  }
  .star-dash:nth-child(7) {
    transform: translate(-50%, -50%) rotate(270deg) translateY(-9px) rotate(180deg) !important;
  }
  .star-dash:nth-child(8) {
    transform: translate(-50%, -50%) rotate(315deg) translateY(-9px) rotate(180deg) !important;
  }

  .side-menu {
    padding: 4rem 1.2rem 1.2rem;
  }

  .menu-links li a {
    font-size: 2rem;
  }

  .contact-section {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    width: calc(100% + 1rem);
  }

  .contact-bg-wrapper {
    min-height: 300px;
    padding: 1.5rem 0.5rem 1rem;
  }

  .footer-with-bg {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 1rem 0 0.6rem;
  }

  .footer-content {
    padding: 0 0.5rem;
  }

  .section-title-light {
    font-size: 1.4rem;
  }

  .footer-social-icons ul {
    gap: 0.5rem;
  }

  .footer-social-icons .social-icon {
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
  }

  .hero-divider {
    height: 35px;
  }

  .modal-prev {
    left: -1.8rem;
  }
  
  .modal-next {
    right: -1.8rem;
  }
  
  .modal-close {
    top: -2.5rem;
    right: -0.1rem;
    font-size: 1.8rem;
  }
  
  .modal-nav {
    font-size: 2rem;
  }
}

@media (max-width: 360px) {
  .site {
    padding: 0 0.3rem 0;
  }

  .hero-section-full {
    width: 100%;
    margin: 0;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-image-wrapper {
    height: 50vh;
    min-height: 250px;
  }

  .band-name {
    font-size: 1.6rem;
  }

  .spotify-embed-wrapper iframe {
    height: 70px !important;
  }

  .about-photo {
    height: 160px;
  }

  .side-menu {
    width: 100%;
    max-width: 100%;
    padding: 3.5rem 1rem 1rem;
  }

  .menu-links li a {
    font-size: 1.8rem;
  }

  .contact-bg-wrapper {
    min-height: 280px;
    padding: 1rem 0.5rem 0.8rem;
  }

  .footer-with-bg {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0.8rem 0 0.5rem;
  }

  .footer-content {
    padding: 0 0.3rem;
  }

  .hero-social-icons ul {
    gap: 0.4rem;
    padding: 0.4rem 0.5rem;
  }

  .hero-social-icons .social-icon {
    font-size: 0.8rem;
    width: 26px;
    height: 26px;
  }

  .footer-social-icons ul {
    gap: 0.3rem;
  }

  .footer-social-icons .social-icon {
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
  }

  .carousel-arrow {
    width: 28px;
    font-size: 0.8rem;
    height: 60px;
  }

  .hero-divider {
    height: 30px;
  }

  .contact-section {
    margin-left: -0.3rem;
    margin-right: -0.3rem;
    width: calc(100% + 0.6rem);
  }
}