        /** @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');**/
        @import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

        :root {
            --primary: #5a4d7c;
            --secondary: #9684b8;
            --accent: #45b7d1;
            --purple: #96ceb4;
            --orange: #b8a9d9;
            --dark: #2f3542;
            --light: #f1f2f6;
        }

        * {
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }

        .funky-bg {
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
            position: relative;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '🎨🦦✨🌈';
            position: absolute;
            top: 20%;
            right: -10%;
            font-size: 8rem;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .profile-img {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            border: 8px solid rgba(255,255,255,0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            object-fit: cover;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            filter: saturate(1.2) contrast(1.1);
        }

        .profile-img:hover {
            transform: scale(1.1) rotate(5deg);
            border-color: var(--orange);
        }

        .title-fancy {
            font-weight: 800;
            font-size: 3.5rem;
            background: linear-gradient(45deg, #8572ab, #8f7fb1, #9684b8, #a593c2, #b8a9d9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 1rem;
        }

        .subtitle-fun {
            font-size: 1.4rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }

        .art-piece {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .art-piece:nth-child(odd) {
            transform: rotate(-2deg);
        }

        .art-piece:nth-child(even) {
            transform: rotate(2deg);
        }

        .art-piece:hover {
            transform: rotate(0deg) scale(1.05);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .art-piece img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .art-piece:hover img {
            transform: scale(1.1);
        }

        .art-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(90,77,124,0.9), rgba(150,132,184,0.9));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .art-piece:hover .art-overlay {
            opacity: 1;
        }

        .price-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem 2rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }

        .price-card:hover {
            transform: translateY(-15px) rotate(1deg);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }


        .price-card .sketch {
            overflow: hidden;
        }
        .price-card .sketch img {
            height: 130px;
        }

        .price-tag {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin: 1rem 0;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .price-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 2px dashed #eee;
            font-weight: 600;
        }

        .price-item:last-child {
            border-bottom: none;
        }

        .price-label {
            font-size: 1.1rem;
            color: var(--dark);
        }

        .price-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .discount-badge {
            background: var(--orange);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .btn-funky {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-funky::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn-funky:hover::before {
            left: 100%;
        }

        .btn-funky:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #8572ab, #9684b8, #9684b8);
            border-radius: 3px;
        }

        .fun-emoji {
            font-size: 2rem;
            margin: 0 0.5rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .social-links a {
            display: inline-block;
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            background: rgba(255,255,255,0.2);
            color: white;
            border-radius: 50%;
            margin: 0 15px;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 1.5rem;
        }

        .social-links a:hover {
            background: white;
            color: var(--primary);
            transform: scale(1.2) rotate(360deg);
        }

        .contact-section {
            background: linear-gradient(135deg, var(--light) 0%, #e8f4fd 100%);
            position: relative;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .form-control {
            border: 3px solid #eee;
            border-radius: 15px;
            padding: 15px 20px;
            font-size: 1.1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(255,107,107,0.25);
        }

        .navbar-custom {
            background: rgba(255,255,255,0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary) !important;
        }

        .nav-link {
            font-weight: 600;
            color: var(--dark) !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary) !important;
        }

        @media (max-width: 768px) {
            .title-fancy {
                font-size: 2.5rem;
            }
            .profile-img {
                width: 180px;
                height: 180px;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 2rem;
            }
        }

          .zoom-hover img {
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .zoom-hover img:hover {
    transform: scale(1.05);
  }



  .profile-container {
    position: relative;
    display: inline-block;
}

.profile-img.clicked {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--orange);
}

/* Nuvoletta da fumetto */
.speech-bubble {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.speech-bubble.show {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    animation: bounce 0.6s ease-out;
}

/* Coda della nuvoletta */
.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid white;
}

@keyframes bounce {
    0% { transform: translateX(-50%) scale(0) rotate(-10deg); }
    50% { transform: translateX(-50%) scale(1.1) rotate(2deg); }
    100% { transform: translateX(-50%) scale(1) rotate(0deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .speech-bubble {
        top: -70px;
        font-size: 12px;
        padding: 12px 16px;
    }
}