/* ============================================================================
   RESET BASE
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* ============================================================================
   HEADER HOME (logo piccolo + hamburger)
   ============================================================================ */
.header-home {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.home-small-logo {
    width: 150px;
    height: auto;
}

/* Hamburger */
.hamburger {
    width: 38px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 4px;
    background: #f0b840;
    border-radius: 4px;
    margin: 6px 0;
}

/* ============================================================================
   HOME HERO – VERSIONE UFFICIALE MODELLO A (BLINDATA)
   ============================================================================ */
.home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home-hero-bg {
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.home-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    top: 52%;
    transform: translateY(-50%);
    padding: 0 25px;
}

.home-hero-logo {
    width: 75%;
    max-width: 330px;
    margin-bottom: 35px;
}

.home-hero-title {
    font-size: 34px;
    font-weight: 700;
    color: #f0b840;
    margin-bottom: 20px;
}

.home-hero-sub {
    font-size: 20px;
    color: #fafafa;
    opacity: 0.95;
    margin-bottom: 45px;
}

.home-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-gold {
    padding: 14px 26px;
    background: #f0b840;
    color: #000;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.btn-gold-outline {
    padding: 14px 26px;
    border: 2px solid #f0b840;
    color: #f0b840;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

/* ============================================================================
   DESKTOP SPACING HOME (BLINDATO)
   ============================================================================ */
@media (min-width: 992px) {

    .home-hero-logo {
        width: 300px;
        margin-bottom: 90px;
    }

    .home-hero-title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .home-hero-sub {
        font-size: 18px;
        margin-bottom: 100px;
    }

    .home-buttons a {
        font-size: 20px;
        padding: 14px 35px;
    }

    .home-hero-content {
        top: 40%;
    }
}

/* ============================================================================
   MENU LATERALE GOLD EDITION
   ============================================================================ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9000;
}

.menu-overlay.show {
    display: block;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: #000;
    border-left: 1px solid rgba(240,184,64,0.55);
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.6);
    padding: 40px 25px;
    transition: 0.35s ease-in-out;
    z-index: 9999;
}

.side-menu.open {
    right: 0;
}

.side-menu nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.side-menu nav a {
    font-size: 20px;
    font-weight: 500;
    color: #f0b840;
    text-decoration: none;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.side-menu nav a:hover {
    color: #ffd46a;
    padding-left: 6px;
}

/* ============================================================================
   PAGINE INTERNE – GOLD CLEAN STYLE (BLINDATO)
   ============================================================================ */
.header-interna {
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(240,184,64,0.30);
}

.page-interna {
    background: #000;
    padding: 120px 20px 60px 20px;
    min-height: 100vh;
}

.page-interna h1,
.page-interna h2,
.page-interna h3 {
    color: #f0b840;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-interna p,
.page-interna li {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}

.page-interna a {
    color: #f0b840;
}

/* RIMOZIONE LOGHI ERRATI NELLE PAGINE INTERNE */
.page-interna img[alt="Dinamík Lounge Bar"],
.page-interna img[alt="Dinamik Lounge Bar"],
.page-interna img.logo-hero {
    display: none !important;
}

/* BUTTON FIX (IL PROBLEMA RISOLTO) */
.page-interna .btn-gold,
.page-interna .btn-outline {
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #000 !important; /* <<< FIX FONDAMENTALE */
}

/* ============================================================================
   MOBILE EDITION – SMARTPHONE
   ============================================================================ */
@media (max-width: 768px) {

    .home-hero-logo {
        width: 75%;
        max-width: 350px;
        margin-bottom: 90px;
    }

    .home-hero-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .home-hero-sub {
        font-size: 18px;
        margin-bottom: 80px;
    }

    .home-buttons a {
        font-size: 18px;
        padding: 14px 26px;
        margin: 0 6px;
    }

    .home-hero-content {
        top: 35%;
        transform: translateY(-50%);
    }
}

/* ============================================================================
   LOGO PAGINE INTERNE (BLINDATO E DEFINITIVO)
   ============================================================================ */
.header-interna .home-logo {
    width: 130px !important;
    height: auto !important;
}
/* ============================
   FIX SPAZIO LOGO GRANDE SU MOBILE
   ============================ */
@media (max-width: 768px) {
    .home-hero-logo {
        margin-top: 85px !important; /* aumenta la distanza dal top */
        display: block;
    }

    .home-hero-content {
        padding-top: 40px !important; /* garantisce respiro extra */
    }

    .header-home {
        z-index: 9999; /* impedisce sovrapposizioni */
    }
}
/* ============================
   CENTRATURA PERFETTA LOGO GRANDE (MOBILE)
   ============================ */
@media (max-width: 768px) {
    .home-hero-logo {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        text-align: center !important;
    }
}
