/* ===== BIEN DANS MES PATTES - Styles CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  /* Colors */
  --background: hsl(40, 30%, 98%);
  --foreground: hsl(25, 30%, 15%);
  --card: hsl(40, 25%, 97%);
  --card-foreground: hsl(25, 30%, 15%);
  --primary: hsl(25, 85%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(30, 25%, 92%);
  --secondary-foreground: hsl(25, 40%, 25%);
  --muted: hsl(35, 20%, 94%);
  --muted-foreground: hsl(25, 15%, 45%);
  --accent: hsl(25, 35%, 25%);
  --accent-foreground: hsl(40, 30%, 98%);
  --border: hsl(30, 20%, 88%);
  --ring: hsl(25, 85%, 55%);
  --destructive: hsl(0, 84%, 60%);
  --success: hsl(142, 71%, 45%);
  
  /* Custom Colors */
  --orange-warm: hsl(25, 85%, 55%);
  --orange-light: hsl(30, 80%, 65%);
  --cream: hsl(40, 30%, 96%);
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(25, 85%, 55%) 0%, hsl(30, 80%, 60%) 50%, hsl(35, 75%, 65%) 100%);
  --gradient-warm: linear-gradient(180deg, hsl(40, 30%, 98%) 0%, hsl(35, 25%, 94%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(40, 25%, 99%) 0%, hsl(35, 20%, 95%) 100%);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -4px hsla(25, 30%, 30%, 0.1);
  --shadow-card: 0 8px 30px -8px hsla(25, 30%, 30%, 0.12);
  --shadow-elevated: 0 20px 50px -12px hsla(25, 30%, 30%, 0.2);
  
  /* Radius */
  --radius: 0.75rem;
}

/* ===== Base Styles ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: hsl(25, 85%, 50%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--secondary);
  border-color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-secondary {
  background: var(--primary-foreground);
  color: var(--primary);
}

.btn-secondary:hover {
  background: hsla(0, 0%, 100%, 0.9);
}

/* ===== Cards ===== */
.card {
  background: var(--card);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow-card);
}

.card-header {
  padding: 1.5rem 1.5rem 1rem;
}

.card-content {
  padding: 0 1.5rem 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* ===== Utilities ===== */
.text-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-hero { background: var(--gradient-hero); }
.bg-gradient-warm { background: var(--gradient-warm); }
.bg-gradient-card { background: var(--gradient-card); }

.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-elevated { box-shadow: var(--shadow-elevated); }

.paw-pattern {
  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='%23d4a574' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='35' r='8'/%3E%3Ccircle cx='18' cy='25' r='5'/%3E%3Ccircle cx='42' cy='25' r='5'/%3E%3Ccircle cx='22' cy='15' r='4'/%3E%3Ccircle cx='38' cy='15' r='4'/%3E%3C/g%3E%3C/svg%3E");
}

.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:flex-row { flex-direction: row; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:text-7xl { font-size: 4.5rem; }
}

.hidden { display: none; }
.block { display: block; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) * 1.25); }
.rounded-2xl { border-radius: calc(var(--radius) * 2); }
.rounded-3xl { border-radius: calc(var(--radius) * 3); }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }

.overflow-hidden { overflow: hidden; }

.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease; }
.transition-transform { transition: transform 0.3s ease; }

.hover\:text-primary:hover { color: var(--primary); }
.hover\:scale-110:hover { transform: scale(1.1); }

.backdrop-blur-sm { backdrop-filter: blur(4px); }

.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(40, 30%, 98%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-logo img {
  height: 3.5rem;
  width: auto;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(25, 30%, 15%, 0.8);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--primary);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta { display: block; }
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1rem;
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: hsla(25, 30%, 15%, 0.8);
  padding: 0.5rem 0;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsla(40, 30%, 98%, 0.4), hsla(40, 30%, 98%, 0.6), var(--background));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  text-align: center;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(25, 85%, 55%, 0.1);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .hero-description { font-size: 1.25rem; }
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.hero-detail svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.hero-detail span {
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsla(25, 30%, 15%, 0.3);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
  animation: scroll-bounce 1.5s infinite;
}

.scroll-indicator::after {
  content: '';
  width: 0.375rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: 9999px;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Courses Section ===== */
.courses {
  padding: 6rem 0;
  background: var(--gradient-warm);
}

.courses-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== PARCOURS GRID - 2x2 Layout ===== */
.parcours-grid-container {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.parcours-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.parcours-card {
  flex: 0 0 calc(50% - 0.75rem);
  width: calc(50% - 0.75rem);
  background: hsl(40, 25%, 97%);
  border-radius: 1rem;
  box-shadow: 0 8px 30px -8px hsla(25, 30%, 30%, 0.12);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.parcours-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -12px hsla(25, 30%, 30%, 0.2);
}

.parcours-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.parcours-card-header svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.parcours-type-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: hsla(25, 85%, 55%, 0.1);
  color: hsl(25, 85%, 55%);
  font-size: 0.875rem;
  font-weight: 500;
}

.parcours-distance {
  font-size: 1.75rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: hsl(25, 30%, 15%);
}

.parcours-dog-option {
  color: hsl(25, 85%, 55%);
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
}

.parcours-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.parcours-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(25, 15%, 45%);
  font-size: 0.9rem;
}

.parcours-time svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.parcours-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(25, 85%, 55%);
}

.parcours-btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: hsl(25, 85%, 55%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.parcours-btn:hover {
  background: hsl(25, 85%, 50%);
  transform: translateY(-2px);
}

/* Mobile: Stack cards vertically */
@media (max-width: 700px) {
  .parcours-row {
    flex-wrap: wrap;
  }
  
  .parcours-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 400px;
  }
}

/* Larger screens */
@media (min-width: 1024px) {
  .parcours-row {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .parcours-grid-container {
    max-width: 980px;
  }
}

.course-card {
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}

.course-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}

.course-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.course-type {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: hsla(25, 85%, 55%, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.course-dog-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.course-distance {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.course-dog-label {
  color: var(--muted-foreground);
}

.course-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.course-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.course-time svg {
  width: 1rem;
  height: 1rem;
}

.course-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.info-box {
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-card);
  max-width: 48rem;
  margin: 0 auto;
}

.info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.info-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* ===== About Section ===== */
.about {
  padding: 6rem 0;
  background: var(--background);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
}

.about-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(25, 85%, 55%, 0.1);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.about h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about h2 { font-size: 3rem; }
}

.about-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.missions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.mission-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: hsla(30, 25%, 92%, 0.5);
}

.mission-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.mission-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.value-title {
  font-weight: 600;
}

.value-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.about-visual {
  position: relative;
}

.about-logo-box {
  position: relative;
  background: var(--gradient-card);
  border-radius: calc(var(--radius) * 3);
  padding: 3rem;
  box-shadow: var(--shadow-elevated);
}

.about-logo-box img {
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  display: block;
}

.about-decoration-1 {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background: hsla(25, 85%, 55%, 0.1);
  filter: blur(2rem);
}

.about-decoration-2 {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  background: hsla(30, 80%, 65%, 0.2);
  filter: blur(2rem);
}

.about-stats {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  white-space: nowrap;
}

.about-stats p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.about-stats strong {
  color: var(--primary);
  font-weight: 700;
}

/* ===== Committee Section ===== */
.committee {
  padding: 6rem 0;
  background: hsla(30, 25%, 92%, 0.3);
}

.committee-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .committee-grid { grid-template-columns: repeat(3, 1fr); }
}

.member-card {
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}

.member-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}

.member-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover .member-avatar {
  transform: scale(1.05);
  box-shadow: var(--shadow-soft), 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.member-avatar span {
  font-size: 1.875rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-foreground);
}

.member-name {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 0.25rem;
}

.member-role {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: hsla(25, 85%, 55%, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 auto 1rem;
}

.member-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: center;
  flex: 1;
}

/* ===== Practical Info Section ===== */
.practical-info {
  padding: 6rem 0;
  background: var(--background);
}

.practical-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .practical-grid { grid-template-columns: repeat(2, 1fr); }
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: hsla(30, 25%, 92%, 0.5);
}

.schedule-time {
  font-weight: 700;
  color: var(--primary);
  min-width: 60px;
}

.schedule-event {
  color: var(--foreground);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.info-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-top: 0.125rem;
}

.info-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: 'Poppins', sans-serif;
}

.info-item p {
  color: var(--muted-foreground);
}

.equipment-list {
  list-style: none;
}

.equipment-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.equipment-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: hsla(25, 85%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.equipment-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.tip-box {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: calc(var(--radius) * 1.25);
  background: hsla(25, 85%, 55%, 0.05);
  border: 1px solid hsla(25, 85%, 55%, 0.2);
}

.tip-box p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.tip-box strong {
  color: var(--foreground);
}

/* ===== Accordion ===== */
.accordion {
  max-width: 48rem;
  margin: 0 auto;
}

.accordion-item {
  background: var(--card);
  border-radius: calc(var(--radius) * 1.25);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

.accordion-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: hsla(25, 85%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accordion-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.accordion-title {
  font-weight: 600;
  flex: 1;
}

.accordion-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.3s;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem 0 4.5rem;
  color: var(--muted-foreground);
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem 4.5rem;
  transition: max-height 0.4s ease-in, padding 0.35s ease-in;
}

/* ===== Membership Section ===== */
.membership {
  padding: 6rem 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.membership .paw-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.membership-content {
  position: relative;
  z-index: 10;
}

.membership h2 {
  color: var(--primary-foreground);
}

.membership-subtitle {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.9);
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

.benefit-card {
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(8px);
  border-radius: calc(var(--radius) * 2);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: hsla(0, 0%, 100%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}

.benefit-desc {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
}

/* ===== Contact Section ===== */
.contact {
  padding: 6rem 0;
  background: hsla(30, 25%, 92%, 0.3);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: hsla(25, 85%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-value a {
  color: var(--primary);
}

.contact-value a:hover {
  text-decoration: underline;
}

.donate-card {
  padding: 2rem;
  border-radius: calc(var(--radius) * 2);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.donate-card svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.donate-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.donate-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ===== Forms ===== */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--background);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(25, 85%, 55%, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Footer ===== */
.footer {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-logo img {
  height: 5rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: hsla(40, 30%, 98%, 0.8);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: hsla(40, 30%, 98%, 0.8);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-contact {
  list-style: none;
  font-size: 0.875rem;
  color: hsla(40, 30%, 98%, 0.8);
}

.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid hsla(40, 30%, 98%, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: hsla(40, 30%, 98%, 0.6);
}

.footer-made-with {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-made-with svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  fill: var(--primary);
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Floating animation for logo */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* ===== Auth Pages ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-warm);
  padding: 2rem 1rem;
}

.auth-container {
  width: 100%;
  max-width: 28rem;
}

.auth-card {
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem;
  box-shadow: var(--shadow-elevated);
  text-align: center;
}

.auth-logo {
  display: inline-block;
  margin-bottom: 2rem;
}

.auth-logo img {
  height: 5rem;
  width: auto;
}

.auth-card h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.auth-form {
  text-align: left;
}

.auth-form .form-group {
  margin-bottom: 1.25rem;
}

.auth-form .btn {
  margin-top: 0.5rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.auth-links a {
  color: var(--primary);
  font-weight: 500;
}

.auth-links a:hover {
  text-decoration: underline;
}

.auth-links p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.auth-back {
  margin-top: 1.5rem;
}

.auth-back a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.auth-back a:hover {
  color: var(--primary);
}

/* ===== Alerts ===== */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.alert-error {
  background: hsla(0, 84%, 60%, 0.1);
  border: 1px solid hsla(0, 84%, 60%, 0.3);
  color: hsl(0, 84%, 40%);
}

.alert-success {
  background: hsla(142, 71%, 45%, 0.1);
  border: 1px solid hsla(142, 71%, 45%, 0.3);
  color: hsl(142, 71%, 30%);
}

/* ===== Profile ===== */
.profile-header {
  background: var(--gradient-hero);
  color: white;
  padding: 3rem 0;
  margin-top: 5rem;
}

.profile-avatar {
  width: 5rem;
  height: 5rem;
  background: hsla(0, 0%, 100%, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.profile-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.profile-email {
  opacity: 0.8;
}

.profile-section {
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-card);
}

.profile-section h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--muted-foreground);
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* ===== Admin Edit Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: hsla(0, 0%, 0%, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 9999;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.modal-container.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.modal-content {
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-elevated);
  position: relative;
  padding: 2rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--secondary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--foreground);
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: var(--border);
  transform: scale(1.1);
}

.admin-edit-modal-content h3 {
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
}

.admin-edit-modal-content label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.admin-edit-modal-content input,
.admin-edit-modal-content select,
.admin-edit-modal-content textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--background);
  color: var(--foreground);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.admin-edit-modal-content input:focus,
.admin-edit-modal-content select:focus,
.admin-edit-modal-content textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(25, 85%, 55%, 0.15);
}

/* ===== Auth Modals ===== */
body.modal-open {
  overflow: hidden;
}

.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: hsla(0, 0%, 0%, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 201;
  width: 90%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-elevated);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.auth-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.auth-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--secondary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.auth-modal-close:hover {
  background: var(--border);
  transform: scale(1.1);
}

.auth-modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--foreground);
}

.auth-modal-content {
  padding: 2.5rem;
  text-align: center;
}

.auth-modal-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.auth-modal-logo img {
  height: 4rem;
  width: auto;
}

.auth-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.auth-modal-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.auth-modal .auth-form {
  text-align: left;
}

.auth-modal .auth-form .form-group {
  margin-bottom: 1rem;
}

.auth-modal .auth-form .btn {
  margin-top: 0.5rem;
}

.auth-modal .auth-links {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.auth-modal .auth-links p {
  margin: 0;
}

.auth-modal .auth-switch {
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
}

.auth-modal .auth-switch:hover {
  text-decoration: underline;
}

/* ===== Auth Pages (Standalone) ===== */
.auth-section {
  min-height: calc(100vh - 10rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  background: var(--gradient-warm);
}

.auth-wrapper {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.auth-card {
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem;
  box-shadow: var(--shadow-elevated);
  text-align: center;
}

.auth-card-wide {
  max-width: 36rem;
}

.auth-card-wide .auth-wrapper,
.auth-section .auth-card-wide {
  max-width: 36rem;
}

.auth-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.auth-logo img {
  height: 4rem;
  width: auto;
}

.auth-card h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.auth-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.auth-form {
  text-align: left;
}

.auth-form .form-group {
  margin-bottom: 1rem;
}

.auth-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.auth-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(25, 85%, 55%, 0.15);
}

.auth-form input::placeholder {
  color: var(--muted-foreground);
}

.auth-form .btn {
  margin-top: 0.5rem;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin: 1.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.form-section-title svg {
  color: var(--primary);
}

.auth-links {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.auth-links p {
  margin: 0;
  color: var(--muted-foreground);
}

.auth-link {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s;
}

.auth-link:hover {
  color: hsl(25, 85%, 45%);
  text-decoration: underline;
}

.auth-back {
  margin-top: 1.5rem;
}

.auth-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.auth-back a:hover {
  color: var(--primary);
}

.auth-back svg {
  width: 1rem;
  height: 1rem;
}

/* Compact Footer */
.footer-compact {
  padding: 1.5rem 0;
  background: var(--secondary);
}

.footer-compact .footer-bottom {
  border: none;
  padding: 0;
  margin: 0;
}

.footer-compact .footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}
