/* ====================== css/style.css ====================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.7;
    color: #e0e7ff;
    background-color: #0A0A0A;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

/* Gradiente Testo */
.text-gradient {
    background: linear-gradient(90deg, #c4b5fd, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Card Style */
.card {
    background-color: #18181b;
    border: 1px solid rgba(139, 92, 246, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.card:hover {
    transform: translateY(-12px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 25px 50px -12px rgb(124 58 237 / 0.25);
}

/* Header */
header {
    transition: all 0.3s ease;
}

/* Sezioni */
section {
    scroll-margin-top: 90px;
}

/* Galleria */
.galleria-img {
    transition: all 0.4s ease;
}

.galleria-img:hover {
    transform: scale(1.06);
    filter: brightness(1.15);
}

/* Animazioni */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bottone Primario */
.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgb(124 58 237 / 0.4);
}

/* Mobile Menu Animation */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }
}