/* Gemeinde Schlierbach Modern Design System 2026 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Color Palette - Alpine Emerald & Warm Gold */
  --bg-deep: #07130e;
  --bg-dark: #0f241b;
  --bg-surface: #f8fafc;
  --bg-card: #ffffff;
  
  --brand-emerald-50: #ecfdf5;
  --brand-emerald-100: #d1fae5;
  --brand-emerald-500: #10b981;
  --brand-emerald-600: #059669;
  --brand-emerald-700: #047857;
  --brand-emerald-800: #065f46;
  --brand-emerald-900: #064e3b;

  --accent-gold-400: #fbbf24;
  --accent-gold-500: #f59e0b;
  --accent-gold-600: #d97706;

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --glass-bg-dark: rgba(15, 36, 27, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-border-dark: rgba(255, 255, 255, 0.1);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(6, 78, 59, 0.12);
  --shadow-glow: 0 0 35px rgba(16, 185, 129, 0.25);

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

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-surface);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

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

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--glass-bg-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
}

.glass-panel-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-dark);
  box-shadow: var(--shadow-lg);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-emerald-900);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-emerald-500);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--brand-emerald-600);
}

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

.btn-contact-nav {
  background: linear-gradient(135deg, var(--brand-emerald-600), var(--brand-emerald-800));
  color: var(--text-white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-contact-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.35);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--brand-emerald-900);
}

/* Mobile Nav Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--glass-bg-light);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 99;
}

.mobile-drawer.open {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  color: var(--text-white);
  overflow: hidden;
  padding: 6rem 1.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(7, 19, 14, 0.15) 0%, rgba(7, 19, 14, 0.6) 100%),
              linear-gradient(180deg, rgba(7, 19, 14, 0.15) 0%, rgba(7, 19, 14, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge-group {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-badge-icon {
  width: 8px;
  height: 8px;
  background: var(--brand-emerald-500);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-emerald-500);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff 30%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: #cbd5e1;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Hero Quick Search Bar */
.hero-search-wrapper {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.hero-search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-search-box:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.35);
}

.hero-search-icon {
  color: var(--brand-emerald-600);
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

.hero-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-main);
}

.hero-search-input::placeholder {
  color: #94a3b8;
}

.hero-search-btn {
  background: linear-gradient(135deg, var(--brand-emerald-600), var(--brand-emerald-700));
  color: var(--text-white);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.hero-search-btn:hover {
  background: var(--brand-emerald-700);
}

/* Quick Pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.pill-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-color: var(--brand-emerald-500);
  transform: translateY(-1px);
}

/* Section Shared Layouts */
.section {
  padding: 5.5rem 1.5rem;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-emerald-600);
  background: var(--brand-emerald-50);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--brand-emerald-900);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Quick Services / Bürgerservice Hub */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-emerald-500), var(--accent-gold-500));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-emerald-50), #d1fae5);
  color: var(--brand-emerald-600);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.35rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-action {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-emerald-600);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-fast);
}

.service-card:hover .service-action {
  gap: 0.75rem;
  color: var(--brand-emerald-700);
}

/* News Section */
.news-section {
  background: #ffffff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img {
  transform: scale(1.06);
}

.news-tag-date {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 36, 27, 0.85);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.news-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-title {
  font-size: 1.25rem;
  color: var(--brand-emerald-900);
  margin-bottom: 0.75rem;
}

.news-excerpt {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.news-link {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--brand-emerald-600);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Events Section */
.events-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.events-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 992px) {
  .events-wrapper {
    grid-template-columns: 1fr;
  }
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.event-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all var(--transition-fast);
}

.event-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-emerald-100);
}

.event-date-badge {
  min-width: 70px;
  height: 75px;
  background: linear-gradient(135deg, var(--brand-emerald-700), var(--brand-emerald-900));
  color: var(--text-white);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
}

.event-day {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.event-month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.event-info {
  flex: 1;
}

.event-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold-600);
  margin-bottom: 0.25rem;
}

.event-title {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.event-location {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Vierseiter Zeitung Sidebar Card */
.vierseiter-card {
  background: linear-gradient(145deg, var(--bg-dark), #061e16);
  color: var(--text-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.vierseiter-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  filter: blur(30px);
}

.vierseiter-tag {
  display: inline-block;
  background: var(--accent-gold-500);
  color: var(--bg-deep);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.vierseiter-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.vierseiter-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
}

.btn-vierseiter {
  background: var(--text-white);
  color: var(--brand-emerald-900);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-align: center;
  transition: all var(--transition-fast);
}

.btn-vierseiter:hover {
  background: var(--brand-emerald-50);
  transform: translateY(-2px);
}

/* Mayor Showcase Section */
.mayor-section {
  background: var(--bg-card);
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.mayor-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .mayor-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.mayor-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mayor-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.mayor-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(12px);
  color: var(--text-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border-dark);
}

.mayor-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.mayor-role {
  font-size: 0.85rem;
  color: var(--accent-gold-400);
}

.mayor-content h2 {
  font-size: 2.25rem;
  color: var(--brand-emerald-900);
  margin-bottom: 1.25rem;
}

.mayor-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hours-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-left: 4px solid var(--brand-emerald-500);
}

.hours-title {
  font-weight: 700;
  color: var(--brand-emerald-900);
  margin-bottom: 0.5rem;
}

.hours-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--brand-emerald-50);
  color: var(--brand-emerald-600);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 700;
}

.info-val {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Form Styles */
.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  background: var(--bg-surface);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--brand-emerald-500);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.btn-submit {
  width: 100%;
  background-color: var(--brand-emerald-600);
  background: linear-gradient(135deg, var(--brand-emerald-600), var(--brand-emerald-800));
  color: #ffffff !important;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
  transition: all var(--transition-fast);
}

.btn-submit:hover {
  background: var(--brand-emerald-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.35);
}

.feedback-banner {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  display: none;
}

.feedback-banner.success {
  display: block;
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.feedback-banner.error {
  display: block;
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Footer */
.site-footer {
  background: var(--bg-deep);
  color: #94a3b8;
  padding: 4rem 1.5rem 2rem;
  border-top: 4px solid var(--brand-emerald-600);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.925rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-links a {
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-emerald-500);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Utility Animations */
.skeleton-box {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: var(--radius-md);
  height: 260px;
}

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}

/* ==========================================================================
   Staging & Draft Legal Protection Styles
   ========================================================================== */
.staging-draft-banner {
  background: linear-gradient(90deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  z-index: 1100;
  border-bottom: 2px solid #92400e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.staging-banner-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.staging-banner-container a {
  color: #fef08a;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 4px;
  transition: color var(--transition-fast);
}

.staging-banner-container a:hover {
  color: #ffffff;
}

.draft-badge {
  display: inline-block;
  background: #f59e0b;
  color: #000000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.draft-legal-notice-box {
  width: 100%;
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-left: 5px solid #f59e0b;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 25px 0 15px 0;
  color: var(--text-light);
}

.draft-legal-notice-box .notice-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #fbbf24;
}

.draft-legal-notice-box h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0;
}

.draft-legal-notice-box p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.draft-legal-notice-box a {
  color: #fbbf24;
  text-decoration: underline;
  font-weight: 600;
}

.draft-legal-notice-box a:hover {
  color: #ffffff;
}

