/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Montserrat', sans-serif;
color:#333;
background:#fff;
line-height:1.6;
padding-top:90px;
}

body.menu-open{
    overflow:hidden;
}

/* TITOLI */
h1,h2,h3{
font-family:'Playfair Display', serif;
color:#0f4c5c;
margin-bottom:20px;
}

.section{
padding:80px 10%;
}

.container{
max-width:1200px;
margin:auto;
}

.text-justify{
text-align:justify;
}

/* NAVBAR */
.navbar{
position:fixed;
top:0;
width:100%;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(6px);
padding:18px 60px;
display:flex;
align-items:center;
justify-content:space-between;
z-index:1000;
}

.nav-logo{
font-weight:600;
}

.nav-right{
display:flex;
align-items:center;
gap:40px;
}

.nav-menu{
display:flex;
gap:35px;
}

.nav-menu a{
text-decoration:none;
color:#0f4c5c;
font-weight:500;
transition:opacity 0.3s ease;
}

.nav-menu a:hover{
opacity:0.6;
}

.nav-lang img{
width:28px;
transition:transform 0.2s ease, opacity 0.2s ease;
}

.nav-lang img:hover{
transform:scale(1.1);
opacity:0.8;
}

/* HERO */
.hero{
position:relative;
height:100vh;
background:url('images/veranda-casa-lido-donnalucata.jpg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
rgba(255, 180, 120, 0.12),
rgba(0,0,0,0.12)
);
z-index:1;
}

.hero-content{
position:relative;
z-index:2;
color:#ffffff;
max-width:900px;
}

.hero-content h1{
font-size:4rem;
color:#fff;
text-shadow:0 6px 25px rgba(0,0,0,0.35);
}

.hero-content p{
font-size:1.6rem;
margin-top:20px;
color:#fff;
text-shadow:0 2px 10px rgba(0,0,0,0.35);
}

/* BUTTON */
.btn{
display:inline-block;
padding:14px 28px;
border-radius:30px;
text-decoration:none;
font-weight:600;
margin-top:20px;
}

.btn-primary{
background:#e58c63;
color:white;
}

.btn-primary:hover{
background:#cf7a53;
}

.btn:hover{
    opacity:0.9;
    transition:0.2s ease;
}

/* GALLERY */
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin:30px 0;
}

.gallery img{
    width:100%;
    height:auto;
    border-radius:18px;
}

.gallery-fixed img{
    height:320px;
    object-fit:cover;
}

/* GALLERY 2 COLONNE (solo per sezione ammezzato) */
.gallery-2{
    grid-template-columns:repeat(2,1fr);
}

@media (max-width:768px){
    .gallery-2{
        grid-template-columns:1fr;
    }
}

/* FOOTER */
footer{
background:#0f4c5c;
color:white;
text-align:center;
padding:25px;
}

/* WHATSAPP */
.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25d366;
color:white;
padding:14px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
z-index:1000;
}

.whatsapp-contact{
    text-align:center;
    margin-top:40px;
}

.btn-whatsapp{
    background-color:#25D366;
    color:#ffffff !important;
    border-radius:30px;
    padding:14px 28px;
    display:inline-block;
    text-decoration:none;
    font-weight:600;
}

.btn-whatsapp:hover{
    background-color:#1ebe5d;
}

/* MOBILE MENU */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#0f4c5c;
}

/* Mobile layout */
@media (max-width: 900px){

    .menu-toggle{
        display:block;
        z-index:1001; /* sopra overlay */
    }

    .nav-right{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100vh;
        background:white;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:40px;
        transform:translateY(-100%);
        transition:transform 0.45s ease;
        z-index:999;
    }

    .nav-right.active{
        transform:translateY(0);
    }

    .nav-menu{
        flex-direction:column;
        gap:30px;
    }

    .nav-menu a{
        font-size:1.6rem;
    }

    .nav-lang{
        margin-top:30px;
    }
}

.services-list{
    columns:2;
    list-style:disc;
    padding-left:20px;
}

.territory-list{
    list-style:disc;
    padding-left:20px;
    line-height:1.8;
}

.territory-closing{
    margin-top:30px;
}

/* ========================= */
/* REVIEW PLATFORM ICON */
/* ========================= */

.review-platform img{
    height:22px;
    width:auto;
    opacity:0.9;
}

/* ========================= */
/* REVIEWS SUMMARY */
/* ========================= */

.reviews{
    background:#f9f9f9;
}

.reviews-summary{
    display:flex;
    justify-content:center;
    gap:60px;
    margin-top:40px;
    flex-wrap:wrap;
}

.review-platform{
    display:flex;
    align-items:center;
    gap:20px;
    background:white;
    padding:20px 30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.review-platform strong{
    font-size:1.3rem;
    color:#0f4c5c;
}

/* Nasconde recensioni oltre le prime 8 */
.hidden-review {
    display: none;
}

/* Bottone toggle recensioni */
.reviews-toggle {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #1a1a1a;
    padding: 12px 24px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
}

/* ========================= */
/* SPAZIATURA RECENSIONI */
/* ========================= */

.review-card {
    margin-bottom: 40px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.review-text {
    margin: 15px 0;
    line-height: 1.6;
}

.review-meta {
    margin-top: 15px;
    font-size: 0.95rem;
    opacity: 0.85;
}