@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

body, .navbar, .card, .hero, h1, h2, h3, h4, h5, h6, .button {
    font-family: 'Oswald', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif !important;
    letter-spacing: 0.5px;
    font-stretch: condensed;
}

body{
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background-image: url('../Images/background.gif');
    background-position: center;
    background-size: cover;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.3); 
    pointer-events: none;
    z-index: 0;
}
body > * {
    position: relative;
    z-index: 1;
}
header {
    background-color: #B3E0FF;
    color: #ffa039;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    width: 100%;
}
.headercontainer {
    display: flex;
    justify-content: space-between;
}
.headercontainer header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.nav-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}
.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
header h1 {
    flex: 0 0 auto;
    margin: 0 40px;
    font-size: 50px;
    text-align: left; 
}


.header-inner {
    display: flex;
    align-items: center;
    gap: 40px; 
    padding: 10px 40px;
}

.header-links {
    display: flex;
    gap: 16px;
}

.header-links a {
    color: #ffa039;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 4px;
}

.header-links a:hover {
    background: rgba(255,160,57,0.1);
}

.logo { border-radius: 6px; }

.site-header .navbar, .navbar { 
    background-color: #B3E0FF !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25); 
}


.hero { 
    min-height: 50vh; 
    background-image: url('../Images/background.gif');
    background-size: cover;
    background-position: center;
    background-color: rgba(0,0,0,0.45); 
    background-blend-mode: multiply; 
}
.hero .lead { opacity: 0.95; }


.card h3 { 
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
}


:root { 
    --bg: #B3E0FF; 
    --text: #111; 
    --muted: #666; 
    --accent: #ffa039;
}
.dark-theme { 
    --bg: #111; 
    --text: #B3E0FF; 
    --muted: #ffa039; 
    --accent: #ffa039;
}
body { 
    background: var(--bg); 
    color: var(--text); 
}
body p, body li { 
    color: var(--muted); 
}


a:focus, button:focus, input:focus, select:focus {
  outline: 3px solid rgba(13,110,253,0.5);
  outline-offset: 2px;
}



.button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: background-color 0.15s, border-color 0.15s, color 0.15s;
    background-color: var(--bg);
    color: var(--accent);
    text-decoration: none;
}
.button:hover, .button:focus {
    filter: brightness(0.95);
    text-decoration: none;
}
.button-primary {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.button-primary:hover, .button-primary:focus {
    background-color: #ff8c1a;
    border-color: #ff8c1a;
    color: #fff;
}
.button-outline-light {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.button-outline-light:hover, .button-outline-light:focus {
    background: #fff;
    color: var(--accent);
}
.button-large {
    padding: 0.75rem 2rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
}
.button-small {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}


@media (max-width: 576px) {
  header h1 { font-size: 28px; margin: 0 16px; }
}
