@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Lugrasimo&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lugrasimo&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-principal: rgb(83, 40, 8);
}


.fontPrincipal {
    font-family: "Lugrasimo", cursive;
    font-weight: 500;
    font-style: normal;
}

.fontSecundaria {
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.navbar {
    margin: -9px 0px;
    width: 100%;
}

.navbar-toggler {
    max-width: 100%;
}

.navbar-toggler:hover {
    border: 1px solid rgb(255, 255, 255);
}

.navbar * {
    padding: 10px 0px;
}

#containerNavbar {
    background-color: var(--cor-principal);
}

#logoRomana {
    width: 100px;
}

#linkPedido {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.592);
    font-size: 18px;
    border: 2px solid rgba(245, 245, 245, 0.662);
    padding: 5px;
    border-radius: 16px;
    position: fixed;
    top: 8%;
    left: 55%;
    transform: translate(-50%, -50%);
}

#linkPedido:hover {
    scale: 1.04;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(245, 245, 245);
}

#offcanvasDarkNavbar {
    background-color: var(--cor-principal);
}

.offcanvas {
    max-width: 100vw;
    overflow-x: hidden;
}

main {
    min-height: 100vh;
    background-color: var(--cor-principal);
}

.carousel-item img {
    height: 420px;
}

.carousel-inner,
.carousel-item,
.carousel-item img {
    max-width: 100vw;
    width: 100%;
}

.textImgPizza {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;

    width: 70%;
    font-size: 35px;
    text-align: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 1px rgb(0, 0, 0);
}

.linkCardapio {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;

    width: 260px;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 1px rgb(0, 0, 0);
    padding: 5px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.342);
    background-color: #f9d856da;
}

.linkCardapio:hover {
    border: 1px solid rgb(255, 255, 255);
    filter: drop-shadow(0 0 5px #ffffff8e);
}

.spacer {
    background-color: rgba(83, 40, 8, 0.574);
    color: white;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 900px;
    flex-wrap: wrap;

    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;

    background-color: rgba(255, 255, 255, 0.034);
    color: #fefefe;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


section>* {
    flex-wrap: wrap;
    max-width: 100%;
    text-align: center;
}

.pizzaAnimation {
    flex-direction: column;
    margin: 10px;
    justify-self: center;
    width: 90%;
}

.pizzaAnimation img {
    width: 100%;
    max-width: 270px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.containerLocalizacao {
    background-color: #f9f3ec;
    /* fundo claro e sofisticado */
    padding: 60px 20px;
    text-align: center;
}

.containerLocalizacao h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #512e14;
    margin-bottom: 10px;
}

.descricaoLocalizacao {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #7a5c3b;
    margin-bottom: 30px;
}

.localizacaoRomana {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.rodape {
    background-color: #512e14;
    /* marrom escuro */
    color: #f9e0c7;
    /* tom claro/bege */
    text-align: center;
    padding: 30px 20px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
}

.sloganFinal {
    color: #d2b59b;
    font-style: italic;
    margin-top: 8px;
}

@media (min-width: 600px) {
    .carousel-item img {
        height: 80%;
    }

    .textImgPizza {
        font-size: 5vw;
    }

    .carousel-item a {
        padding: 10px;
        font-size: 27px;
        width: 400px;
    }

}


@media (min-width: 992px) {

    section {
        max-width: 900px;
        margin: 40px auto;
    }
}