
:root {
  --primary: #6b0f1a;
  --secondary: #1a472a;
  --accent1: #f0c75e;
  --accent2: #2a2d4f;
  --bg-light: #f9f7f1;
  --bg-dark: #191716;
  --text-primary: #2d2926;
  --text-secondary: #5d5b58;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fira Code', monospace;
  font-weight: 700;
}


.font-fira {
  font-family: 'Fira Code', monospace;
}


.cookie-category:checked + label {
  background-color: var(--primary);
}

.cookie-category:checked + label + .toggle-dot {
  transform: translateX(1.5rem);
  background-color: white;
}


.aspect-w-16 {
  position: relative;
  padding-bottom: 56.25%;
}

.aspect-w-16 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


a:focus, button:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--accent1);
  outline-offset: 2px;
}


.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #590c16;
}


.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 10;
}


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

.card-hover-effect:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}


input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 15, 26, 0.25);
}


@media (max-width: 768px) {
  button, 
  [type="button"],
  [type="submit"] {
    min-height: 44px;
    min-width: 44px;
  }
  
  a {
    padding: 0.25rem 0;
  }
}


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

.prose h2 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h3 {
  color: var(--secondary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
}

.prose a:hover {
  color: #590c16;
}


@media print {
  body {
    font-size: 12pt;
    color: black;
    background-color: white;
  }
  
  header, footer, nav, button, .no-print {
    display: none !important;
  }
  
  a {
    text-decoration: none;
    color: black;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 90%;
    color: #333;
  }
}