/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a2a3a;
    background: #fff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
img {
    max-width: 100%;
    display: block;
}

/* HEADER */
.header {
    background: #1a3a5c;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo__img {
    height: 48px;
    width: auto;
}
.logo__text {
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}
.nav__list {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}
.nav__link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav__link:hover {
    color: #fff;
}
.nav__link--cta {
    background: #4a90d9;
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
}
.nav__link--cta:hover {
    background: #357abd;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

/* HERO */
.hero {
    min-height: 80vh;
    background: url('images/eroe.jpg') center/cover no-repeat;
    background-color: #1a3a5c;
    display: flex;
    align-items: center;
    position: relative;
}
.hero__overlay {
    width: 100%;
    background: rgba(26,58,92,0.7);
    padding: 60px 0;
}
.hero__content {
    max-width: 700px;
    color: #fff;
}
.hero__title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}
.hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: 18px;
    opacity: 0.95;
}
.hero__badge {
    display: inline-block;
    background: #2ecc71;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* LOGO NELL'HERO */
.hero__logo {
    text-align: center;
    margin-bottom: 16px;
}
.hero__logo-img {
    max-height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 16px;
    backdrop-filter: blur(4px);
    transition: transform 0.3s;
}
.hero__logo-img:hover {
    transform: scale(1.05);
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.btn--primary {
    background: #4a90d9;
    color: #fff;
}
.btn--primary:hover {
    background: #357abd;
    transform: scale(1.02);
}
.btn--large {
    font-size: 1.2rem;
    padding: 16px 44px;
}

/* SEZIONI */
.section {
    padding: 70px 0;
}
.section--alt {
    background: #f8f9fa;
}
.section__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 8px;
}
.section__subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #4a5a6a;
    margin-bottom: 40px;
}

/* CAMERA */
.camera-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.camera-grid__text {
    font-size: 1.05rem;
}
.camera__list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.camera__list li {
    margin-bottom: 6px;
}
.camera-grid__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.camera__img {
    border-radius: 16px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* SERVIZI */
.servizi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.servizio {
    background: #fff;
    padding: 28px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.servizio__icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 8px;
}
.servizio h3 {
    font-size: 1.2rem;
    color: #1a3a5c;
    margin-bottom: 4px;
}
.servizio p {
    color: #4a5a6a;
    font-size: 0.95rem;
}

/* POSIZIONE */
.posizione-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.posizione__list {
    list-style: none;
    padding: 0;
}
.posizione__list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 12px;
}
.posizione__distanza {
    font-weight: 700;
    color: #1a3a5c;
    background: #e9f0f7;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
}
.posizione__map {
    min-height: 360px;
    background: #e9ecef;
    border-radius: 16px;
    overflow: hidden;
}

/* ATTRAZIONI */
.attrazioni-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.attrazione {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.attrazione__img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}
.attrazione h3 {
    font-size: 1.1rem;
    padding: 14px 16px 4px;
    color: #1a3a5c;
}
.attrazione p {
    padding: 0 16px 16px;
    color: #4a5a6a;
    font-size: 0.95rem;
}

/* PRENOTA */
.prenota-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 24px 0;
}
.btn--booking {
    background: #003580;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn--booking:hover {
    background: #00224f;
    transform: scale(1.02);
}
.btn--airbnb {
    background: #ff5a5f;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn--airbnb:hover {
    background: #e04a4f;
    transform: scale(1.02);
}
.btn__icon {
    font-size: 1.3rem;
}
.prenota__info {
    text-align: center;
    font-size: 1.05rem;
    margin-top: 16px;
}
.prenota__info a {
    color: #1a3a5c;
    text-decoration: none;
    font-weight: 600;
}
.prenota__note {
    text-align: center;
    font-size: 0.9rem;
    color: #6a7a8a;
    margin-top: 12px;
}

/* PULSANTI CONTATTI DIRETTI */
.contatti-direct {
    text-align: center;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
}
.contatti-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.btn--email {
    background: #6c757d;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn--email:hover {
    background: #5a6268;
    transform: scale(1.02);
}
.btn--whatsapp {
    background: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn--whatsapp:hover {
    background: #1da851;
    transform: scale(1.02);
}

/* FOOTER */
.footer {
    background: #1a3a5c;
    color: rgba(255,255,255,0.8);
    padding: 30px 0;
    text-align: center;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 6px;
}
.footer__nav a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .camera-grid {
        grid-template-columns: 1fr;
    }
    .posizione-grid {
        grid-template-columns: 1fr;
    }
    .attrazioni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .servizi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .header__inner {
        flex-wrap: wrap;
    }
    .nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 16px;
    }
    .nav.open {
        display: block;
    }
    .nav__list {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        text-align: center;
    }
    .nav__link--cta {
        display: inline-block;
        width: auto;
    }
    .hamburger {
        display: flex;
    }
    .hero__title {
        font-size: 2.2rem;
    }
    .hero__subtitle {
        font-size: 1rem;
    }
    .hero__logo-img {
        max-height: 70px;
        padding: 6px 12px;
    }
    .btn--large {
        font-size: 1rem;
        padding: 14px 28px;
    }
    .camera-grid__images {
        grid-template-columns: 1fr 1fr;
    }
    .camera__img {
        height: 140px;
    }
    .attrazioni-grid {
        grid-template-columns: 1fr;
    }
    .servizi-grid {
        grid-template-columns: 1fr;
    }
    .prenota-grid {
        flex-direction: column;
        align-items: center;
    }
    .btn--booking, .btn--airbnb {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .section {
        padding: 50px 0;
    }
    .section__title {
        font-size: 1.8rem;
    }
    .contatti-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn--email, .btn--whatsapp {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}