:root {
  --primary-red: #dc3545;
  --dark: #212529;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --text-secondary: #6c757d;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
}

.fw-bold {
  font-weight: 700 !important;
}

.text-danger {
  color: var(--primary-red) !important;
}

.btn-danger {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.btn-outline-danger {
  color: var(--primary-red);
  border-color: var(--primary-red);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-danger:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-link {
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

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

.nav-item.active .nav-link {
  color: var(--primary-red) !important;
}

.hero {
  min-height: 500px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

.page-header {
  padding: 4rem 0;
}

.page-header h1 {
  font-size: 3rem;
}

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

.card-img-top {
  height: 300px;
  object-fit: cover;
}

.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.95);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: block;
}

footer {
  background-color: var(--dark);
  margin-top: 5rem;
}

footer a:hover {
  color: var(--primary-red) !important;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .card-img-top {
    height: 250px;
  }

  .text-md-right {
    text-align: left !important;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .card-img-top {
    height: 200px;
  }
}
