:root {
  --primary-color: #1a1a2e;
  --warning-color: #ffc107;
  --light-bg: #f8f9fa;
  --dark-text: #212529;
  --muted-text: #6c757d;
  --border-color: #dee2e6;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

html,
body {
  height: 100%;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.btn-warning {
  background-color: var(--warning-color);
  border-color: var(--warning-color);
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.text-warning {
  color: var(--warning-color) !important;
}

.bg-warning {
  background-color: var(--warning-color) !important;
}

.card {
  transition: all 0.3s ease;
}

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

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow {
  box-shadow: var(--shadow-md);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-top: 3px solid var(--warning-color);
  display: none;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}

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

.cookie-content {
  color: white;
  font-size: 0.95rem;
}

.cookie-content p {
  margin-bottom: 0.5rem;
}

.cookie-buttons {
  margin: 1rem 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cookie-banner {
    max-height: 90vh;
  }

  h1 {
    font-size: 2rem;
  }

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

  .hero-section .row {
    flex-direction: column-reverse;
  }

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

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .cookie-banner {
    padding: 1rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }
}

a {
  color: var(--warning-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #e0a800;
  text-decoration: underline;
}

.text-muted {
  color: var(--muted-text) !important;
}

hr {
  border-color: var(--border-color);
}

.border-bottom {
  border-color: var(--border-color) !important;
}

.form-control {
  border-color: var(--border-color);
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--warning-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}

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

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.display-4,
.display-5 {
  font-weight: 700;
}

footer {
  margin-top: auto;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-md-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.sticky-top {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.rounded {
  border-radius: 0.5rem;
}

.rounded-circle {
  border-radius: 50%;
}

ul {
  list-style-position: inside;
}

li {
  margin-bottom: 0.5rem;
}

.font-weight-bold {
  font-weight: 600;
}

@media print {
  .cookie-banner,
  .navbar {
    display: none;
  }
}
