/* @Author - Ludwig Strömbäck*/
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  padding-top: 80px;
}

body {
    background-color: #f8f9fa;
}

.centered-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem; 
}

:root {
    --primary-color: #0057A3; 
    --accent-color: #FFD23F; 
    --light-bg: #F7F9FC;
    --text-dark: #333;
    --text-muted: #666;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.hero-section {
    background-image: url('/images/header5.png');
    background-size: contain; 
    background-position: center bottom; 
    background-repeat: no-repeat;
    background-color: black;
    min-height: 60vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    text-align: center;
    color: white;
    position: relative;
    padding-top: 200px; 
}


.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
    }

    .hero-content p {
        font-size: 1.25rem;
    }

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-warning {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

h2, h5 {
    color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.card {
    border: none;
    background-color: white;
    border-radius: 1rem;
}

.small-text {
    font-size: 0.8rem;
}
