@import url("https://use.typekit.net/acb1guc.css");

:root {
    --page-padding: 30px;

    --color-blue: #0297A2;
    --color-green: #DFDC3A;
    --color-almost-white: #FFFBF2;
    --color-yellowish: #F4EDDB;
    --color-yellowish-darker: #E5DBC0;

    --shadow-dark: 9px 9px 0 0 var(--color-yellowish-darker);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input, button, textarea, select, option {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}
textarea:focus, input:focus{
    outline: none;
}

h1, h2, h3, b, strong {
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    line-height: 1.7;
}

body {
    font-family: "Obviously", sans-serif;
    padding-top: 80px;
    margin-bottom: 130px;
    background-color: var(--color-almost-white);
    font-size: 0.9rem;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

img {
    pointer-events: none;
}

.container {
    width: calc(100% - (var(--page-padding) * 2));
    margin-left: auto;
    margin-right: auto;
}

.container--legal {
    max-width: 800px;
    margin-bottom: 100px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: var(--page-padding);
    box-sizing: border-box;
    background-color: var(--color-blue);
    color: var(--color-almost-white);
    padding: 15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 999;
}

.header__left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header__logo {
    height: 32px;
    margin-left: 20px;
    margin-right: 40px;
}

.btn {
    background-color: var(--color-green);
    color: black;
    padding: 20px 30px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 500;
    border: none;
}

.btn--smaller {
    padding: 12px 20px 15px 20px;
}

.btn--blue {
    color: var(--color-yellowish);
    background-color: var(--color-blue);
}

.nav__link {
    margin-right: 30px;
}

.nav__link--current {
    color: var(--color-green);
}

.hero-home {
    position: relative;
    margin-top: var(--page-padding);
    background-size: cover;
    background-position: center;
    border-radius: 17px;
    color: var(--color-almost-white);
    box-shadow: var(--shadow-dark);
}

.hero-home__inner {
    height: 550px;
    background-image: url("../images/home-video-overlay-f4d0f649cfd178befe1df715a947ebce.png");
    background-size: cover;
    background-position: center;
    z-index: 999;
    padding: var(--page-padding);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-home__video {
    object-fit: cover;
    border-radius: 20px;
    height: 550px;
    width: 100%;
    position: absolute;
    z-index: -1;
}

.hero-home__title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    max-width: 550px;
}

.hero-home__description {
    max-width: 550px;
    margin-bottom: 30px;
}

.hover {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    transform: translateY(0);
    box-shadow: 0 0 0 transparent;
}
.hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.hover:active {
    transform: translateY(2px);
    box-shadow: 0 5px 2px rgba(0, 0, 0, 0.4);
}
.hover--shadow-dark:hover {
    transform: none;
    box-shadow: 15px 15px 0 0 var(--color-yellowish-darker)
}

footer {
    border-radius: 20px;
    background-color: var(--color-blue);
    color: var(--color-almost-white);
    margin-top: var(--page-padding);
    padding: 40px;
    font-size: 0.8rem;
}

.footer-columns {
    display: flex;
}

.footer__left {
    flex: 2;
}

.footer__center {
    flex: 1;
    line-height: 1.8rem;
}

.footer__right {
    flex: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: solid 2px var(--color-almost-white);
}

.bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--color-green);
}

.bottom-banner__link {
    display: block;
}

.bottom-banner__badge {
    height: 45px;
    border-radius: 7px;
    display: block;
}

.footer__logo {
    height: 25px;
    display: block;
    margin-bottom: 10px;
}

.footer__socials {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
    gap: 15px;
}

.footer__socials__icon {
    height: 30px;
    display: block;
    border-radius: 50%;
}

.footer-bottom__links {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}

.green-text {
    color: var(--color-green);
}

.footer__title {
    font-size: 1rem;
    padding-bottom: 10px;
}

.footer__contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.footer__contact img {
    height: 25px;
}

.provinces {
    background-image: url("../images/italy-background-95bc8e258010cac36cb1f4a0e41e5a34.webp");
    background-size: cover;
    background-position: center;
    padding: 70px;
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
    margin-top: var(--page-padding);
}

.provinces__title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-align: center;
}

.provinces__subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    text-align: center;
}

.provinces__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.provinces__grid__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.provinces__grid__item img {
    height: 20px;
    margin-bottom: -3px;
}

.places-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.place-box {
    width: 100%;
    background-color: white;
    border-radius: 20px;
    padding: 17px;
    box-shadow: var(--shadow-dark);
    display: flex;
    align-items: center;
}

.place-box__image {
    background-size: cover;
    background-position: center;
    background-color: #ccc;
    width: 90px;
    min-width: 90px;
    aspect-ratio: 1;
    border-radius: 15px;
}

.province-title {
    font-size: 1.5rem;
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
}

.place-box__left {
    width: 100%;
}

.place-box__name {
    word-break: break-all;
    position: relative;
    overflow: hidden;
    height: 25px;
    padding-right: 10px;
}

.place-box__name:after {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    pointer-events: none;
    background-image: linear-gradient(to right, transparent, white);
    width: 60px;
    height: 25px;
}

.place-box__chips, .hero-place__chips {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 5px;
    gap: 10px;
}

.hero-place__chips {
    margin-top: 20px;
}

.chip {
    font-size: 0.7rem;
    background-color: #aaa;
    border-radius: 100px;
    padding: 1px 8px 4px 8px;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-start;
}

.chip--club {
    background-color: var(--color-blue);
}

.chip__icon {
    height: 16px;
    margin-bottom: -2px;
}

.hero-place {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    align-items: flex-start;
}

.hero-place__image {
    background-size: cover;
    background-position: center;
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 4 / 3;
}

.hero-place__title {
    font-size: 1.7rem;
}

.hero-place__left {
    min-width: 40%;
}

.hero-place__meta {
    background-color: white;
    display: flex;
    justify-content: space-around;
    box-shadow: var(--shadow-dark);
    border-radius: 17px;
    padding: 10px;
    margin-top: 30px;
}

.hero-place__meta__box {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-right: solid 2px var(--color-yellowish);
}
.hero-place__meta__box:last-child {
    border-right: none;
}

.hero-place__meta__box__label {
    font-size: 0.7rem;
    margin-bottom: 5px;
}

.hero-palce__meta__box__value-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hero-palce__meta__box__value-row img {
    height: 20px;
    margin-bottom: -3px;
}

.hero-place__address {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 10px;
    gap: 5px;
}

.hero-place__address img {
    height: 25px;
    margin-bottom: -2px;
}

.hero-place__description-title {
    margin-top: 50px;
    margin-bottom: 5px;
}

.hero-place__buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    font-size: 0.8rem;
}

.hero-place__buttons__single {
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: center;
}

.hero-place__buttons__button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 100px;
    border-radius: 100px;
    background-color: var(--color-blue);
}

.hero-place__buttons__button img {
    height: 25px;
}

.place-box__metadata {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    font-size: 0.8rem;
    margin-top: 5px;
}

.place-box__meta-child {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.place-box__meta-icon {
    height: 20px;
}

.opaque {
    opacity: 0.4;
}

.reviews, .taste {
    background-color: var(--color-yellowish);
    box-shadow: var(--shadow-dark);
    border-radius: 15px;
    margin-top: 40px;
    padding: 50px;
}

.reviews__title, .taste__title {
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
}

.reviews__empty-state {
    text-align: center;
}

.reviews__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.review {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
}

.review__top {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px var(--color-yellowish);
    padding-bottom: 10px;
}

.review__bottom {
    padding-top: 10px;
}

.reivew__rating {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.reivew__rating-image {
    height: 18px;
}

.review__user-data {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.review__user-picture {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--color-yellowish-darker);
    background-size: cover;
    background-position: center;
}

.review__date {
    font-size: 0.8rem;
    color: #BEB2A8;
}

.review__meta {
    margin-top: -5px;
}

.reviews__btn {
    display: block;
    margin: 40px auto 0 auto;
}

.report {
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
}

.report__btn {
    font-weight: 500;
    margin-top: 10px;
    text-decoration: underline;
    cursor: pointer;
}

.home-highlights {
    display: flex;
    gap: var(--page-padding);
    margin-top: var(--page-padding);
}

.home-highlights__left, .home-highlights__right {
    flex: 1;
    display: flex;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
}

.home-highlights__image {
    width: 200px;
}

.home-highlights__column-text {
    padding: var(--page-padding);
}

.home-highlights__title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.home-highlights__description {
    font-size: 0.8rem;
}

.home-highlights__image-container--left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.home-highlights__image {
    margin-right: var(--page-padding);
    margin-top: var(--page-padding);
}

.home-highlights__image--left {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
}

.home-highlights__btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    margin-top: 20px;
}

.home-highlights__btn-image {
    height: 26px;
    margin-bottom: -2px;
}

.taste__title {
    margin-bottom: 10px;
}

.taste__subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.infobox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: var(--page-padding);
}

.infobox {
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    padding: var(--page-padding);
    display: flex;
    gap: var(--page-padding);
}

.infobox__left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
}

.infobox__icon {
    width: 110px;
}

.infobox__icon--bigger {
    width: 150px;
}

.infobox__title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.infobox__title--smaller {
    font-size: 1rem;
}

.infobox__text {
    margin-bottom: 15px;
}

.provinces__btn {
    display: block;
    margin: auto;
    margin-top: 40px;
}

.about {
    display: flex;
    margin-top: var(--page-padding);
    background: rgba(195, 128, 227, 0.18);
    border-radius: 20px;
}

.about__image {
    width: 650px;
}

.about__left {
    padding: var(--page-padding);
}

.about__title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.center-title {
    font-size: 1.2rem;
    text-align: center;
    margin-top: var(--page-padding);
}

.infobox--reverse {
    flex-direction: row-reverse;
}

.vision {
    background-color: var(--color-yellowish);
    border-radius: 20px;
    padding: var(--page-padding);
    box-shadow: var(--shadow-dark);
    margin-top: var(--page-padding);
    display: flex;
    gap: var(--page-padding);
    align-items: flex-start;
}

.vision__column {
    flex: 1;
}

.vision__image {
    width: 100%;
    border-radius: 17px;
    box-shadow: var(--shadow-dark);
}
.vision__image--left {
    margin-bottom: var(--page-padding);
}
.vision__image--right {
    margin-top: var(--page-padding);
}

.vision__title {
    font-size: 1rem;
    font-weight: 500;
}

.club-hero {
    display: flex;
    align-items: center;
    gap: var(--page-padding);
    background-color: #EBFFFF;
    padding: var(--page-padding);
    margin-top: var(--page-padding);
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
}

.club-hero__scroll-btn {
    cursor: pointer;
}

.club-hero__title {
    margin-bottom: 20px;
}

.club-hero__image {
    border-radius: 15px;
    height: 300px;
    width: 450px;
    min-width: 450px;
    background-color: #aaa;
    background-size: cover;
    background-position: center;
    background-image: url("../images/about-hero-ccbca7bbad8409aa6dafb33b5c2116b4.jpg");
}

.club-hero__actions {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.club-features {
    display: flex;
    gap: 30px;
    margin-top: var(--page-padding);
}

.club-feature {
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    text-align: center;
    padding: 30px;
    flex: 1;
}

.club-feature__image {
    height: 150px;
    margin-bottom: 10px;
}

.club-feature__title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.club-feature__text {
    font-size: 0.9rem;
}

.club-why {
    display: flex;
    align-items: center;
    background-color: var(--color-yellowish);
    gap: var(--page-padding);
    margin-top: var(--page-padding);
    padding: var(--page-padding);
    box-shadow: var(--shadow-dark);
    border-radius: 15px;
}

.club-why__image {
    min-width: 400px;
    height: 250px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    background-image: url("../images/about-club-877d632069ce8897477ac37afcef7d31.jpg");
}

.club-why__title {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.papers {
    background-color: white;
    padding: var(--page-padding);
    margin-top: var(--page-padding);
    box-shadow: var(--shadow-dark);
    border-radius: 15px;
}

.papers__title, .contact__title {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.papers__subtitle, .contact__subtitle {
    text-align: center;
    margin-bottom: 50px;
}

.papers__logos-list {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.papers__logo {
    max-height: 25px;
    max-width: 200px;
}

.contact {
    background-color: var(--color-yellowish);
    margin-top: var(--page-padding);
    padding: var(--page-padding);
    box-shadow: var(--shadow-dark);
    border-radius: 15px;
}

.contact__form {
    background-color: var(--color-almost-white);
    border-radius: 15px;
    margin: auto;
    max-width: 650px;
    display: flex;
    gap: 30px;
    padding: 30px;
}

.contact__form > * {
    flex: 1;
}

.form input, .form textarea {
    width: 100%;
    padding: 6px 15px 10px 15px;
    border-radius: 50px;
    border: solid 1px var(--color-blue);
    margin-bottom: 10px;
    margin-top: 10px;
    background-color: transparent;
}
.form textarea {
    border-radius: 15px;
    height: 200px;
    resize: none;
}

.contact__hint {
    font-size: 0.8rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.contact__btn {
    width: 100%;
}

div:where(.swal2-container).swal2-center>.swal2-popup {
    border-radius: 15px;
}

.header__btn {
    display: none;
}

.hero-place__admin-btn {
    margin-top: 20px;
    display: inline-block;
    background-color: var(--color-yellowish);
}

.legal-title-small {
    font-size: 1.3rem;
    padding-bottom: 10px;
    padding-top: 40px;
}

.legal-paragraph {
    font-size: 0.8rem;
    padding-bottom: 10px;
    line-height: 1.8rem;
}

.bottom-banner__btns {
    display: flex;
    gap: 15px;
}

.download__btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 100px;
    margin-bottom: 200px;
}

.download__btn {
    height: 90px;
}


















@media screen and (max-width: 1100px) {

    :root {
        --page-padding: 25px;
    }

    body {
        padding-top: 60px;
        padding-bottom: 100px;
    }

    header {
        padding: 18px;
    }

    .bottom-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .bottom-banner__btns {
        display: flex;
        margin-top: 15px;
    }

    .bottom-banner__badge {
        height: 40px;
    }

    nav, .header__right {
        display: none;
    }

    .header__logo {
        height: 24px;
        margin: 0;
    }

    .header__btn {
        margin-top: -5px;
        display: block;
    }

    .hero-home__title {
        font-size: 1.7rem;
    }

    .hero-home__inner, .hero-home__video {
        height: 450px;
    }

    .hover:hover {
        transform: none;
        box-shadow: none;
    }

    .home-highlights {
        flex-direction: column;
    }

    .home-highlights__left, .home-highlights__right {
        flex-direction: column;
        align-items: center;
    }

    .home-highlights__image {
        margin-right: 0;
    }

    .taste {
        padding: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .places-grid {
        grid-template-columns: 1fr;
    }

    .chip {
        font-size: 0.6rem;
    }

    .place-box__name {
        font-size: 0.8rem;
    }

    .place-box__image {
        width: 60px;
        min-width: 60px;
    }

    .place-box__metadata {
        gap: 10px;
    }

    .infobox-grid {
        grid-template-columns: 1fr;
    }

    .place-box__meta-child {
        font-size: 0.7rem;
    }

    .infobox {
        flex-direction: column;
    }

    .infobox__left {
        width: auto;
    }

    .provinces {
        padding: 30px;
    }

    .provinces__grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .provinces__grid__item {
        font-size: 0.8rem;
        gap: 5px;
    }

    .btn {
        padding: 10px 20px 15px 20px;
    }

    footer {
        padding: 30px;
    }

    .footer-columns {
        flex-direction: column;
    }

    .footer__center {
        margin-top: 30px;
    }

    .footer__right {
        margin-top: 30px;
    }

    .footer-bottom {
        font-size: 0.8rem;
        flex-direction: column;
    }

    .footer-bottom__links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .nav__link {
        font-size: 0.9rem;
    }

    .nav--open {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: white;
        color: var(--color-blue);
        padding: 30px;
        box-sizing: border-box;
        text-align: right;
        gap: 20px;
        width: 100%;
        border-radius: 20px;
        box-shadow: var(--shadow-dark);
    }

    .nav__link--current {
        color: #460557;
    }

    .nav__link {
        margin-right: 0;
    }

    .about {
        flex-direction: column;
    }

    .about__image {
        width: 100%;
    }

    .infobox__icon--bigger {
        width: 100px;
    }

    .vision {
        flex-direction: column;
    }

    .club-hero {
        flex-direction: column;
        position: relative;
    }

    .club-hero__title {
        font-size: 1.5rem;
    }

    .club-hero__actions {
        flex-direction: column;
        gap: 20px;
    }

    .club-hero__image {
        height: 200px;
        width: 100%;
        min-width: auto;
    }

    .club-features {
        flex-direction: column;
    }

    .club-why {
        flex-direction: column;
    }

    .club-why__image {
        width: 100%;
        min-width: auto;
        height: 200px;
    }

    .papers__logos-list {
        flex-wrap: wrap;
        gap: 30px;
    }

    .papers__subtitle, .contact__subtitle {
        margin-bottom: 30px;
    }

    .contact__form {
        flex-direction: column;
    }

    .hero-place {
        flex-direction: column;
        margin-top: 20px;
        align-items: initial;
    }

    .hero-place__meta {
        margin-top: 20px;
    }

    .hero-place__meta__box {
        padding: 10px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .hero-place__meta__box__label {
        font-size: 0.6rem;
    }

    .hero-place__left {
        min-width: auto;
    }

    .hero-palce__meta__box__value-row {
        font-size: 0.8rem;
    }

    .hero-place__title {
        font-size: 1.4rem;
    }

    .hero-place__address {
        font-size: 0.7rem;
    }

    .hero-place__address img {
        height: 20px;
    }

    .reviews {
        padding: 30px;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .download__btns {
        margin-top: 50px;
        flex-direction: column;
    }

    .download__btn {
        height: auto;
        width: 200px;
    }

}