/* =========================================================
   IL BRONTOLONE — PAGINA SCELTA MENU
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');


:root {
    --blu: #15516d;
    --viola: #4c2554;
    --giallo: #eab341;
    --salvia: #a1c0b8;
    --sfondo: #f8f6f1;
    --bianco: #ffffff;
    --testo: #303030;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background: var(--sfondo);
    color: var(--testo);

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    overflow-x: hidden;
}


/* =========================================================
   BARRA SUPERIORE
   ========================================================= */

.top-bar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 58px;

    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(248, 246, 241, 0.95);

    border-bottom:
        1px solid
        rgba(21, 81, 109, 0.08);

    z-index: 1000;
}


.home-link {
    color: var(--blu);

    text-decoration: none;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


.logo-top {
    display: block;

    width: 52px;
    height: auto;
}


/* =========================================================
   HERO
   ========================================================= */

.hero-menu {
    position: relative;

    width: 100%;
    min-height: 600px;

    padding:
        120px
        25px
        80px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sfondo);

    overflow: hidden;
}


.hero-contenuto {
    position: relative;

    z-index: 5;

    width: 100%;
    max-width: 780px;

    margin: 0 auto;

    text-align: center;
}


.sopratitolo {
    margin:
        0 0
        15px;

    color: var(--blu);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 4px;
}


.hero-menu h1 {
    margin:
        0 0
        30px;

    color: var(--blu);

    font-family:
        "TeX Gyre Termes",
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            70px,
            9vw,
            115px
        );

    font-weight: 400;

    line-height: 0.9;
}


.hero-frase {
    margin:
        0 auto
        20px;

    color: var(--viola);

    font-family:
        "TeX Gyre Termes",
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            26px,
            3vw,
            38px
        );

    font-style: italic;

    line-height: 1.25;
}


.hero-testo {
    max-width: 590px;

    margin: 0 auto;

    color: var(--testo);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FORME COLORATE
   ========================================================= */

.forma {
    position: absolute;

    pointer-events: none;

    z-index: 1;
}


.forma-viola {
    width: 420px;
    height: 230px;

    left: -130px;
    top: -120px;

    background: var(--viola);

    border-radius: 50%;

    transform: rotate(-10deg);
}


.forma-gialla {
    width: 330px;
    height: 450px;

    right: -230px;
    top: 120px;

    background: var(--giallo);

    border-radius:
        55% 45% 40% 60%
        /
        45% 60% 40% 55%;
}


.forma-salvia {
    width: 340px;
    height: 210px;

    bottom: -125px;
    left: -160px;

    background: var(--salvia);

    border-radius: 50%;
}


/* =========================================================
   CONTENITORE 4 PROPOSTE
   ========================================================= */

.proposte {
    width:
        min(
            1200px,
            calc(100% - 60px)
        );

    margin: 0 auto;

    padding:
        40px
        0
        110px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CARD
   ========================================================= */

.proposta {
    position: relative;

    width: 100%;
    min-height: 520px;

    padding:
        45px
        42px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: var(--blu);

    background: var(--bianco);

    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.proposta:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.10);
}


.numero {
    display: block;

    margin-bottom: 40px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}


.proposta-testo {
    display: block;
}


.categoria {
    margin:
        0 0
        20px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 3px;
}


.proposta h2 {
    margin:
        0 0
        22px;

    font-family:
        "TeX Gyre Termes",
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            40px,
            4vw,
            57px
        );

    font-weight: 400;

    line-height: 0.95;
}


.sottotitolo {
    margin:
        0 0
        22px;

    font-family:
        "TeX Gyre Termes",
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    font-style: italic;

    line-height: 1.3;
}


.descrizione {
    max-width: 440px;

    margin: 0;

    font-size: 12px;

    line-height: 1.8;
}


.scopri {
    display: block;

    margin-top: 40px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   CARD 01 — ALLA CARTA
   ========================================================= */

.proposta-carta {
    color: var(--blu);

    background: var(--bianco);

    border-top:
        7px solid
        var(--blu);
}


/* =========================================================
   CARD 02 — FESTE
   ========================================================= */

.proposta-feste {
    color: var(--bianco);

    background: var(--viola);
}


.proposta-feste .numero,
.proposta-feste .categoria {
    color: var(--salvia);
}


/* =========================================================
   CARD 03 — AZIENDALE
   ========================================================= */

.proposta-aziendale {
    color: var(--blu);

    background: var(--salvia);
}


/* =========================================================
   CARD 04 — ASPORTO
   ========================================================= */

.proposta-asporto {
    color: var(--viola);

    background: var(--giallo);
}


/* =========================================================
   CHIUSURA
   ========================================================= */
/* =========================================================
   SOCIAL MENÙ — ULTIME NOVITÀ
   ========================================================= */

.menu-social {
    position: relative;

    width: 100%;

    padding:
        100px
        25px;

    background: var(--blu);

    color: var(--bianco);

    text-align: center;

    overflow: hidden;
}


.menu-social-contenuto {
    position: relative;

    z-index: 5;

    width: 100%;
    max-width: 680px;

    margin: 0 auto;
}


.menu-social-label {
    margin:
        0 0
        14px;

    color: var(--giallo);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}


.menu-social h2 {
    margin:
        0 0
        22px;

    color: var(--bianco);

    font-family:
        "TeX Gyre Termes",
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            42px,
            5vw,
            65px
        );

    font-weight: 400;

    font-style: italic;

    line-height: 1.05;
}


.menu-social-testo {
    max-width: 560px;

    margin:
        0 auto
        32px;

    color:
        rgba(255,255,255,0.78);

    font-size: 12px;

    line-height: 1.8;
}


.menu-social-link {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


.menu-social-btn {
    display: inline-flex;

    min-width: 160px;
    min-height: 45px;

    padding:
        12px
        22px;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,0.75);

    color: var(--bianco);

    text-decoration: none;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.menu-social-btn:hover {
    background: var(--giallo);

    border-color: var(--giallo);

    color: var(--viola);

    transform: translateY(-3px);
}


/* FORME DECORATIVE */

.menu-social-forma {
    position: absolute;

    pointer-events: none;
}


.forma-social-1 {
    width: 330px;
    height: 220px;

    left: -190px;
    top: -120px;

    background: var(--giallo);

    border-radius: 50%;

    transform: rotate(-12deg);
}


.forma-social-2 {
    width: 350px;
    height: 240px;

    right: -210px;
    bottom: -150px;

    background: var(--salvia);

    border-radius:
        60% 40% 55% 45%
        /
        45% 55% 45% 55%;

    transform: rotate(15deg);
}
.chiusura-menu {
    width: 100%;
    min-height: 340px;

    padding:
        70px
        25px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: var(--bianco);
}


.chiusura-menu p {
    margin:
        0 0
        10px;

    color: var(--salvia);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.chiusura-menu h2 {
    margin: 0;

    color: var(--viola);

    font-family:
        "TeX Gyre Termes",
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            34px,
            4vw,
            55px
        );

    font-weight: 400;

    font-style: italic;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer-brontolone {
    width: 100%;

    background: var(--blu);

    color: var(--bianco);
}


.footer-info {
    width:
        min(
            1280px,
            100%
        );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.25fr
        1fr
        1fr
        1.25fr;
}


.footer-box {
    min-height: 190px;

    padding:
        38px
        32px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: var(--bianco);

    text-decoration: none;

    border-right:
        1px solid
        rgba(255, 255, 255, 0.16);
}


.footer-box:last-child {
    border-right: none;
}


.footer-label {
    margin-bottom: 16px;

    color: var(--salvia);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 3px;
}


.footer-title {
    color: var(--bianco);

    font-family:
        "TeX Gyre Termes",
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;

    line-height: 1.2;

    text-decoration: none;
}


.footer-small {
    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 11px;

    text-decoration: none;
}


.footer-action {
    margin-top: 25px;

    color:
        rgba(255, 255, 255, 0.65);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.5px;
}


.footer-phone {
    width: fit-content;
}


.footer-riposo {
    margin-top: 14px;

    color: var(--giallo);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* PRENOTAZIONE */

.footer-prenota {
    color: var(--viola);

    background: var(--giallo);
}


.footer-prenota .footer-label,
.footer-prenota .footer-action {
    color: var(--viola);
}


.footer-prenota-title {
    color: var(--viola);

    font-family:
        "TeX Gyre Termes",
        Georgia,
        "Times New Roman",
        serif;

    font-size: 36px;

    font-style: italic;
}


/* =========================================================
   FASCIA VIOLA
   ========================================================= */

.footer-bottom {
    width: 100%;
    min-height: 100px;

    padding:
        27px
        40px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    background: var(--viola);
}


.footer-brand {
    color: var(--bianco);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.footer-brand span {
    display: block;

    margin-top: 5px;

    color:
        rgba(255,255,255,0.55);

    font-size: 7px;

    letter-spacing: 3px;
}


.footer-bottom p {
    margin: 0;

    color:
        rgba(255,255,255,0.75);

    font-family:
        "TeX Gyre Termes",
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;

    font-style: italic;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .proposte {
        width:
            calc(100% - 40px);

        gap: 15px;
    }


    .proposta {
        padding:
            38px
            30px;
    }


    .footer-info {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   TELEFONO
   ========================================================= */

@media (max-width: 700px) {

    .top-bar {
        height: 54px;

        padding:
            0
            16px;
    }


    .logo-top {
        width: 45px;
    }


    .hero-menu {
        min-height: 520px;

        padding:
            95px
            20px
            65px;
    }


    .hero-menu h1 {
        font-size: 62px;
    }


    .hero-frase {
        font-size: 24px;
    }


    .hero-testo {
        font-size: 12px;
    }


    .forma-viola {
        width: 260px;
        height: 150px;

        left: -110px;
        top: -80px;
    }


    .forma-gialla {
        width: 210px;
        height: 310px;

        right: -165px;
        top: 160px;
    }


    .forma-salvia {
        width: 220px;
        height: 150px;

        left: -140px;
        bottom: -90px;
    }


    .proposte {
        width:
            calc(100% - 30px);

        grid-template-columns: 1fr;

        padding:
            30px
            0
            70px;
    }


    .proposta {
        min-height: 430px;

        padding:
            35px
            27px;
    }


    .proposta h2 {
        font-size: 41px;
    }


    .sottotitolo {
        font-size: 20px;
    }


    .descrizione {
        font-size: 12px;
    }

    .menu-social {
    padding:
        75px
        20px;
}


.menu-social h2 {
    font-size: 40px;
}


.menu-social-link {
    flex-direction: column;
}


.menu-social-btn {
    width: 210px;
}

    .footer-info {
        grid-template-columns: 1fr;
    }


    .footer-box {
        min-height: 150px;

        padding:
            28px
            25px;

        border-right: none;

        border-bottom:
            1px solid
            rgba(255,255,255,0.15);
    }


    .footer-bottom {
        padding:
            27px
            25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }

}

