@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200&family=Montserrat:wght@200&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

html, body {
    font-family: "Poppins", sans-serif;
    font-size: 1em;
    line-height: 1.5em;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: rgba(250, 250, 250, 1);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
}

.container, .container-fluid {
    --bs-gutter-x: 0 !important;
}

.container-lg {
    margin: auto;
}

a.nav-link {
    color: rgba(250, 250, 250, 1) !important;
}

a:hover, a.active {
    color: rgba(69, 197, 137, 1) !important;
}

.navbar {
    font-family: 'Dosis', sans-serif;
    background: rgba(25, 41, 68, 0.9) !important;
    width: 100%;
    min-height: 6.3rem;
}

.logo-link {
    color: #4E495D;
    text-decoration: none;
    min-width: 40em;
    height: 5em;
    display: flex;
    align-items: center;
}

.logo {
    height: 100%;
    width: auto;
    margin: auto 0;
}

.logo-text-container {
    height: 100%;
    padding-left: 1em;
    display: flex;
    align-items: center;
}

.logo-upper-text {
    color: white;
    font-size: 1.6em;
    font-weight: bold;
    letter-spacing: 0.2em;
}

#navbarSupportedContent {
    z-index: 9;
}

.navbar-toggler {
    background: lightgrey;
    /*border: 1px solid black;*/
    z-index: 9;
}
.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: #45c589;
    margin: 4px 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 1rem 1.2rem;
    font-size: 1.5rem;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-expand-lg .navbar-nav .nav-link:hover, .navbar-expand-lg .navbar-nav .nav-link:active {
    /*border-top: 4px solid #45c589;*/
    color: #45c589;
}

.navbar-nav .btn {
    background-color: rgba(69, 197, 137, 1);
    color: #FAFAFA;
    border-radius: 5px;
    padding: 1rem;
    margin: 2rem 1rem;
    font-weight: bold;
}
.navbar-nav .btn:hover {
    background-color: #45c589;
}

.login-button {
    position: fixed;
    top: 5px;
    right: 5px;
}

.l-button {
    color: white;
    background-color: #45c589;
    border: none;
    font-size: 18px;
}

/* Footer Styles */
.footer-container {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    background: rgba(25, 41, 68, 0.96) !important;
    width: 100%;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
    border-radius: 5px;
}

.footer-banner-bg{
    background: white;
}

.footer p {
    color: white;
    font-size: 18px;
    margin: auto 0;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: auto;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #45c589;
}

/* Toast Styles */
.toast {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}
.toast .danger {
    background: red;
}
.toast .success {
    background: rgba(69, 197, 137, 0.8);
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    border: 1px solid white;
    width: 40%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}
