/* ==========================================================================
   STYLE.CSS - Maccis Photography (Cinematic Luxury Theme)
   ========================================================================== */

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-muted: #7e7e82;
    --accent-color: #c5a880; /* Oro satinato/champagne, molto più elegante dell'oro giallo */
    --font-title: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); /* Animazione super fluida stile Apple */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- NAVIGAZIONE PREMIUM --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-container {
    max-width: 1600px; /* Più largo, respiro cinematografico */
    margin: 0 auto;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-color);
}

/* Linea sotto i link animata */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.lang-switch {
    font-size: 0.7rem !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.6rem !important;
    border-radius: 2px;
}

/* --- HERO SECTION CINEMATICA --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    background: radial-gradient(circle at center, #111111 0%, var(--bg-color) 100%);
    position: relative;
}

/* Elemento decorativo minimale di sfondo */
.hero::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    top: 0;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem); /* Scalabilità perfetta da mobile a desktop */
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: luxuryFadeIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-family: var(--font-title);
    font-style: italic;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: luxuryFadeIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: luxuryFadeIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
    display: flex;
    gap: 1.5rem;
}

/* --- BOTTONI EDITORIALI --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(
