:root {
  --primary-color: #d4572e;
  --secondary-color: #922a1f;
  --accent-color: #f4a460;
  --light-color: #fff8f3;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.hero-banner h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(212, 87, 46, 0.15) !important;
}

/* Gallery */
.gallery-card {
  border: 1px solid #e0e0e0;
}

.gallery-image-container {
  position: relative;
  background: #f5f5f5;
}

.gallery-card img {
  transition: transform 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--secondary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Map */
#map {
  border-radius: 0.5rem;
}

.leaflet-container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Forms */
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(212, 87, 46, 0.25);
}

/* Navigation */
.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

/* Backgrounds */
.bg-gradient {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Text */
.text-muted {
  color: #6c757d !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 2rem;
  }
  
  .sticky-lg-top {
    position: static !important;
  }
}

/* Accessibility */
button:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}