:root {
    --gold: #f7d155b6;
    --dark: #1A1A1A;
    --black: #0F0F0F;
    --white: #FFFFFF;
    --gray: #888888;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    position: fixed;
    width: 100%;
    top: 0; left: 0;
    z-index: 1000;
    background: transparent;
    transition: 0.4s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.98);
    padding: 15px 5%;
    border-bottom: 1px solid var(--gold);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    z-index: 1002;
}
.logo span { color: var(--gold); }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li { margin: 0 20px; }

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover, .gold-text { color: var(--gold) !important; }

.btn-outline {
    border: 1px solid var(--gold);
    padding: 10px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-outline:hover { background: var(--gold); color: var(--black); }


/*PRENOTA ORA*/

/* Nasconde il tasto mobile quando siamo su computer */
.mobile-only-btn { 
    display: none; 
}

@media (max-width: 768px) {
    /* Nasconde il tasto esterno (quello che creava il doppione) su mobile */
    .hide-mobile { 
        display: none !important; 
    }

    /* Mostra il tasto dentro il menu a tendina */
    .mobile-only-btn { 
        display: block; 
        width: 80%; 
        margin-top: 20px;
    }
    
    .mobile-only-btn .btn-gold {
        width: 100%;
        text-align: center;
    }
}



/* --- HERO --- */
.hero {
    height: 100vh;
    background-image: url('images/here.jpg');
    background-size: cover;
    background-position: center 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 8vw, 4rem);
    margin-bottom: 20px;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-white {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 15px 30px;
    margin-top: 10px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    margin-left: 15px;
}

/* --- FEATURES SECTION --- */
.features-section {
    padding: 100px 5%;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item { padding: 40px 20px; }

.feature-icon {
    position: relative;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.icon-circle {
    position: absolute;
    width: 70px; height: 70px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}

.luxury-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-item p { color: var(--gray); font-size: 0.9rem; }

.features-cta { margin-top: 50px; }

/* --- FOOTER --- */
footer {
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid #333;
}
.footer-info { margin: 20px 0; }
.footer-info a { color: var(--white); text-decoration: none; margin: 0 10px; }
.separator { color: #444; }
.legal-links a { color: var(--gray); font-size: 0.8rem; text-decoration: none; margin: 0 10px; }
.copyright { color: #555; font-size: 0.75rem; margin-top: 30px; }

/* --- MOBILE --- */
.menu-icon { display: none; cursor: pointer; z-index: 1002; }
.menu-icon .bar { width: 25px; height: 2px; background: var(--gold); margin: 6px 0; transition: 0.4s; }

@media (max-width: 768px) {
    .hide-mobile { display: none; }
    .menu-icon { display: block; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
    }

    .nav-links.active { right: 0; }
    .nav-links li { margin: 20px 0; }
    .nav-links a { font-size: 1.5rem; }

    .btn-white { margin-left: 0; margin-top: 15px; }
    .hero-btns { display: flex; flex-direction: column; padding: 0 10%; }
    
    .menu-icon.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .menu-icon.active .bar:nth-child(2) { opacity: 0; }
    .menu-icon.active .bar:nth-child(3) { transform: rotate(45deg) translate(-6px, -7px); }
}