@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: Inter;
    font-size: 16px;
}

body {
    background: #F9F9F7;
}


.flags{
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
}

.nvbr-toggler{
    outline: none;
    border: none;
}
a {
    color: var(--bs-black);
    text-decoration: none;
}
.logo {
    width: 90px !important;
    height: 40px !important;
}

.h-60 {
    height: 60px;
}
.list-style-none {
    list-style: none;
}

header {
    height: 60px;
}
.background-size-cover {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}


.search-change {
    z-index: 99;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: height 0.3s ease-in-out,
        opacity 0.3s ease-in-out,
        visibility 0.3s linear;
}

.search-change.active {
    height: 65vh;
    opacity: 1;
    visibility: visible;
}

.outline-none {
    outline: none;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--bs-warning);
    color: var(--bs-black);
}

.heading-img-set-height {
    z-index: -1;
    height: calc(80vh - 60px);
}

.background-size-cover {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

.heading-text {
    color: var(--bs-white);
}

.z-index-1 {
    z-index: 1;
}

.aspect-ratio-11 {
    aspect-ratio: 1/1;
}

.aspect-ratio-21 {
    aspect-ratio: 2/1;
}

.aspect-ratio-12 {
    aspect-ratio: 1/1.3;
}

#dateInput {
    width: 20px !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.placeholder-black::placeholder {
    color: var(--bs-black) !important;
}

.mt--1 {
    margin-top: -1px !important;
}

.mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-container.active {
    transform: translateX(0);
}

.mobile-menu ul {
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

.mobile-menu li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.search-icon {
    margin-left: auto;
}

@media (max-width: 993px) {
    .desktop-menu {
        display: none;
    }

    .navbar-toggler {
        display: block;
    }

    .mobile-menu-container {
        display: block;
    }

    nav ul {
        gap: 2rem;
    }
}
.no-scroll {
    overflow: hidden;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("../sources/icons/menu-burger.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    color: #333;
}

@media (min-width: 993px) {
    .mobile-menu-close {
        display: none;
    }
}




/* Footer Styles */
footer {
    background-color: #f3f2f8;
    padding: 3rem 0;
    margin-top: 3rem;
    width: 100%;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 50%;
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #333;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-evenly;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #ffc107;
}

.footer-contact-item {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.social-button:hover {
    background-color: #e9ecef;
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-column {
        flex: 0 0 calc(50% - 1.5rem);
    }
    
    .footer-contact {
        flex: 0 0 calc(50% - 1.5rem);
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .footer-column {
        flex: 0 0 100%;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .social-button {
        width: 36px;
        height: 36px;
    }
}

.flex-direction-col{
    flex-direction: column;
}



/* T O U R S */

aspect-ratio-15-1{
    aspect-ratio: 1.5/2;
}
.card-tour.active{
    /* background: linear-gradient(to bottom, #E62314 0%, #F19E1822 100%); */
    background: #E170070a;
    border: 1px solid var(--bs-warning);
}
.card-tour{
    background: #ebeaf1;
    border: 1px solid #ebeaf1;
}
.tours-card h4{
    font-size: 24px;
}
.badges{
    top: 10px;
    left: 10px;
}
.mybadge{
    color: #fff;
    padding: 3px 5px;
    margin-bottom: 5px;
    backdrop-filter: blur(500px);
    background-color: #00000066;
    border-radius: 5px;
}