﻿html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
    background-color: #f4f3ef;
    color: #0a1d37;
    font-family: Arial, sans-serif;
}

h1, h2, h5, p, div {
    color: #0a1d37;
}

p {
    color: #555;
    line-height: 1.6;
}

h2 {
    margin-bottom: 1rem;
}

h5 {
    margin-bottom: 0.5rem;
}

a {
    color: #B69F5E;
    text-decoration: none;
}

    a:hover {
        color: #d2ba80;
        text-decoration: underline;
    }

    a .shadow:hover {
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
        transform: scale(1.02);
        transition: 0.3s ease-in-out;
    }

.btn {
    background-color: #1a200e;
    color: #B69F5E;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
}

    .btn:hover {
        background-color: #2a3518;
    }

    .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;
    }

.navbar-olive {
    background-color: #1a200e !important;
}

    .navbar-olive .nav-link,
    .navbar-olive .navbar-brand {
        color: #B69F5E !important;
    }

        .navbar-olive .nav-link:hover,
        .navbar-olive .nav-link.dropdown-toggle:hover {
            color: #d2ba80 !important;
        }

        .navbar-olive .nav-link.dropdown-toggle {
            color: #B69F5E !important;
        }

    .navbar-olive .dropdown-menu .dropdown-item {
        color: #1a200e;
    }

        .navbar-olive .dropdown-menu .dropdown-item:hover {
            background-color: #B69F5E;
            color: white;
        }

.scroll-no-bar {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

    .scroll-no-bar span {
        display: inline-block;
        padding-left: 100%;
        animation: scroll-left 10s linear infinite;
    }

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.scroll-box {
    width: 400px;
    height: 1.5rem;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
    border: 1px solid #dee2e6;
}

.scroll-text {
    position: absolute;
    left: 0;
    white-space: nowrap;
}

.divider {
    height: 1px;
    background-color: #ccc;
    margin: 5px 0;
    list-style: none;
}

.wrap-text {
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    max-width: 350px;
}

.border-olive {
    border: 2px solid #1a200e;
}

.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
}

    .footer p,
    .footer address {
        margin: 0;
        color: #555;
        line-height: 1.5;
    }

.banner-container {
    width: 100%;
    overflow: hidden;
}

.banner-image,
img.img-fluid {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.overlay-image-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.overlay-text {
    position: absolute;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 15px 25px;
    border-radius: 8px;
}

    .overlay-text.top-right {
        top: 20px;
        right: 30px;
        transform: none;
        text-align: right;
        background-color: transparent;
    }

.balanced-image {
    width: 100%;
    max-height: 650px;
    height: auto;
    object-fit: contain;
}

.row + .row {
    border-top: none;
}

@media (max-width: 768px) {
    .overlay-image-container {
        height: 250px;
    }

    .overlay-text h1 {
        font-size: 1.5rem;
    }

    .overlay-text p {
        font-size: 1rem;
    }

    .balanced-image {
        max-height: 250px;
    }
}

@media print {
    .no-print {
        display: none !important;
    }

    .print-only {
        display: block !important;
    }
}

@media screen {
    .print-only {
        display: none !important;
    }
}