@media (max-width: 991px) {
    .coming_soon-section .coming_soon-bg {
        background: none; /* tolgo il nero di base */
        position: relative;
        overflow: hidden;
    }

    .coming_soon-section .coming_soon-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('/assets/images/coming_soon.webp') no-repeat center center;
        background-size: cover;
        filter: blur(6px);       /* sfocatura */
        transform: scale(1.1);   /* evita bordi tagliati dal blur */
        z-index: 0;
    }

    .coming_soon-section .coming_soon-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.5); /* overlay scuro */
        z-index: 1;
    }

    .coming_soon-section .coming_soon-bg > * {
        position: relative;
        z-index: 2; /* il contenuto rimane sopra */
    }
}


.green_casatimeo{
    color:#0e5f58;
}
.gold_casatimeo{
    color:#c99735;
}

.bg_green_casatimeo{
    background-color: #0e5f58;
}

.bg_gold_casatimeo{
    background-color: #c99735;
}


.bg_gold_casatimeo_gradient_light{
    background: linear-gradient(to top, #c99735 0%, #ffffff 60%, #e0e0e0 100%);
}


.bg_gold_body{
    background: linear-gradient(to top, #c99735 0%, #ffffff 60%, #e0e0e0 100%);
}


c:hover, c:active{color: var(--red_heart); text-decoration: none;}
:root {--red_heart: red;}

.bg_gold_transparency{
    background-color: rgba(201, 151, 53, 0.3);
}

.btn-green-casatimeo {
    color: #0e5f58 !important;
    border: 2px solid #0e5f58 !important;
    transition: all 0.3s ease;
}

/* Stato hover o focus */
.btn-green-casatimeo:hover,
.btn-green-casatimeo:focus {
    color: #fff !important;
    background-color: #0e5f58 !important;
    border-color: #0e5f58 !important;
}


/* ✅ Desktop: layout attuale */
.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    justify-content: center;
}

.amenity {
    display: flex;
    align-items: left;
    gap: 8px;
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    white-space: nowrap;
    transition: transform 0.2s;
}

/* Hover */
.amenity:hover {
    transform: scale(1.05);
}

/* Icone */
.amenity i {
    font-size: 20px;
    color: #0e5f58;
}

/* ✅ Mobile: due colonne */
@media (max-width: 768px) {

    .amenities {
        padding: 0;
        justify-content: space-between;
    }

    .amenity {
        font-size: 14px;
        gap: 10px;
        flex-basis: calc(50% - 10px);
        justify-content: flex-start;
    }

    .amenity i {
        font-size: 16px;
    }
}


/* Overlay SOLO su mobile */
@media (max-width: 576px) {
    .swiper-slide.cover-background {
        position: relative;
    }

    .swiper-slide.cover-background::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1;
    }

    .swiper-slide.cover-background > * {
        position: relative;
        z-index: 2;
    }
}


.floating-label { position: relative; margin-bottom: 16px; }
.floating-label input,
.floating-label textarea { width: 100%;  font-size: 16px; }
.floating-label label {
    position: absolute; left: 12px; top: 12px; padding: 0 4px;
    background: #fff; color: #777; font-size: 14px;
    transition: 0.2s ease; pointer-events: none;
}
.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
    top: -8px; font-size: 12px; color: #111;
}

.floating-label input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    padding: 12px;
    height: 46px; /* stessa altezza degli altri input */
    line-height: 22px;
}

@supports (-webkit-touch-callout: none) {
    .floating-label input[type="date"] {
        height: 48px;
    }
}


.input-bg { background-color: #fff; }

.form-success {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    line-height: 72px;
    border-radius: 50%;
    border: 2px solid currentColor;
    font-size: 36px;
    text-align: center;
    margin-bottom: 14px;
}

.form-success-title {
    margin: 0 0 6px;
    font-size: 22px;
}

.form-success-subtitle {
    margin: 0;
    opacity: 0.75;
}


.lang-switch {
    float: left;
    display: flex;
    gap: 6px;
    align-items: center;
}

.lang-btn {
    border: 1px solid #c99735;
    background: transparent;
    color: #c99735;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
    text-transform: uppercase;
}

.lang-btn:hover {
    background: #c99735;
    color: #fff;
    border-color: #c99735;
}

.lang-btn.active {
    background: #c99735;
    color: #fff;
    border-color: #c99735;
}


/* Accent per i bottoni lingua */
.lang-switch { display:flex; gap:6px; align-items:center; }
.lang-btn{
    border:1px solid #c99735; background:transparent; color:#c99735;
    padding:6px 12px; border-radius:4px; cursor:pointer; font-size:14px; font-weight:600;
    text-transform:uppercase; transition:all .25s ease;
}
.lang-btn:hover,
.lang-btn.active{ background:#c99735; color:#fff; border-color:#c99735; }

/* Spaziatura header mobile */
@media (max-width: 767.98px){
    .nav-header-container{ min-height:70px; }
    .nav-header-container .col{ display:flex; align-items:center; }
    .nav-header-container .col.text-center{ justify-content:center; }
    .nav-header-container .col.text-start{ justify-content:flex-start; }
    .nav-header-container .col.text-end{ justify-content:flex-end; }
}


/* ============ Suite: pagina dedicata + highlight home ============ */
.suite-badge {
    background-color: #c99735;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 30px;
    line-height: 1;
}

.suite-feature-icon {
    font-size: 40px;
    line-height: 1;
}

.suite-highlight {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    background: #fff;
}
.suite-highlight-img {
    min-height: 380px;
    height: 100%;
}
@media (max-width: 991px) {
    .suite-highlight-img { min-height: 260px; }
}

/* CTA "Prenota solo la Suite" — sfondo grigio pieno, niente immagine */
.suite-cta {
    background-color: #4d4f52;
}
.btn-white-suite {
    color: #fff !important;
    border: 2px solid #fff !important;
    transition: all 0.3s ease;
}
.btn-white-suite:hover,
.btn-white-suite:focus {
    color: #4d4f52 !important;
    background-color: #fff !important;
    border-color: #fff !important;
}

/* Menu overlay:
   - desktop (>=992px): tutte e 4 le voci su una sola riga
   - tablet (768-991px): 2x2
   - mobile (<768px): verticale */
.hamburger-menu-links li { width: 50%; }
@media (min-width: 992px) {
    .hamburger-menu-links { display: flex; flex-wrap: nowrap; align-items: center; font-size: 34px; line-height: 1.2; }
    .hamburger-menu-links li { width: auto; margin-right: 48px; margin-bottom: 0; white-space: nowrap; }
}
@media (max-width: 767px) {
    .hamburger-menu-links li { width: 100%; }
}
