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

body{
    font-family:'Inter', sans-serif;
    background:#f8fafc;
    color:#1e293b;
}

.header{
    display:flex;
    justify-content:space-around;
    align-items:center;
    padding:0px 10px;
    background:linear-gradient(180deg,#0f172a,#1e293b);
}


.header-right{
    text-align:right;
    color:white;
}

.prenota{
    font-size:12px;
    letter-spacing:2px;
    opacity:0.7;
}

.numero{
    font-size:18px;
    font-weight:500;
}

/* HEADER */
.containerLogo{
    background:#0f172a;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
}

.logo{
    width:300px;
}

.textLogo{
    text-align:right;
}

/* HERO */
.mainFoto{
    background:url('apartamento\ new.jpeg') center/cover no-repeat;
    height:60vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    position:relative;
}

.mainFoto::after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
}

.mainFoto h5{
    position:relative;
    font-family:'Cormorant Garamond', serif;
    font-size:40px;
    letter-spacing:3px;
    color: #1e293b;
}

/* SERVIZI */
.servicesRow{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
}

.servicesRow div{
    background:rgba(255,255,255,0.8);
    padding:10px 15px;
    border-radius:20px;
    font-size:14px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    color: #0f172ab7;
}


/* SECTIONS */
.section{
    max-width:1200px;
    margin:60px auto;
    padding:20px;
}

.flex{
    display:flex;
    gap:30px;
    align-items:center;
}

.picture{
    width:40%;
    border-radius:15px;
}

.text{
    font-family:'Cormorant Garamond', serif;
    font-size:28px;
    margin-bottom:20px;
}

/* LISTA CUCINA */
.logosText{
    margin:5px 0;
}

/* CARD LOOK */
.card{
    background:white;
    border-radius:20px;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* CTA */
.linkMail{
    display:block;
    text-align:center;
    margin:60px auto;
    background:#0f172a;
    color:white;
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
    width:fit-content;
    transition:0.3s;
}

.linkMail:hover{
    background:#1e293b;
}

/* MOBILE */
@media(max-width:768px){

.containerLogo{
    flex-direction:column;
    gap:10px;
}

.mainFoto{
    height:50vh;
}

.mainFoto h5{
    font-size:28px;
}
.picture {
    width: 550px;
}

.servizi{
    flex-direction:column;
    gap:10px;
    width:90%;
}

.flex{
    flex-direction:column;
}

.text{
    text-align:center;
}

}

