/* =========================
   MANICURE PAGE CSS
========================= */

/* ---------- PAGE HEADER / COVER ---------- */
.page-header {
    background: 
        radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(139, 69, 19, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom center, rgba(101, 67, 33, 0.25) 0%, transparent 60%),
        linear-gradient(135deg, #1a1a1a 0%, #2d1f0f 25%, #1a1a1a 50%, #2d1f0f 75%, #1a1a1a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.03) 2px,
            rgba(212, 175, 55, 0.03) 4px
        ),
        #111111;
    background-size: 100% 100%, 100% 100%, 100% 100%, 200% 200%, 40px 40px, 100% 100%;
    position: relative;
    overflow: hidden;
    padding: 80px 20px 40px;
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* ---------- INTRO TEXT (SULLO SFONDO, SENZA RIQUADRO) ---------- */
.intro-section {
    position: relative;
    padding: 20px 0 60px;
    background: none; /* rimuove il riquadro */
}

.intro-section .intro-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.7;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .intro-section .intro-text {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 var(--spacing-sm);
    }
}
