:root {
    --gold: #c6a25c;
    --gold-soft: #e9d6a3;
    --dark: #070b12;
    --ink: #111827;
    --bg: #f5f3ef;
}

/* dacă vrei să fie global pe toată pagina */
body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* NAV – linkuri */
.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 500;
    line-height: 1;
    padding: 0.3rem 0;
}

/* NAV – icon mic auriu (dacă îl folosești) */
.nav-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
    flex-shrink: 0;
}

.nav-icon::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1.5px solid #f4e1b2;
    background: radial-gradient(circle,
    transparent 55%,
    #f8e3a0 56%,
    #cfa95d 100%);
    box-shadow: 0 0 5px rgba(255, 223, 128, 0.8);
}

.nav-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 5px;
    width: 5px;
    height: 5px;
    border-radius: 2px;
    background: linear-gradient(135deg, #fff9dd, #f6e09b, #e0b655);
    box-shadow: 0 0 4px rgba(255, 230, 150, 0.9);
    transform: rotate(45deg);
}

/* hover pe link */
.nav-link:hover {
    color: var(--gold-soft);
}

/* telefon dreapta (dacă vrei să-l stilizezi separat) */
.header-phone {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
}
