/* =====================================================
   RESET
===================================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    color:#222;
    background:#fff;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* =====================================================
   CONTAINER
===================================================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =====================================================
   HEADER
===================================================== */

.header{
    position:sticky;
    top:0;
    background:#fff;
    z-index:999;
    border-bottom:1px solid #eee;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:1.4rem;
    font-weight:700;
}

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

#mobileMenu a{
    color:#333;
    font-weight:500;
    transition:.3s;
}

#mobileMenu a:hover{
    color:#8b5e3c;
}

.hamburger{
    display:none;
    border:none;
    background:none;
    font-size:30px;
    cursor:pointer;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn-primary{
    background:#25D366;
    color:#fff;
    padding:14px 24px;
    border-radius:12px;
    font-weight:600;
    display:inline-block;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:14px 24px;
    border-radius:12px;
    font-weight:600;
    display:inline-block;
}

/* =====================================================
   HERO
===================================================== */

.hero{
    position:relative;
    min-height:85vh;
    background:url("../assets/hero.jpg") center center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.50);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:800px;
    padding:20px;
}

.badge{
    display:inline-block;
    background:#fff;
    color:#111;
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
    margin-bottom:20px;
}

.hero h1{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* =====================================================
   SECTIONS
===================================================== */

section{
    padding:90px 0;
}

section h2{
    text-align:center;
    font-size:2.4rem;
    margin-bottom:20px;
}

.section-subtitle{
    text-align:center;
    max-width:700px;
    margin:0 auto 40px;
    color:#666;
}

/* =====================================================
   HIGHLIGHTS
===================================================== */

.highlights .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.highlight-card{
    background:#f7f7f7;
    border-radius:16px;
    padding:25px;
    text-align:center;
}

.highlight-card h3{
    margin:10px 0;
}

/* =====================================================
   ABOUT
===================================================== */

.about p{
    max-width:850px;
    margin:auto;
    text-align:center;
}

/* =====================================================
   ROOMS
===================================================== */

.room-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.room-card{
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.room-card img{
    height:250px;
    width:100%;
    object-fit:cover;
}

.room-content{
    padding:20px;
}
.room-content h3{
    margin-bottom:10px;
}

.room-content p{
    margin-bottom:15px;
    color:#555;
}

.room-content h3{
    margin-bottom:10px;
}

.room-content ul{
    list-style:none;
    padding:0;
    margin:15px 0 0 0;
}
.room-content li{
    position:relative;
    padding-left:20px;
    margin-bottom:10px;
    color:#555;
}

.room-content li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#2e7d32;
    font-weight:bold;
}

/* =====================================================
   PRICING
===================================================== */

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.price-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.price{
    display:block;
    font-size:2.2rem;
    font-weight:700;
    color:#8b5e3c;
    margin:15px 0;
}

.pricing-note{
    text-align:center;
    margin-top:40px;
}

/* =====================================================
   AMENITIES
===================================================== */

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.amenity-card{
    background:#f8f8f8;
    padding:25px;
    border-radius:16px;
}

.amenity-card h3{
    margin:10px 0;
}

/* =====================================================
   GALLERY
===================================================== */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.gallery-grid img{
    height:250px;
    width:100%;
    object-fit:cover;
    border-radius:16px;
}

/* =====================================================
   ESCURSIONI
===================================================== */

.excursions-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.exc-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.exc-card img{
    height:220px;
    width:100%;
    object-fit:cover;
}

.exc-card h3,
.exc-card p,
.exc-card a{
    padding-left:20px;
    padding-right:20px;
}

.exc-card h3{
    margin-top:20px;
}

.exc-card a{
    display:inline-block;
    margin:20px;
    color:#8b5e3c;
    font-weight:600;
}

/* =====================================================
   MAP
===================================================== */

.map-container{
    width:100%;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.map-container iframe{
    width:100%;
    height:600px;
    border:0;
    display:block;
}

/* ==========================
   REGOLE
========================== */

.rules ul{
    list-style:none;
    max-width:800px;
    margin:30px auto 0;
    padding:0;
}

.rules li{
    position:relative;
    padding-left:35px;
    margin-bottom:15px;
    font-size:1.1rem;
    line-height:1.6;
}

.rules li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#28a745;
    font-weight:bold;
    font-size:1.2rem;
}

/* =====================================================
   CTA
===================================================== */

.cta{
    background:#8b5e3c;
    color:#fff;
    text-align:center;
}

.cta p{
    margin:20px 0;
}

/* =====================================================
   FOOTER
===================================================== */

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:50px 0;
}

.footer-small{
    margin-top:15px;
    opacity:.7;
    font-size:.9rem;
}

/* =====================================================
   MOBILE BOOKING BAR
===================================================== */

.mobile-booking-bar{
    display:none;
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:992px){

    .hamburger{
        display:block;
        z-index:1001;
    }

    #mobileMenu{
        position:fixed;
        top:0;
        right:-100%;
        width:80%;
        max-width:320px;
        height:100vh;
        background:#fff;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:30px;
        transition:.3s;
        box-shadow:-5px 0 20px rgba(0,0,0,.1);
    }

    #mobileMenu.active{
        right:0;
    }

    #mobileMenu a{
        font-size:22px;
    }

    .hero{
        min-height:75vh;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .hero p{
        font-size:1rem;
    }

    .highlights .container,
    .room-grid,
    .pricing-grid,
    .amenities-grid,
    .gallery-grid,
    .excursions-grid,
    .rules-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid img{
        height:220px;
    }

    section{
        padding:70px 0;
    }

    /* Nasconde CTA duplicate */

    .hero-buttons .btn-primary,
    .cta .btn-primary{
        display:none;
    }

    /* Barra fissa */

    .mobile-booking-bar{
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        background:#fff;
        border-top:1px solid #e5e5e5;
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:12px 16px;
        z-index:9999;
        box-shadow:0 -4px 15px rgba(0,0,0,.08);
    }

    .mobile-booking-info{
        display:flex;
        flex-direction:column;
        line-height:1.2;
    }

    .mobile-booking-info strong{
        font-size:18px;
    }

    .mobile-booking-info span{
        font-size:13px;
        color:#666;
    }

    .mobile-booking-btn{
        background:#25D366;
        color:#fff;
        padding:12px 16px;
        border-radius:10px;
        font-weight:600;
        white-space:nowrap;
    }

    footer{
        margin-bottom:90px;
    }
}
/* ==========================================
   LIGHTBOX GALLERY
========================================== */

.gallery-grid img{
    cursor:pointer;
    transition:.3s;
}

.gallery-grid img:hover{
    transform:scale(1.02);
}
.map-actions{
    text-align:center;
    margin-top:20px;
}

.btn-map{
    display:inline-block;
    background:#25D366;
    color:#fff;
    padding:14px 24px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-map:hover{
    opacity:.9;
    transform:translateY(-2px);
}