@import "{{ site.theme }}";

/* Import Libre Franklin font */
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;500;600;700&display=swap');

/* Base Styles */
body {
    background-color: #f4f6fa;
    color: #1e234d;
    font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Banner Styles */
.hero {
    background-color: #1e234d;
    color: #f4f6fa;
    padding: 3rem 2rem;
    text-align: center;
}

/* Base link style */
a {
  color: #61bdaa;
  text-decoration: underline; /* or none if you prefer */
  font-weight: 600;
}

/* Link hover style */
a:hover {
  color: #094839; /* example accent color */
  text-decoration: underline;
}

.hero h1 {
    font-size: 2.5rem;
    color: #f4f6fa;
    margin-bottom: 0.5rem;
    font-weight: 800; /* Project name in bold */
}

.hero p {
    font-size: 1.25rem;
    color: #f4f6fa;
    opacity: 0.9;
    font-weight: 400;
}

.hero-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
}

.site-logo {
    max-height: 200px;
    width: auto;
}

/* Content Styling */
.content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    color: #1e234d;
    font-family: 'Libre Franklin', sans-serif;
}

h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
}

p, li {
    color: #1e234d;
    font-size: 1.1rem;
}

.secondary-text {
    color: #1e234d;
    opacity: 0.7;
}

.site-footer {
    background-color: #f4f6fa;
    color: #1e234d;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.95rem;
    border-top: 1px solid #ddd;
    margin-top: 3rem;
}

/* Buttons */
button, .button {
    background-color: #61bdaa;
    color: #1e234d;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button--medium {
    padding: 0.5rem 1rem;
}

.button--small {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;    
}

button:hover, .button:hover {
    background-color: #094839; /* Slightly darker hover */
    transform: translateY(-2px);
}

table {
  width: 100%;
  border-collapse: collapse;      /* makes single-grid borders */
  margin: 1rem 0;
}

th, td {
  border: 1px solid #1e234d;
  padding: 0.5rem 0.75rem;
  text-align: left;
  vertical-align: middle;
}

thead th {
  background-color: #1e234d;                 /* your dark text color */
  color: #f4f6fa;  
  font-weight: 700;
}

hr {
  border: none;               /* remove the default thin border */
  height: 3px;                /* thickness of the line */
  background-color: #1e234d;  /* your dark brand color */
  margin: 2.5rem 0 1.25rem;   /* extra space above, normal below */
  opacity: 1;                 /* some themes lower <hr> opacity */
}

.legend {
  font-family: 'Libre Franklin', sans-serif;
  color: #1e234d; /* brand color */
}

.leaflet-popup-content {
  font-family: 'Libre Franklin', sans-serif;
  color: #1e234d;
  font-size: 0.95rem;
  line-height: 1.4;
}

.leaflet-popup-content strong {
  color: #1e234d;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1.1rem;
    }

    .content {
        padding: 0 1rem;
    }
}
