/* Camino Downloads Theme – styles.css */
/* Author: Simon + Copilot | Date: 2025-09-14 */

/* Base colors */
:root {
  --camino-green: #0EA353;
  --camino-green-light: #14EB77;
  --camino-dark: #1A1A1A;
  --camino-accent: #0DE59D;
  --camino-bg: #F8F9FA;
  --camino-border: #E0E0E0;
}

/* Body and typography */
body {
  background-color: var(--camino-bg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #333;
}


header {
  background-color: var(--camino-green);
}

.navbar {
  background-color: transparent; /* Let header control the background */
}

.navbar .navbar-brand,
.navbar .nav-link {
  color: #fff !important;
}
.navbar .nav-link:hover {
  color: var(--camino-green-light) !important;
}
.navbar-toggler {
  border-color: #fff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--camino-green);
}

/* Tables */
.table {
  border: 1px solid var(--camino-border);
}
.table th {
  background-color: var(--camino-green);
  color: #fff;
}
.table td {
  vertical-align: middle;
}
.table-bordered th,
.table-bordered td {
  border-color: var(--camino-border);
}

/* Buttons */
.btn-outline-primary {
  border-color: var(--camino-green);
  color: var(--camino-green);
}
.btn-outline-primary:hover {
  background-color: var(--camino-green);
  color: #fff;
}

/* Footer */
footer {
  background-color: var(--camino-dark);
  color: #fff;
}
footer h5 {
  color: var(--camino-green-light);
}
footer a {
  color: #fff;
}
footer a:hover {
  color: var(--camino-accent);
  text-decoration: underline;
}
footer hr {
  border-top: 1px solid var(--camino-border);
}

/* Alerts */
.alert-danger {
  background-color: #dc3545;
  color: #fff;
}
.alert-warning {
  background-color: #ffc107;
  color: #212529;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1rem;
  }
  footer .row > div {
    text-align: center;
  }
}
