:root {
    --primary-color: #6B5B95; /* Viola tenue */
    --primary-hover: #564a80;
    --bg-white: #f8f9fa;
    --bg-light: #e9ecef; /* Grigio chiarissimo */
    --bg-dark: #343a40; /* Sfondo scuro per la hero section */
    --text-dark: #212529;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --border-radius: 12px;
    --navbar-height: 72px;
    --gradient-start: #f0f4f8; /* Colore iniziale del gradiente */
    --gradient-end: #dce2e6; /* Colore finale del gradiente */

    --success-bg: #c3e6cb;
    --danger-bg: #f5c6cb;
    --warning-bg: #ffeeba;
            
    --card-bg-color: #ffffff;
    --card-border-radius: 12px;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --rsvp-btn-accept: #28a745;
    --rsvp-btn-decline: #dc3545;
    --text-color-primary: #343a40;
    --text-color-secondary: #6c757d;

    --success-bg: #e8f5e9;
    --success-text: #2e7d32;
    --error-bg: #fbe9e7;
    --error-text: #c62828;

    --accent-color: #0c4b33;
    --accent-hover: #083322;
    --decline-color: #444444
    
}

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

html { scroll-behavior: smooth; }