@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:wght@700&display=swap');

:root {
    --bg-body: #050505;
    --bg-card: #121212;
    --brand-red: #c41e3a;
    --brand-gold: #d4af37; /* ORO PREMIUM */
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --whatsapp: #25d366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: radial-gradient(circle at top, #1a0a0c 0%, #000000 80%);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    padding-bottom: 110px;
}

/* HEADER */
.hero-header {
    text-align: center;
    padding: 50px 20px 30px;
    background: linear-gradient(180deg, rgba(196, 30, 58, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 30px;
}
.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.brand-logo span { color: var(--brand-red); }
.brand-tagline {
    color: var(--brand-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 8px;
    font-weight: 400;
    opacity: 0.9;
}

/* SEZIONI */
.section-label {
    font-size: 0.85rem;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 20px;
    border-left: 3px solid var(--brand-red);
    padding-left: 15px;
    display: flex;
    align-items: center;
}

/* BACHECA NEWS */
.luxury-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.news-badge {
    background: var(--brand-red);
    color: white;
    padding: 5px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

/* SCRITTA CENTRALE "CLICCA PER INGRANDIRE" */
.zoom-hint-wrapper {
    width: 100%;
    display: flex;
    justify-content: center; /* CENTRATURA ORIZZONTALE */
    margin-top: 20px;
}
.zoom-hint {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-align: center;
}
.zoom-hint i { color: var(--brand-gold); margin-right: 5px; }

/* MINIATURE QUADRATE PERFETTE */
.gallery-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}
.gallery-thumb:hover {
    transform: scale(1.03);
    border-color: var(--brand-gold);
}

/* PLANNING GIORNI */
.day-card {
    background: linear-gradient(145deg, #161616, #0f0f0f);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}
.day-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* GIORNI IN ORO - QUI C'ERA L'ERRORE NEL VECCHIO FILE */
.day-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #d4af37 !important; /* FORZA COLORE ORO */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.city-list { padding: 0; }
.city-item {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: #e5e5e5; /* CITTÀ BIANCHE/GRIGIE */
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.city-item:last-child { border-bottom: none; }
.city-item i { color: var(--brand-red); margin-right: 15px; font-size: 0.9rem; }

/* CHIUSO */
.closed-box { padding: 20px; text-align: center; }
.closed-label {
    border: 1px solid #333; color: #666; padding: 6px 15px;
    border-radius: 50px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
}

/* DOCK MENU */
.dock-container {
    position: fixed; bottom: 0; left: 0; width: 100%;
    padding: 20px; display: flex; justify-content: center; z-index: 999;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, transparent);
}
.dock-menu {
    background: rgba(20, 20, 20, 0.85); backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15); padding: 8px 10px;
    border-radius: 100px; display: flex; align-items: center; gap: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.dock-link {
    width: 60px; height: 50px; display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #888; text-decoration: none; font-size: 0.6rem; text-transform: uppercase;
    border-radius: 10px; transition: 0.2s;
}
.dock-link:hover { color: white; background: rgba(255,255,255,0.1); }
.dock-link i { font-size: 1.2rem; margin-bottom: 3px; }

.btn-whatsapp {
    background: var(--whatsapp); color: black; font-weight: 800; text-transform: uppercase;
    text-decoration: none; padding: 0 25px; height: 50px; border-radius: 50px;
    display: flex; align-items: center; gap: 8px; font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp i { font-size: 1.4rem; }

/* === MODAL LIGHTBOX === */
.modal-backdrop.show { opacity: 0.98; background-color: #000; }
.modal-content { background-color: transparent; border: none; height: 100vh; justify-content: center; }
.modal-body { padding: 0; display: flex; align-items: center; justify-content: center; height: 100%; }

.carousel-item {
    height: 100vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #000;
}
.carousel-item img {
    max-height: 85vh;
    max-width: 100%;
    object-fit: contain;
}

/* TASTO CHIUDI (X) FISSO */
.custom-close-btn {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(196, 30, 58, 0.9); /* ROSSO */
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
    border: 2px solid white;
}
.carousel-control-prev, .carousel-control-next { width: 15%; opacity: 1; }
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 3rem; height: 3rem; background-color: rgba(255,255,255,0.2); border-radius: 50%; background-size: 50%;
}