@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');



body {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

* {
    scrollbar-width: 16px;
    scrollbar-color: #0056b3 black;
}

*::-webkit-scrollbar {
    width: 16px;
}

*::-webkit-scrollbar-track {
    background: #0056b3;
}

*::-webkit-scrollbar-thumb {
    background-color: black;
    border-radius: 20px;
    border: 3px solid black;
}

#img {
    max-width: 100%;
    height: auto;
}

main {
    flex: 1;
}

.hotline {
    background-color: black;
    color: white;
    text-align: right;
    padding-left: 25px;
    padding-right: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: "Roboto", serif;
}

#faq-button {
    margin-left: 20px;
    color: white;
    border-color: white;
}

#faq-button:hover {
    background-color: transparent;
}

.navbar {
    padding-top: 25px;
    padding-bottom: 25px;
    min-height: 80px;
    background-color: #0056b3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-family: "Teko", serif;
    font-weight: 400;
    font-style: normal;
}


.navbar-brand {
    padding-left: 25px;
    padding-right: 30px;
}

.nav-link {
    color: white !important;
    font-size: 25px;
}

.carousel-inner {
    height: auto;
    position: relative;
    z-index: 1;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    max-height: 650px;
    height: 100%;
}

#carouselExample {
    position: relative;
    overflow: visible;
}

.calculator-widget {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50%;
    min-height: 200px;
    transform: translateX(-50%);
    z-index: 2;
}


.headline {
    padding-top: 50px;
}

.footer {
    background-color: #0056b3 !important;
}

.copyright {
    background-color: #0056b3 !important;
    color: white !important;
    padding: 15px 0;
    font-size: 14px;
}

.copyright a {
    color: white !important;
    font-size: 14px;
}

.copyright a:hover {
    text-decoration: underline;
}


.footer-info {
    margin-top: 50px;
    padding: 15px 0px 15px 0px;
    background-color: black;
    color: white;
    text-align: center;
    display: flex;
}


.socialmedia {
    padding: 30px 0px 30px 0px;
    text-transform: uppercase;
}

.socialmedia a {
    color: white;
}

.destination-box {
    padding-top: 50px;
}


.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    box-sizing: border-box;
}

.country-flag {
    width: 30px;
    height: auto;
}

#tarifeForm {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: #0056b3;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1
}

#tarifeForm .btn {
    background-color: black;
    border-color: black;
}


@media (max-width: 768px) {
    .copyright .order-2 {
        margin-bottom: 10px;
    }


    .socialmedia {
        padding: 20px 0px 20px 0px !important;
        text-transform: uppercase;
    }


    .hotline {
        display: none;
    }

    .calculator-widget {
        display: none;
    }


    .carousel-inner {
        height: auto;
        position: relative;
        z-index: 1;
    }

    .carousel-item img {
        object-fit: cover;
        width: 100%;
        max-height: 500px;
        height: 500px;
    }

    .navbar-brand {
        padding-left: 0px;
        padding-right: 0px;
    }

    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }



}