/* ============================================================
   JUST A CHICKEN - Punk Rock Band Website
   Main Stylesheet
   Designed by Autom84You — https://autom84you.com
   ============================================================ */

/* ------------------------------------------------------------
   1. RESET & BASE STYLES
   ------------------------------------------------------------ */

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

:root {
  /* Colors */
  --black: #0a0a0a;
  --dark: #141414;
  --darker: #1a1a1a;
  --gray: #2a2a2a;
  --light-gray: #888;
  --white: #f5f0e8;
  --cream: #e8dcc8;
  --red: #e31c25;
  --red-dark: #b51219;
  --red-glow: #ff2d2d;
  --orange: #ff6b00;
  --yellow: #ffcc00;
  --pink: #ff3366;

  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-punk: 'Permanent Marker', cursive;
  --font-body: 'Special Elite', cursive;

  /* Spacing */
  --nav-height: 80px;
  --container-max: 1200px;
  --section-pad: 100px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-glow);
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}

::selection {
  background: var(--red);
  color: var(--white);
}

/* Section Title */
.section-title {
  font-family: var(--font-punk);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--white);
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--red);
  margin: 15px auto 0;
}

/* ------------------------------------------------------------
   2. FLOATING FEATHERS ANIMATION
   ------------------------------------------------------------ */

.feathers-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}

.feather {
  position: absolute;
  top: -50px;
  width: 20px;
  height: 20px;
  background: var(--white);
  opacity: 0.08;
  clip-path: polygon(50% 0%, 80% 30%, 100% 50%, 80% 100%, 50% 80%, 20% 100%, 0% 50%, 20% 30%);
  animation: featherFall linear infinite;
  will-change: transform;
}

.feather:nth-child(1) {
  left: 5%;
  animation-duration: 12s;
  animation-delay: 0s;
  width: 15px;
  height: 15px;
}

.feather:nth-child(2) {
  left: 15%;
  animation-duration: 18s;
  animation-delay: 2s;
  width: 22px;
  height: 22px;
}

.feather:nth-child(3) {
  left: 30%;
  animation-duration: 15s;
  animation-delay: 4s;
}

.feather:nth-child(4) {
  left: 45%;
  animation-duration: 20s;
  animation-delay: 1s;
  width: 18px;
  height: 18px;
}

.feather:nth-child(5) {
  left: 60%;
  animation-duration: 14s;
  animation-delay: 3s;
}

.feather:nth-child(6) {
  left: 75%;
  animation-duration: 16s;
  animation-delay: 5s;
  width: 25px;
  height: 25px;
}

.feather:nth-child(7) {
  left: 90%;
  animation-duration: 13s;
  animation-delay: 2.5s;
  width: 14px;
  height: 14px;
}

@keyframes featherFall {
  0% {
    transform: translateY(-10vh) rotate(0deg) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 0.08;
  }
  90% {
    opacity: 0.08;
  }
  100% {
    transform: translateY(110vh) rotate(720deg) translateX(100px);
    opacity: 0;
  }
}

/* ------------------------------------------------------------
   3. NAVBAR
   ------------------------------------------------------------ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}

/* Shift navbar below WP admin bar when logged in */
.admin-bar .navbar {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .navbar {
    top: 46px;
  }
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 70px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(227, 28, 37, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 30px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
  transform: rotate(-10deg) scale(1.1);
  filter: drop-shadow(0 0 10px var(--red-glow));
}

.navbar.scrolled .logo-img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: var(--font-punk);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 1px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease, left 0.3s ease;
}

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

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

.nav-link.active {
  color: var(--red);
}

.nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 0;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--red);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: var(--red);
}

/* Admin Nav Item */
.nav-admin-item {
  margin-left: 10px;
}

.nav-admin-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border: 1px solid var(--gray);
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
}

.nav-admin-link:hover {
  color: var(--red);
  border-color: var(--red);
  background: rgba(227, 28, 37, 0.1);
}

/* ------------------------------------------------------------
   4. HERO SECTION
   ------------------------------------------------------------ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-logo-container {
  display: inline-block;
  margin-bottom: 30px;
  animation: chickenBob 3s ease-in-out infinite;
  cursor: pointer;
  position: relative;
}

.hero-logo-container img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(227, 28, 37, 0.4));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.hero-logo-container:hover img {
  animation: chickenFreakout 0.1s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(255, 45, 45, 0.8));
}

@keyframes chickenBob {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

@keyframes chickenGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(227, 28, 37, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(255, 45, 45, 0.8));
  }
}

@keyframes chickenFreakout {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(-3px, 2px) rotate(-5deg) scale(1.05);
  }
  50% {
    transform: translate(3px, -2px) rotate(5deg) scale(0.95);
  }
  75% {
    transform: translate(-2px, -3px) rotate(-3deg) scale(1.05);
  }
  100% {
    transform: translate(2px, 3px) rotate(3deg) scale(1);
  }
}

/* ------------------------------------------------------------
   5. GLITCH TITLE EFFECT
   ------------------------------------------------------------ */

.hero-title {
  font-family: var(--font-punk);
  font-size: 5rem;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 3px 3px 0 var(--red);
}

.glitch {
  position: relative;
  display: inline-block;
  animation: glitchAnim 4s ease-in-out infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.glitch::before {
  color: var(--red-glow);
  z-index: -1;
  animation: glitchBefore 3s ease-in-out infinite;
}

.glitch::after {
  color: var(--orange);
  z-index: -2;
  animation: glitchAfter 2s ease-in-out infinite;
}

@keyframes glitchBefore {
  0%, 100% {
    clip-path: inset(0 0 100% 0);
    transform: translate(0);
  }
  5% {
    clip-path: inset(20% 0 40% 0);
    transform: translate(-5px, 2px);
  }
  10% {
    clip-path: inset(60% 0 10% 0);
    transform: translate(5px, -2px);
  }
  15% {
    clip-path: inset(0 0 100% 0);
    transform: translate(0);
  }
  40% {
    clip-path: inset(40% 0 30% 0);
    transform: translate(-3px, 1px);
  }
  42% {
    clip-path: inset(0 0 100% 0);
    transform: translate(0);
  }
}

@keyframes glitchAfter {
  0%, 100% {
    clip-path: inset(0 0 100% 0);
    transform: translate(0);
  }
  7% {
    clip-path: inset(10% 0 50% 0);
    transform: translate(5px, -3px);
  }
  12% {
    clip-path: inset(50% 0 20% 0);
    transform: translate(-5px, 3px);
  }
  17% {
    clip-path: inset(0 0 100% 0);
    transform: translate(0);
  }
  45% {
    clip-path: inset(30% 0 40% 0);
    transform: translate(3px, -1px);
  }
  47% {
    clip-path: inset(0 0 100% 0);
    transform: translate(0);
  }
}

@keyframes glitchAnim {
  0%, 100% {
    transform: translate(0);
  }
  2% {
    transform: translate(-2px, 1px);
  }
  4% {
    transform: translate(2px, -1px);
  }
  6% {
    transform: translate(0);
  }
  50% {
    transform: translate(1px, -1px);
  }
  52% {
    transform: translate(-1px, 1px);
  }
  54% {
    transform: translate(0);
  }
}

/* ------------------------------------------------------------
   6. HERO SUBTITLE / TYPEWRITER
   ------------------------------------------------------------ */

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background: var(--red);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ------------------------------------------------------------
   7. BUTTONS
   ------------------------------------------------------------ */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 14px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  position: relative;
  text-align: center;
}

.btn-fire {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(
    0% 10%, 5% 0%, 15% 5%, 25% 0%, 35% 3%, 50% 0%, 65% 4%, 75% 0%, 85% 3%, 95% 0%, 100% 10%,
    100% 90%, 95% 100%, 85% 96%, 75% 100%, 65% 97%, 50% 100%, 35% 96%, 25% 100%, 15% 97%, 5% 100%, 0% 90%
  );
  padding: 18px 50px;
  font-size: 1.2rem;
}

.btn-fire:hover {
  background: var(--red-glow);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(227, 28, 37, 0.5);
}

.btn-fire:active {
  transform: scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 36px;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 24px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ------------------------------------------------------------
   8. SLIDER CONTROLS
   ------------------------------------------------------------ */

.slider-controls {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* ------------------------------------------------------------
   9. SCROLL INDICATOR
   ------------------------------------------------------------ */

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: floatUp 2s ease-in-out infinite;
  cursor: pointer;
}

.hero-scroll-indicator span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
}

.hero-scroll-indicator i {
  font-size: 1.5rem;
  color: var(--red);
}

@keyframes floatUp {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
    opacity: 0.5;
  }
}

/* ------------------------------------------------------------
   10. MARQUEE / TOUR DATES TICKER
   ------------------------------------------------------------ */

.marquee-section {
  background: var(--red);
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.marquee-item i {
  color: var(--yellow);
}

.marquee-item .marquee-date {
  color: var(--yellow);
  font-weight: 700;
}

.marquee-item .marquee-divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Edge gradient fades */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--red), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--red), transparent);
}

.marquee-label {
  text-align: center;
  padding: 8px 0 0;
}

.marquee-label .label-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.marquee-label .label-text i {
  margin-right: 6px;
  color: var(--yellow);
}

/* ------------------------------------------------------------
   11. ABOUT SECTION
   ------------------------------------------------------------ */

.about-section {
  background: var(--dark);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

/* Torn / Ripped Edges */
.rip-top {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 2;
}

.rip-top svg {
  width: 100%;
  height: 100%;
  display: block;
}

.rip-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 2;
}

.rip-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-photo {
  width: 100%;
  border: 4px solid var(--gray);
  filter: grayscale(40%) contrast(1.1);
  transition: filter 0.5s ease;
}

.about-image-wrapper:hover .about-photo {
  filter: grayscale(0%) contrast(1);
}

/* Tape effect on corners */
.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 20px;
  width: 80px;
  height: 30px;
  background: rgba(255, 204, 0, 0.4);
  transform: rotate(-5deg);
  z-index: 2;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 20px;
  width: 80px;
  height: 30px;
  background: rgba(255, 204, 0, 0.4);
  transform: rotate(3deg);
  z-index: 2;
}

.about-logo-float {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  opacity: 0.2;
  animation: chickenBob 4s ease-in-out infinite;
  pointer-events: none;
}

.about-stamp {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  opacity: 0.15;
  animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-text {
  position: relative;
}

.about-text h2 {
  font-family: var(--font-punk);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.about-text h2 span {
  color: var(--red);
}

.about-text p {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.8;
  opacity: 0.9;
}

.about-tagline {
  font-family: var(--font-punk);
  font-size: 1.8rem;
  color: var(--red);
  transform: rotate(-3deg);
  display: inline-block;
  margin-top: 20px;
  text-shadow: 2px 2px 0 var(--black);
}

/* ------------------------------------------------------------
   12. GALLERY SECTION
   ------------------------------------------------------------ */

.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: contrast(1.1) saturate(1.2);
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 4px 12px;
  display: inline-block;
}

/* ------------------------------------------------------------
   13. NEWSLETTER SECTION
   ------------------------------------------------------------ */

.newsletter-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.3);
  transform: scale(1.1);
  z-index: 0;
}

.newsletter-card {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid var(--gray);
  padding: 60px 40px;
  text-align: center;
  clip-path: polygon(
    0% 5%, 3% 0%, 10% 3%, 20% 0%, 30% 2%, 40% 0%, 50% 3%, 60% 0%, 70% 2%, 80% 0%, 90% 3%, 97% 0%, 100% 5%,
    100% 95%, 97% 100%, 90% 97%, 80% 100%, 70% 98%, 60% 100%, 50% 97%, 40% 100%, 30% 98%, 20% 100%, 10% 97%, 3% 100%, 0% 95%
  );
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(227, 28, 37, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(227, 28, 37, 0.5);
  }
}

.spinning-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  animation: spinLogo 10s linear infinite;
  opacity: 0.3;
}

@keyframes spinLogo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.newsletter-title {
  font-family: var(--font-punk);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.newsletter-title span {
  color: var(--red);
}

.newsletter-section .section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 30px;
  opacity: 0.8;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.form-group {
  position: relative;
  transition: all 0.3s ease;
}

.form-group:focus-within {
  transform: translateY(-2px);
}

.form-group:focus-within .newsletter-input {
  border-color: var(--red);
  box-shadow: 0 0 10px rgba(227, 28, 37, 0.3);
}

.newsletter-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(42, 42, 42, 0.8);
  border: 1px solid var(--gray);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: var(--light-gray);
}

.form-message {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
}

.form-message.success {
  color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
  color: var(--red);
  background: rgba(227, 28, 37, 0.1);
  border: 1px solid rgba(227, 28, 37, 0.3);
}

/* ------------------------------------------------------------
   14. BLOG PREVIEW SECTION
   ------------------------------------------------------------ */

.blog-preview-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.blog-preview-section .section-title {
  font-family: var(--font-punk);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--white);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.blog-preview-card {
  background: var(--darker);
  border: 2px solid var(--gray);
  border-left: 4px solid var(--red);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.blog-preview-card:nth-child(1) {
  transform: rotate(-1.5deg);
}

.blog-preview-card:nth-child(2) {
  transform: rotate(0.8deg);
}

.blog-preview-card:nth-child(3) {
  transform: rotate(-0.5deg);
}

.blog-preview-card:hover {
  transform: rotate(0deg) translateY(-8px) !important;
  border-color: var(--red);
  box-shadow: 0 10px 40px rgba(227, 28, 37, 0.2), 0 0 0 1px var(--red);
}

/* Torn ticket top edge */
.blog-preview-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--darker);
  clip-path: polygon(
    0% 100%, 2% 0%, 5% 100%, 8% 20%, 11% 100%, 14% 0%, 17% 100%, 20% 30%, 23% 100%, 26% 0%,
    29% 100%, 32% 20%, 35% 100%, 38% 0%, 41% 100%, 44% 30%, 47% 100%, 50% 0%, 53% 100%, 56% 20%,
    59% 100%, 62% 0%, 65% 100%, 68% 30%, 71% 100%, 74% 0%, 77% 100%, 80% 20%, 83% 100%, 86% 0%,
    89% 100%, 92% 30%, 95% 100%, 98% 0%, 100% 100%
  );
  z-index: 2;
}

/* Torn ticket bottom edge */
.blog-preview-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--darker);
  clip-path: polygon(
    0% 0%, 3% 100%, 6% 0%, 9% 80%, 12% 0%, 15% 100%, 18% 0%, 21% 70%, 24% 0%, 27% 100%,
    30% 0%, 33% 80%, 36% 0%, 39% 100%, 42% 0%, 45% 70%, 48% 0%, 51% 100%, 54% 0%, 57% 80%,
    60% 0%, 63% 100%, 66% 0%, 69% 70%, 72% 0%, 75% 100%, 78% 0%, 81% 80%, 84% 0%, 87% 100%,
    90% 0%, 93% 70%, 96% 0%, 100% 0%
  );
  z-index: 2;
}

/* Perforation dots on left side (ticket stub) */
.blog-preview-card .card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-preview-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.1);
  transition: filter 0.4s ease, transform 0.6s ease;
}

.blog-preview-card:hover .card-image img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.05);
}

/* Gradient overlay on image */
.blog-preview-card .card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, var(--darker) 0%, transparent 100%);
  pointer-events: none;
}

/* Category badge */
.blog-preview-card .card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 4px 12px;
  z-index: 3;
  clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
}

.blog-preview-card .card-content {
  padding: 25px 20px 30px;
}

.blog-preview-card .card-title {
  font-family: var(--font-punk);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.blog-preview-card:hover .card-title {
  color: var(--red);
}

.blog-preview-card .card-excerpt {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-preview-card .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--light-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 15px;
  border-top: 1px solid var(--gray);
}

.blog-preview-card .card-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-preview-card .card-date i {
  color: var(--red);
  font-size: 0.7rem;
}

.blog-preview-card .card-views {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-preview-card .card-views i {
  color: var(--light-gray);
  font-size: 0.7rem;
}

/* Blog Preview CTA */
.blog-preview-cta {
  text-align: center;
  margin-top: 50px;
}

/* ------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------ */

.footer {
  background: var(--darker);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-rip {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 2;
}

.footer-rip svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
  transform: rotate(-10deg) scale(1.1);
  filter: drop-shadow(0 0 15px var(--red-glow));
}

.footer-tagline {
  font-family: var(--font-punk);
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: 15px;
}

.footer-col p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--red);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--light-gray);
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-links-col a:hover {
  color: var(--red);
  padding-left: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px) rotate(-5deg);
  box-shadow: 0 5px 15px rgba(227, 28, 37, 0.4);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--light-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--red);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--red-glow);
}

.footer-credit {
  margin-top: 8px;
  font-size: 0.75rem !important;
  letter-spacing: 1px !important;
  opacity: 0.7;
}

.footer-credit a {
  color: var(--orange);
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--yellow);
}

/* ------------------------------------------------------------
   16. SCROLL REVEAL ANIMATIONS
   ------------------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ------------------------------------------------------------
   17. LOGIN MODAL
   ------------------------------------------------------------ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.modal-content {
  background: var(--darker);
  border: 1px solid var(--gray);
  padding: 0;
  width: 90%;
  max-width: 420px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s ease;
  overflow: hidden;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--gray);
  color: var(--light-gray);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}

/* Login Modal Specific */
.login-modal {
  padding: 50px 40px 40px;
  text-align: center;
}

.login-chicken {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: block;
}

.login-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spinLogo 15s linear infinite;
  opacity: 0.5;
}

.login-title {
  font-family: var(--font-punk);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.login-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 30px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.login-field {
  position: relative;
}

.login-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}

.login-field label i {
  margin-right: 6px;
  color: var(--red);
  font-size: 0.8rem;
}

.login-field input {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.login-field input:focus {
  border-color: var(--red);
  box-shadow: 0 0 10px rgba(227, 28, 37, 0.3);
  background: rgba(42, 42, 42, 1);
}

.login-field input::placeholder {
  color: var(--light-gray);
  font-size: 0.9rem;
}

.login-error {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--red);
  background: rgba(227, 28, 37, 0.1);
  border: 1px solid rgba(227, 28, 37, 0.3);
  padding: 10px 14px;
  display: none;
  text-align: center;
  margin-bottom: 5px;
}

.login-error.visible {
  display: block;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.login-btn:hover {
  background: var(--red-glow);
  box-shadow: 0 0 20px rgba(227, 28, 37, 0.5);
  transform: translateY(-2px);
}

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

.login-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ------------------------------------------------------------
   18. LOADING SPINNER
   ------------------------------------------------------------ */

.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.loading-spinner::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray);
  border-top: 3px solid var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.loading-spinner--sm::after {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.loading-spinner--inline {
  display: inline-flex;
  padding: 0;
  vertical-align: middle;
  margin-left: 8px;
}

/* Loading overlay for sections */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Skeleton loading state */
.skeleton {
  background: linear-gradient(90deg, var(--gray) 25%, var(--dark) 50%, var(--gray) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ------------------------------------------------------------
   19. BLOCK EDITOR CONTENT ZONE
   Styles for any blocks the admin adds via "Edit Page".
   ------------------------------------------------------------ */

.jac-editor-content {
  padding: 60px 0;
  background: var(--bg);
  color: var(--text);
}

.jac-editor-content h1,
.jac-editor-content h2,
.jac-editor-content h3,
.jac-editor-content h4,
.jac-editor-content h5,
.jac-editor-content h6 {
  font-family: var(--font-display);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.jac-editor-content h2 {
  color: var(--red);
}

.jac-editor-content p,
.jac-editor-content li {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
}

.jac-editor-content a {
  color: var(--red);
  transition: color 0.3s ease;
}

.jac-editor-content a:hover {
  color: var(--orange);
}

.jac-editor-content blockquote {
  border-left: 4px solid var(--red);
  padding-left: 20px;
  font-family: var(--font-handwritten);
  color: var(--orange);
}

.jac-editor-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.jac-editor-content .wp-block-separator {
  border-color: var(--red);
  opacity: 0.5;
}

.jac-editor-content .wp-block-button__link {
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  padding: 12px 28px;
  transition: all 0.3s ease;
}

.jac-editor-content .wp-block-button__link:hover {
  background: var(--orange);
  box-shadow: 0 0 20px rgba(227, 28, 37, 0.4);
}

/* SureForms and other plugin forms within editor content */
.jac-editor-content input[type="text"],
.jac-editor-content input[type="email"],
.jac-editor-content input[type="tel"],
.jac-editor-content input[type="url"],
.jac-editor-content textarea,
.jac-editor-content select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gray);
  color: var(--text);
  font-family: var(--font-body);
  padding: 10px 14px;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.jac-editor-content input:focus,
.jac-editor-content textarea:focus,
.jac-editor-content select:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 2px rgba(227, 28, 37, 0.2);
}

.jac-editor-content label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: var(--light-gray);
}

/* ------------------------------------------------------------
   20. DEFAULT PAGE TEMPLATE (Contact, etc.)
   ------------------------------------------------------------ */

.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(227, 28, 37, 0.15) 0%, transparent 100%);
}

.page-hero-title {
  font-family: var(--font-punk);
  font-size: clamp(2.8rem, 7vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.jac-page-content {
  padding: 60px 0 80px;
  min-height: 40vh;
}

.jac-page-content .container {
  max-width: 800px;
}

/* ------------------------------------------------------------
   21. RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .about-grid {
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .blog-preview-card:nth-child(3) {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
    --nav-height: 70px;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 80px 0;
    transition: right 0.4s ease;
    border-left: 2px solid var(--red);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.4rem;
    padding: 15px 20px;
    width: 100%;
    text-align: center;
  }

  .nav-link::after {
    bottom: 5px;
  }

  .nav-admin-item {
    margin-left: 0;
    margin-top: 20px;
  }

  /* Hero */
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .hero-logo-container img {
    width: 130px;
    height: 130px;
  }

  .slider-controls {
    bottom: 100px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .about-tagline {
    font-size: 1.4rem;
    display: block;
    text-align: center;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }

  /* Newsletter */
  .newsletter-card {
    padding: 40px 25px;
    clip-path: none;
  }

  .newsletter-title {
    font-size: 1.8rem;
  }

  /* Blog Preview */
  .blog-preview-section {
    padding: 60px 0;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 25px;
  }

  .blog-preview-card:nth-child(3) {
    display: block;
  }

  .blog-preview-card:nth-child(1),
  .blog-preview-card:nth-child(2),
  .blog-preview-card:nth-child(3) {
    transform: rotate(0deg);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

  /* Login Modal */
  .modal-content {
    width: 95%;
    max-width: 380px;
  }

  .login-modal {
    padding: 40px 25px 30px;
  }

  .login-title {
    font-size: 1.6rem;
  }

  /* Section Title */
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

/* Small Mobile: 480px */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .hero-logo-container img {
    width: 100px;
    height: 100px;
  }

  .btn-fire {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .btn-outline {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .slider-controls {
    bottom: 80px;
    gap: 12px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .marquee-item {
    font-size: 0.85rem;
    padding: 0 25px;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-tagline {
    font-size: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-preview-card .card-content {
    padding: 20px 15px 25px;
  }

  .blog-preview-card .card-title {
    font-size: 1.2rem;
  }

  .blog-preview-card .card-meta {
    font-size: 0.7rem;
    flex-wrap: wrap;
    gap: 8px;
  }

  .newsletter-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }

  .footer-tagline {
    font-size: 0.95rem;
  }

  .login-title {
    font-size: 1.4rem;
  }

  .login-field input {
    padding: 10px 14px;
  }

  .login-btn {
    padding: 12px;
    font-size: 1rem;
  }
}

/* ------------------------------------------------------------
   20. NOISE TEXTURE OVERLAY
   ------------------------------------------------------------ */

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================================
   ASTRA & PLUGIN OVERRIDES
   Targeted overrides that ONLY affect Astra-generated elements.
   Does NOT touch our own components (.navbar, .nav-link, etc).
   ============================================================ */

/* --- Body background/color for JAC pages --- */
body.jac-homepage,
body.jac-albums-page,
body.jac-band-page,
body.jac-blog-page,
body.jac-single-post {
  background: var(--black) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  line-height: 1.6 !important;
}

/* --- Zero out Astra wrapper divs (only Astra-specific classes) --- */
body[class*="jac-"] .ast-container,
body[class*="jac-"] .ast-separate-container,
body[class*="jac-"] .ast-plain-container,
body[class*="jac-"] .ast-row,
body[class*="jac-"] .ast-separate-container #primary,
body[class*="jac-"] .ast-separate-container .ast-article-single,
body[class*="jac-"] .ast-separate-container .ast-article-post,
body[class*="jac-"] .ast-separate-container .ast-article-page,
body[class*="jac-"] .ast-separate-container .entry-content,
body[class*="jac-"] .ast-page-builder-template .site-content > .ast-container,
body[class*="jac-"] .site-content .ast-container,
body[class*="jac-"] #page > .site-content,
body[class*="jac-"] #content,
body[class*="jac-"] .site-content,
body[class*="jac-"] #primary,
body[class*="jac-"] main.site-main,
body[class*="jac-"] article.page,
body[class*="jac-"] article.post,
body[class*="jac-"] .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none !important;
}

/* --- Hide Astra's own header/footer (not ours) --- */
body[class*="jac-"] .ast-above-header-wrap,
body[class*="jac-"] .ast-below-header-wrap,
body[class*="jac-"] .ast-main-header-wrap,
body[class*="jac-"] .main-header-bar,
body[class*="jac-"] .ast-desktop-header,
body[class*="jac-"] .ast-mobile-header-wrap,
body[class*="jac-"] .site-header,
body[class*="jac-"] .ast-footer-overlay,
body[class*="jac-"] .ast-small-footer,
body[class*="jac-"] .site-footer {
  display: none !important;
}

/* --- Override WordPress global/inline block styles --- */
body[class*="jac-"] .wp-site-blocks,
body[class*="jac-"] .has-global-padding,
body[class*="jac-"] .wp-block-group {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* ============================================================
   END OF STYLES
   ============================================================ */
