@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italianno&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--bs-body-font-family)
}

:root {
    --bs-body-font-family: "Playfair Display", serif;
}

.navbar-brand {
    font-family: 'Italianno', cursive;
    font-weight: 400;
    font-style: normal;
}

.hero {
    background-image: url('./assets/heroPic-4.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
}

.icon {
    width: 50px;
}

.carousel {
    position: relative;
    height: 400px;
    width: 600px;
    margin-bottom: 60px;
}

.carousel__track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel__track {
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 250ms ease-in;
}

.carousel__slide {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    height: 100%;
}

.carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.carousel__button img {
    width: 20px;
}

.carousel__button--left {
    left: -15px;
}

.carousel__button--rigth {
    right: -15px;
}

.carousel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.carousel__nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.carousel__indicator {
    border: 0;
    border-radius: 50%;
    margin: 5px;
    width: 15px;
    height: 15px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.carousel__indicator.current-slide {
    background: rgba(0, 0, 0, 0.75);
}

.is_hidden {
    display: none;
}

.map-container {
    width: 80%;
    overflow: hidden;
}

.whatsapp-button {
    margin-top: 20px;
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 768px) {
    .map-container {
        margin-bottom: 10px;
    }

    .contact-info {
        align-items: center;
        justify-content: center;
    }
    
    
}

@media (max-width: 500px) {
    .carousel {
        position: relative;
        height: 200px;
        width: 800px;
        margin-bottom: 60px;
    }
}