/* ================================================
   TAMBOURCORPS EINIGKEIT 2007 ROMMERSKIRCHEN
   Main Stylesheet
   ================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --green-900: #0d2b0f;
  --green-800: #1a4a1c;
  --green-700: #1f5c22;
  --green-600: #2d7a30;
  --green-500: #3a9c3e;
  --green-400: #52b556;
  --green-300: #7dcc80;
  --green-100: #e8f5e9;

  --gold-900: #5c3d00;
  --gold-700: #9a6800;
  --gold-500: #c8961a;
  --gold-400: #d4a82a;
  --gold-300: #e8c860;
  --gold-200: #f5e0a0;
  --gold-100: #fdf6e3;

  --dark-900: #0a0d0a;
  --dark-800: #111711;
  --dark-700: #192019;
  --dark-600: #222d22;
  --dark-500: #2d3d2d;

  --white: #ffffff;
  --off-white: #f8faf8;
  --light-gray: #e8ede8;
  --mid-gray: #9ba89b;
  --text-primary: #1a2a1a;
  --text-secondary: #4a5a4a;
  --text-muted: #7a8a7a;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
  --shadow-xl: 0 40px 100px rgba(0,0,0,0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 80px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

body.loaded #preloader {
  opacity: 0;
  pointer-events: none;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s var(--transition-slow);
}

.preloader-drum {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.drum-body {
  position: relative;
  width: 100px;
  height: 80px;
}

.drum-head {
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d4a82a, #9a6800);
  border: 2px solid var(--gold-300);
  box-shadow: 0 2px 12px rgba(212,168,42,0.4);
}

.drum-shell {
  height: 52px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-left: 6px solid var(--gold-500);
  border-right: 6px solid var(--gold-500);
  position: relative;
  overflow: hidden;
}

.drum-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 18px,
    rgba(212,168,42,0.2) 18px,
    rgba(212,168,42,0.2) 20px
  );
}

.drum-sticks {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
}

.stick {
  position: absolute;
  width: 6px;
  height: 60px;
  background: linear-gradient(180deg, #f5e0a0, #9a6800);
  border-radius: 3px;
  transform-origin: bottom center;
}

.stick.left {
  left: 20px;
  transform: rotate(-30deg);
  animation: stickLeft 0.4s ease-in-out infinite alternate;
}

.stick.right {
  right: 20px;
  transform: rotate(30deg);
  animation: stickRight 0.4s ease-in-out infinite alternate;
}

.preloader-text {
  font-family: var(--font-heading);
  color: var(--gold-300);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: textGlow 1.5s ease-in-out infinite alternate;
}

@keyframes stickLeft {
  from { transform: rotate(-30deg); }
  to { transform: rotate(-10deg) translateY(-5px); }
}

@keyframes stickRight {
  from { transform: rotate(30deg) translateY(-5px); }
  to { transform: rotate(10deg); }
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes textGlow {
  from { text-shadow: 0 0 10px rgba(212,168,42,0.3); }
  to { text-shadow: 0 0 30px rgba(212,168,42,0.8), 0 0 60px rgba(212,168,42,0.4); }
}

/* ---------- NAVIGATION ---------- */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 32px;
  transition: all var(--transition);
}

#main-header.scrolled .navbar {
  background: rgba(10, 13, 10, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 10;
}

.logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212,168,42,0.4)) brightness(1.05);
  border-radius: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--mid-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  letter-spacing: 0.03em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-400);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-300);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--dark-900);
  border-color: var(--gold-400);
  box-shadow: 0 4px 20px rgba(200,150,26,0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,150,26,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold-300);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

.btn-white:hover {
  background: var(--gold-100);
  color: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

.btn.full-width {
  width: 100%;
}

/* ---------- SECTION COMMON ---------- */
section {
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.6);
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.section-divider span:first-child,
.section-divider span:last-child {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  border-radius: 1px;
}

.section-divider.light span:first-child,
.section-divider.light span:last-child {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.divider-icon {
  font-size: 1.2rem;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,13,10,0.85) 0%,
    rgba(15,35,15,0.75) 40%,
    rgba(10,30,10,0.65) 70%,
    rgba(5,15,5,0.8) 100%
  );
}

/* Gold shimmer stripe */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(212,168,42,0.06) 40%,
    transparent 60%
  );
  animation: goldShimmer 4s ease-in-out infinite;
}

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

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(212,168,42,0.6);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  animation: fadeInDown 1s ease both;
}

.badge-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold-400);
}

.badge-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.title-willkommen {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.2s both;
}

.title-name {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-200), var(--gold-400), var(--gold-200));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  line-height: 1.1;
  animation: fadeInUp 1s ease 0.3s both, gradientShift 4s ease-in-out infinite;
  text-shadow: none;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.title-year {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.15em;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 32px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.6s both;
}

.value-tag {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212,168,42,0.4);
  background: rgba(212,168,42,0.1);
  color: var(--gold-200);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.value-tag:hover {
  background: rgba(212,168,42,0.2);
  border-color: var(--gold-300);
  transform: translateY(-2px);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.7s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  display: block;
  width: 16px;
  height: 16px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg) translateY(-4px);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ---------- STATS SECTION ---------- */
.stats-section {
  background: var(--dark-800);
  padding: 60px 0;
  border-top: 1px solid rgba(212,168,42,0.15);
  border-bottom: 1px solid rgba(212,168,42,0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,42,0.1);
  transition: all var(--transition);
  cursor: default;
}

.stat-card:hover {
  background: rgba(212,168,42,0.08);
  border-color: rgba(212,168,42,0.3);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 12px rgba(212,168,42,0.3));
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(212,168,42,0.3);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  padding: 120px 0;
  background: var(--off-white);
  overflow: hidden;
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(42,125,45,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,168,42,0.05) 0%, transparent 50%);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--gold-400), transparent, var(--green-600));
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.about-image-frame:hover img {
  transform: scale(1.04);
}

.image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold-500);
  color: var(--dark-900);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(200,150,26,0.4);
}

.image-badge span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.image-badge strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--green-800);
  line-height: 1.3;
  margin-bottom: 24px;
}

.about-text {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.97rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}

.value-item:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.value-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.value-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-800);
  margin-bottom: 4px;
}

.value-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- ACTIVITIES SECTION ---------- */
.activities-section {
  padding: 120px 0;
  background: var(--white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-300);
}

.activity-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.activity-card:hover .activity-img img {
  transform: scale(1.08);
}

/* Cover image layout for activity cards (replaces sliders) */
.activity-cover {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}

.activity-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.activity-card:hover .activity-cover img {
  transform: scale(1.08);
}

/* "Galerie öffnen" hover hint on cover images */
.activity-open-hint {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity var(--transition);
}

.activity-card:hover .activity-open-hint {
  opacity: 1;
}

.activity-open-hint span {
  background: rgba(212, 168, 42, 0.92);
  color: var(--dark-900);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: 0.03em;
}

.activity-open-hint small {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.activity-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-schuetzen {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
}

.bg-generalversammlung {
  background: linear-gradient(135deg, var(--dark-700), var(--green-900));
}

.bg-proben {
  background: linear-gradient(135deg, var(--green-900), var(--dark-800));
}

.activity-placeholder-icon {
  font-size: 4rem;
  opacity: 0.6;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.activity-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.activity-tag {
  background: rgba(0,0,0,0.6);
  color: var(--gold-200);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,168,42,0.3);
}

.activity-body {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.activity-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.activity-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.activity-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.activity-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.location-tag {
  padding: 4px 10px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ---------- KINGS / MAJESTÄTEN SECTION ---------- */
.kings-section {
  padding: 120px 0;
  background: var(--dark-900);
  overflow: hidden;
}

.kings-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(42,125,45,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,168,42,0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 50%, var(--dark-900) 100%);
}

.kings-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a82a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.kings-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}

.king-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,42,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.king-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(212,168,42,0.05));
  opacity: 0;
  transition: opacity var(--transition);
}

.king-card:hover {
  border-color: rgba(212,168,42,0.5);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

.king-card:hover::before {
  opacity: 1;
}

.king-crown {
  font-size: 2rem;
  margin-bottom: 16px;
  animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-5px) rotate(3deg); }
}

.king-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border: 3px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(212,168,42,0.3);
}

.king-initial {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-200);
}

.king-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-200);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.king-title {
  font-size: 0.85rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.king-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  margin: 0 auto 16px;
}

.king-message {
  color: rgba(255,255,255,0.6);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.7;
}

.kings-center-crest {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crest-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: ringRotate linear infinite;
}

.crest-ring.outer {
  inset: 0;
  border-color: rgba(212,168,42,0.2);
  animation-duration: 20s;
}

.crest-ring.middle {
  inset: 16px;
  border-color: rgba(212,168,42,0.35);
  animation-duration: 15s;
  animation-direction: reverse;
}

.crest-ring.inner {
  inset: 32px;
  border-color: rgba(212,168,42,0.5);
  animation-duration: 10s;
}

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

.crest-drum {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  filter: drop-shadow(0 0 20px rgba(212,168,42,0.5));
  animation: drumPulse 2s ease-in-out infinite;
}

@keyframes drumPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(212,168,42,0.5)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 30px rgba(212,168,42,0.8)); }
}

/* ---------- GALLERY SECTION ---------- */
.gallery-section {
  padding: 120px 0;
  background: var(--off-white);
}

/* Activity preview grid */
.gallery-activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

/* Activity card */
.gal-act-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  outline: none;
}

.gal-act-card:hover,
.gal-act-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-300);
}

.gal-act-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.gal-act-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.gal-act-card:hover .gal-act-img img {
  transform: scale(1.1);
}

.gal-act-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gal-act-tag {
  background: rgba(0,0,0,0.6);
  color: var(--gold-200);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,168,42,0.3);
}

.gal-act-count {
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.85);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.gal-act-open-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity var(--transition);
}

.gal-act-card:hover .gal-act-open-hint,
.gal-act-card:focus-visible .gal-act-open-hint {
  opacity: 1;
}

.gal-act-open-hint span {
  background: rgba(212,168,42,0.9);
  color: var(--dark-900);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.gal-act-body {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gal-act-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.gal-act-body h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.gallery-cta {
  text-align: center;
}

/* Staggered entrance animation for gallery cards */
@keyframes galCardAppear {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gal-act-card--anim {
  animation: galCardAppear 0.5s ease both;
}

/* ============ GALLERY MODAL ============ */
#gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: gmodalFadeIn 0.25s ease;
}

#gallery-modal[hidden] {
  display: none;
}

@keyframes gmodalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gmodal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 5, 0.93);
  backdrop-filter: blur(6px);
}

.gmodal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: gmodalSlideUp 0.3s ease;
}

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

.gmodal-close {
  position: absolute;
  top: -16px;
  right: -8px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}

.gmodal-close:hover {
  background: rgba(212,168,42,0.3);
  border-color: var(--gold-400);
  color: var(--gold-200);
  transform: rotate(90deg);
}

.gmodal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.gmodal-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(212,168,42,0.5));
}

.gmodal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--gold-200);
  letter-spacing: 0.05em;
}

.gmodal-slider-wrap {
  position: relative;
  width: 100%;
}

.gmodal-slider {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.gmodal-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gmodal-slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.gmodal-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gmodal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 5;
  line-height: 1;
}

.gmodal-prev { left: -24px; }
.gmodal-next { right: -24px; }

.gmodal-nav:hover {
  background: rgba(212,168,42,0.8);
  border-color: var(--gold-400);
  color: var(--dark-900);
  transform: translateY(-50%) scale(1.1);
}

.gmodal-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.gmodal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.gmodal-dot.active {
  background: var(--gold-400);
  transform: scale(1.4);
}

.gmodal-dot:hover:not(.active) {
  background: rgba(255,255,255,0.65);
}

.gmodal-counter {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-top: -8px;
}



/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: 100px 0;
  background: var(--green-800);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,168,42,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,168,42,0.08) 0%, transparent 60%);
}

.cta-bg::before {
  content: '🥁';
  position: absolute;
  top: -40px;
  right: 10%;
  font-size: 200px;
  opacity: 0.04;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1.3;
  margin-bottom: 4px;
}

.contact-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  background: var(--off-white);
  text-decoration: none;
  transition: all var(--transition);
  color: var(--text-primary);
}

.contact-card:hover {
  border-color: var(--green-400);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-card-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  padding-top: 2px;
}

.contact-card-body strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card-body span {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  word-break: break-all;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.social-btn.facebook {
  background: #1877f2;
  color: var(--white);
}

.social-btn.facebook:hover {
  background: #0d65d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24,119,242,0.4);
}

.social-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

.social-btn.instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 87, 97, 0.4);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--light-gray);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--green-800);
  margin-bottom: 28px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(42,125,45,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid-gray);
}

.form-success {
  margin-top: 16px;
  padding: 16px;
  background: var(--green-100);
  border: 1px solid var(--green-400);
  border-radius: var(--radius-md);
  color: var(--green-800);
  font-size: 0.95rem;
  text-align: center;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--dark-900);
  padding: 80px 0 0;
  border-top: 1px solid rgba(212,168,42,0.15);
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(42,125,45,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-300);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.footer-tagline {
  color: var(--mid-gray);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-location {
  color: var(--mid-gray);
  font-size: 0.85rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  margin-bottom: 20px;
}

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

.footer-links a {
  color: var(--mid-gray);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-contact p {
  color: var(--mid-gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--mid-gray);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--gold-300);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(212,168,42,0.15);
  border-color: var(--gold-500);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-credits {
  color: rgba(255,255,255,0.3) !important;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--dark-900);
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(200,150,26,0.4);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200,150,26,0.5);
}

/* ---------- AOS ANIMATIONS ---------- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="zoom-in"] {
  transform: scale(0.85);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kings-grid {
    gap: 24px;
  }

  .gallery-activities-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--dark-900);
    flex-direction: column;
    gap: 0;
    padding: calc(var(--nav-height) + 24px) 24px 40px;
    transition: right var(--transition);
    box-shadow: -4px 0 40px rgba(0,0,0,0.5);
    z-index: 100;
    border-left: 1px solid rgba(212,168,42,0.1);
    overflow-y: auto;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }

  .navbar {
    padding: 0 20px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .kings-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kings-center-crest {
    display: none;
  }

  .gallery-activities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gmodal-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .gmodal-prev { left: 4px; }
  .gmodal-next { right: 4px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding: 100px 16px 60px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

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

  .contact-form-wrap {
    padding: 24px;
  }

  .social-links {
    flex-direction: column;
  }

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

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-values {
    gap: 8px;
  }

  .value-tag {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .about-section,
  .activities-section,
  .kings-section,
  .gallery-section,
  .contact-section {
    padding: 80px 0;
  }

  .cta-banner {
    padding: 70px 0;
  }
}

/* ---------- PRINT STYLES ---------- */
@media print {
  #preloader,
  #main-header,
  .back-to-top,
  .hero-section .scroll-indicator {
    display: none !important;
  }
  body {
    color: #000;
  }
}

/* ---------- IMAGE SLIDER (Schützenfeste) ---------- */
.activity-slider {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--dark-900);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 2px solid rgba(212,168,42,0.5);
  color: var(--gold-200);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  padding: 0;
}

.slider-btn:hover {
  background: rgba(212,168,42,0.3);
  border-color: var(--gold-300);
  color: var(--white);
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid rgba(255,255,255,0.3);
}

.dot.active {
  background: var(--gold-400);
  border-color: var(--gold-300);
  transform: scale(1.2);
}

/* Extended gallery grid */
.gallery-grid--extended {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
}

.gallery-grid--extended .gallery-item.gallery-large {
  grid-row: span 2;
}

.gallery-grid--extended .gallery-item.gallery-large img {
  min-height: 560px;
}

.gallery-grid--extended .gallery-item img {
  min-height: 280px;
}

@media (max-width: 1024px) {
  .gallery-grid--extended {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid--extended .gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: auto;
  }
  .gallery-grid--extended .gallery-item.gallery-large img {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .gallery-grid--extended {
    grid-template-columns: 1fr;
  }
  .gallery-grid--extended .gallery-item.gallery-large {
    grid-column: auto;
  }
}
