* {
    box-sizing: border-box;
}

html,body {
    width: 100%;
    margin: 0;
    padding: 0;
	display: block !important;
}

body {
    position: relative;
    font-family: 'Nunito Sans' !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
    color: #333 !important;

    background-color: #F0F0F0 !important;

    --giallo: #D8C7A3;
    /*--grigio: #4F4F4F;*/
	--grigio: #788A73;
}

h1, h2, h3 {
    font-family: 'Montserrat' !important;
    font-weight: 900 !important;
}

h1 {
    font-size: 2rem !important;
}

h2 {
    font-size: 1.5rem !important;
}

.lead {
    font-size: 24px;
}

.txt-white {
    color: #fff;
}

a {
    color: #333 !important;
    text-decoration: none;
}

section {
	padding: 0 !important;
}

@media(min-width:769px) {
    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }
}

@media(min-width:992px) {
    h1 {
        font-size: 3.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }
}


main, header {
    position: relative;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}

@media(min-width:769px) {
	main, header {
		padding: 0 40px;
	}
}


/* -------------------------------------------------------------------------- */
/*                                   HEADER                                   */
/* -------------------------------------------------------------------------- */

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    min-height: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}


header img {
    width: 100%;
    height: auto;
    order: -1;
}

header ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
    column-gap: 10px;
	align-items: center;
}

@media(min-width:769px) {
    header {
        justify-content: space-between;
    }

    header img {
        order:unset;
        max-height: 80px;
        width: auto;
    }
}

.wpml-ls-legacy-dropdown-click {
	height: auto;
	background: transparent;
}



/* -------------------------------------------------------------------------- */
/*                                    HERO                                    */
/* -------------------------------------------------------------------------- */
.hero {
    width: 100%;
    border-radius: 20px;
    padding: 20px !important;
    min-height: 500px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hero h1 {
	color: #fff !important;
}

@media(min-width:992px) {
    .hero h1 {
        max-width: 600px;
    }
}

/* -------------------------------------------------------------------------- */
/*                                   GALLERY                                  */
/* -------------------------------------------------------------------------- */
.gallery {
    width: 100%;
    background-color: var(--grigio);
    border-radius: 20px;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    margin-top: 40px;
	margin-left:0;
	margin-right: 0;
}

.gallery .swiper-slide img {
    width: 100%;
}



/* -------------------------------------------------------------------------- */
/*                                    MENU                                    */
/* -------------------------------------------------------------------------- */
section.menu {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 40px;
}

section.menu .col {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

section.menu .col:nth-child(1) {
    padding: 40px;
    background-color: #D8C7A3;
}

section.menu .col:nth-child(1) ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

section.menu .col:nth-child(1) ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
	gap: 10px;
}

@media(min-width:769px) {
	section.menu .col:nth-child(1) ul li {
		flex-direction:row;	
    	align-items: center;
	}
}

section.menu div:nth-child(1) ul li div {
    line-height: 1;
}

section.menu div:nth-child(1) ul li .lead {
    font-weight: 700;
    line-height: 1;
}

section.menu div:nth-child(1) ul li img {
    width: 100px;
    height: auto;
    margin-right: 30px;
}

@media(min-width:769px) {
    section.menu {
        flex-direction: row;
        justify-content: space-between;
    }

    section.menu .col {
        width: calc(50% - 20px);
    }
}

section.menu .col:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.menu .col:nth-child(1) a {
    font-family: 'Montserrat'!important;
    font-weight: 900 !important;
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.5rem !important;
    text-align: center !important;
    background-color: #333;
    color: var(--giallo) !important;
    margin-top: 40px;
} 


/* -------------------------------------------------------------------------- */
/*                                INFORMAZIONI                                */
/* -------------------------------------------------------------------------- */

section.informazioni {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
    column-gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

section.informazioni .col {
    width: 100%; /*calc(50% - 10px);*/
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

section.informazioni .col.large {
    width: 100%;
}

section.informazioni .col.txt {
    padding: 40px;
}

section.informazioni .col.txt:nth-child(1) {
    background-color: var(--grigio);
}

section.informazioni .col.txt:nth-child(5) {
    background-color: var(--giallo);
}

section.informazioni .col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(min-width:769px) {
    section.informazioni .col, section.informazioni .col.large {
        width: calc(33.33% - 20px);
    }
}


/* -------------------------------------------------------------------------- */
/*                                    ORARI                                   */
/* -------------------------------------------------------------------------- */
#orari {
    color: #fff
}

#orari h2 {
    color: var(--giallo);
}

#orari ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#orari ul li {
    margin-bottom: 10px;
    border-bottom: .5px dotted #fff;
}


/* -------------------------------------------------------------------------- */
/*                                  CONTATTI                                  */
/* -------------------------------------------------------------------------- */
#contatti {

}