:root {
    --primary: #B85B5A;
    --terracotta: #D9A48F;
    --sage: #A9C1A2;
    --ocra: #D9A441;
    --lavanda: #BBA6BD;
    --blue: #2C4A52;
    --amaranto: #B85B5A;
    --dark: #333;
    --light: #F7F4EF;
    --light-gray: #E0DFDC;
    --border-radius-lg: 18px;
    --border-radius-md: 8px;
}

.border-radius-lg {
    border-radius: var(--border-radius-lg) !important;
}
.border-radius-md {
    border-radius: var(--border-radius-md) !important;
}

.bg-light {
    background-color: var(--light) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-light-gray {
    background-color: var(--light-gray) !important;
}
.bg-terracotta {
    background-color: rgba(217, 164, 143, 0.2) !important;
}
.bg-sage {
    background-color: rgba(169, 193, 162, 0.2) !important;
}
.bg-ocra {
    background-color: rgba(217, 164, 65, 0.2) !important;
}
.bg-lavanda {
    background-color: rgba(187, 166, 189, 0.25) !important;
}
.bg-blue {
    background-color: var(--blue) !important;
    color: #fff !important;
}
.bg-amaranto {
    background-color: rgba(184, 91, 90, 0.2) !important;
}

.text-primary {
    color: var(--primary) !important;
}
.text-terracotta {
    color: var(--terracotta) !important;
}
.text-sage {
    color: var(--sage) !important;
}
.text-ocra {
    color: var(--ocra) !important;
}
.text-lavanda {
    color: var(--lavanda) !important;
}
.text-blue {
    color: var(--blue) !important;
}
.text-amaranto {
    color: var(--amaranto) !important;
}

* {
    scroll-margin-top: 120px;
}

body {
    font-family: "Lexend Deca", sans-serif;
    color: var(--dark);
    background-color: var(--light);
    margin: 0;
    padding: 0;
    font-weight: 300;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.serif {
    font-family: "Marcellus", serif !important;
}

.sans-serif {
    font-family: "Lexend Deca", sans-serif !important;
}

p {
    font-weight: 300;
}

.lead {
    line-height: 1.4;
}

a {
    color: var(--dark);
    text-underline-offset: 16%;
    position: relative;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4
{
    font-family: "Marcellus", serif;
    margin-bottom: 1.25rem;
    line-height: 1;
}

h1, .h1 {
    font-size: 82px;
}

h2, .h2 {
    font-size: 74px;
}

h3, .h3 {
    font-size: 54px;
}

h4, .h4 {
    font-size: 38px;
}

h5, .h5 {
	font-size: 30px;
}

b, strong {
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    border-radius: 0;
    gap: 10px;
    font-weight: 600;
    line-height: 1.2;
}

.btn-link {
    font-weight: 600;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible,
:not(.btn-check) + .btn-primary:active {
    background: var(--secondary);
    outline: none;
}

.btn i {
	font-size: 12px;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-dark {
    --bs-btn-bg: var(--dark);
    --bs-btn-border-color: var(--dark);
}

.btn-sm {
    padding: 8px 12px;
}

.btn-submit {
    position: absolute;
    right: 0;
    top: 4px;
}

.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--sage) !important;
    background: rgba(255,255,255,0.5) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--dark) !important;
  -webkit-box-shadow: 0 0 0px 1000px  rgba(255,255,255,0.5) inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
}


.section-margin {
    margin: 100px 0;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-lg {
    padding: 100px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}


.hero {
    background: url(../img/hero.jpg) center center no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 0;
    padding-bottom: 200px;
    color: #fff;
}

.hero:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.5);
    z-index: -1;
}



.brands {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}


.read-more-brands.btn {
    font-family: 'Lexend Deca', sans-serif;
    text-decoration: underline;
    text-underline-offset: 18%;
    text-transform: uppercase;
    font-size: 13px;    
    font-weight: 500;
    display: flex;
}

.custom-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.custom-list i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.custom-list li {
    gap: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}


.gift-section {
    height: 75vh;
    min-height: 600px;
    background: url('../img/AdHocCasa_preparazione-regali.jpg') center center no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
    z-index: 0;
}

.gift-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.about-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(50% - 48px);
    height: 100%;
    background: url('../img/AdHocCasa_Chi-siamo.jpg') center center no-repeat;
    background-size: cover;
}




/** FORM **/

.form-control {
    border-radius: 0 !important;
    background: transparent !important;
    border: 1px solid var(--dark) !important;
    padding: .5rem .75rem !important;
    font-family: "Lexend Deca", sans-serif !important;
    font-weight: 400 !important;
    height: auto !important;
}

.form-control:placeholder {
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
}

.form-control.text-white {
    border-color: #fff !important;
    color: #fff !important;
}

.form-control.text-white::placeholder {
    color: #fff !important;
    opacity: 0.5 !important;
}

label.small {
    font-size: 13px !important;
}

.sib-form {
    padding: 0;
    font-family: "Lexend Deca", sans-serif !important;
    font-weight: 400 !important;
}

.sib-form-message-panel {
    margin-top: 100px;
}

#sib-container {
    padding: 0;
    background: transparent;
}

.sib-form-block {
    padding: 0;
}

.sib-form .entry__field {
    background-color: transparent;
    border: none !important;
}

.sib-form .checkbox, .sib-form .radio-button {
    border: none !important;
}

.sib-form .btn-submit {
    height: 40px !important;
    border: none !important;
}

.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible {
    border: none !important;
}

.entry__choice {
    font-family: "Lexend Deca", sans-serif !important;
    font-weight: 400 !important;
}




.footer {
    padding: 80px 0;
}



.gmap {
    width: 100%;
    height: 450px;
}


.brands-logo {
  overflow: hidden;
  width: 100%;
}

.brands-logo__track {
  display: flex;
  width: max-content;
  will-change: transform;
  align-items: center;
}

.brands-logo__track img {
  margin-right: 4rem;
  height: 70px;
  width: auto;
  object-fit: contain;
}





@media screen and (max-width: 767px) {
    .lead {
        font-size: 18px;
    }

}

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

    .hero h1 {
        font-size: 42px;
    }
        
    h1, .h1 {
        font-size: 52px;
    }

    h2, .h2 {
        font-size: 48px;
    }

    h3, .h3 {
        font-size: 42px;
    }

    h4, .h4 {
        font-size: 32px;
    }

    h5, .h5 {
        font-size: 26px;
    }

    .section-margin {
        margin: 40px 0;
    }

    .section-padding {
        padding: 40px 0;
    }

    .section-padding-lg {
        padding: 60px 0;
    }

    .hero {
        padding-bottom: 50px;
        align-items: flex-end;
        height: calc(100vh - 80px);
    }


    #about {
        padding-top: 0 !important;
    }

    .about-bg {
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 70%;
        background: url('../img/AdHocCasa_Chi-siamo.jpg') top center no-repeat;
        background-size: cover;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .sib-form-message-panel {
        margin-top: 60px;
    }

}



