

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: #182025;
    *color:#ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

    h3::after {
        content: "";
        display: block;
        width: 400px;
        height: 3px;
        background: linear-gradient(to right, #f6be00, rgba(246, 190, 0, 0));
        margin-top: 8px;
    }

.narrow-container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section {
    /*background-color: #f9f9f9;*/
    background-color: #182025;
    color: #ffffff;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-brand {
    white-space: normal;
    line-height: 1.2;
}

main {
    flex: 1 0 auto;
}

.dark-gray {
    background-color: #182025;
}

/*footer {
    background-color: #182025 !important;
    text-align: center;
    padding: 2rem 2rem;
}

    footer a.footer-link {
        color: #435cd0 !important;
        text-decoration: none !important;
        transition: color 0.3s ease;
    }

        footer a.footer-link:hover {
            color: #f4b400 !important;*/ /* Your yellow tone */
        /*}*/



footer {
    background-color: #182025 !important;
    padding: 2rem 1rem;
}

/*.footer-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}*/
    a.link {
        color: #435cd0 !important;
        text-decoration: none !important;
        transition: color 0.3s ease;
    }

        a.link:hover {
            color: #f4b400 !important; /* Your yellow tone */
        }

.carousel-item {
    height: auto;
    display: flex;
    align-items: stretch;
}

.carousel-slide-wrapper {
    height: clamp(200px, 50vh, 400px);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1) saturate(1.2);
    opacity: 0.9;
}

.carousel-caption-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 600px;
}



.gallery-thumb-wrapper {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.fa-yellow {
    color: #f7b503 !important;
}

/*
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #222;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
}

    .cookie-banner button {
        margin-left: 10px;
        background: #ffc107;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
    }*/

.cookie-center-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 90%;
    max-width: 400px;
}

.cookie-center-card {
    background-color: rgba(33, 33, 33, 0.95);
}


.swiper {
    padding: 2rem 1rem;
}


.swiper-button-next,
.swiper-button-prev {
    color: black; 
    z-index: 10;
}
.card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.card-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.card-content {
    position: absolute;
    bottom: 0;
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 1rem;
}

    .card-content small {
        font-size: 0.75rem;
        letter-spacing: 1px;
        font-weight: bold;
    }

    .card-content h4 {
        margin: 0.25rem 0 0;
        font-size: 1.1rem;
    }



@media (max-width: 576px) {
    .carousel-caption-content h1 {
        font-size: 1.5rem;
    }

    .carousel-caption-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    .swiper-slide {
        width: 80%; 
    }


    .mobile-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        gap: 0.0rem;
    }

        .mobile-grid .nav-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

            .mobile-grid .nav-link i {
                margin-bottom: 0.25rem;
                font-size: 1rem;
            }
}