/*
Theme Name: KREEMAR
Version: 1.0.0
*/

/* =========================
   FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

/* =========================
   VARIABILI
========================= */
:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #c9a227;
    --white: #ffffff;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--primary);
    z-index: 9999;
}

.header-inner {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
}

/* =========================
   MENU DESKTOP
========================= */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
    color: var(--accent);
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 100vh;
    padding-top: 80px; /* ESATTAMENTE ALTEZZA HEADER */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* =========================
   MOBILE
========================= */
.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: white;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
