/* CSS aggiuntivo per i social links, navbar logo, hero gradient e subtitle servizi - Aggiungi al tuo main.css esistente */

/* Nuovo gradient hero con SOLO viola #8572ab e sue sfumature */
.funky-bg {
    background: linear-gradient(45deg, #8572ab, #9684b8, #a593c2, #b8a9d9);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    position: relative;
}

/* Variante alternativa con più enfasi sul viola */
.funky-bg-purple {
    background: linear-gradient(135deg, #8572ab 0%, #6b5b95 20%, var(--primary) 60%, var(--secondary) 100%);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    position: relative;
}

/* Animazione gradient migliorata */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Aggiungi colore viola alle variabili CSS */
:root {
    --hero-purple: #8572ab;
    --hero-purple-dark: #6b5b95;
    --hero-purple-light: #a593c2;
    --hero-purple-medium: #9684b8;
}

/* Modifica effetti hover price card - solo zoom senza rotazione */
.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%;
}

/* Strisce superiori con gradient viola */
.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #8572ab, #9684b8, #9684b8);
}

/* Hover effect - solo zoom senza rotazione */
.price-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(133, 114, 171, 0.2);
}

/* Subtitle per i servizi - stile più piccolo e discreto */
.service-subtitle {
    font-size: 1rem !important;
    line-height: 1.3;
    color: #888 !important;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 1.2rem;
    padding: 0;
    opacity: 0.85;
}

/* Hover effect molto subtle per subtitle */
.price-card:hover .service-subtitle {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Logo nella navbar */
.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

/* Responsive logo */
@media (max-width: 768px) {
    .navbar-logo {
        height: 35px;
        max-width: 120px;
    }
    
    .navbar-brand-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 30px;
        max-width: 100px;
    }
    
    .navbar-brand-text {
        font-size: 0.8rem;
        /* Nascondi parte del testo su schermi molto piccoli */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }
    
    /* Subtitle responsive */
    .service-subtitle {
        font-size: 0.75rem !important;
        margin-bottom: 1rem;
    }
}

/* Se il logo è troppo lungo, nascondi il testo su mobile molto piccolo */
@media (max-width: 400px) {
    .navbar-brand-text {
        display: none;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .service-subtitle {
        font-size: 0.7rem !important;
    }
}

/* Social links nella sezione contatti */
.social-links-contact {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links-contact a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Icone specifiche per piattaforme */
.social-links a[title*="Telegram"]:hover,
.social-links-contact a[title*="Telegram"]:hover {
    background: #9684b8;
}

.social-links a[title*="Bluesky"]:hover,
.social-links-contact a[title*="Bluesky"]:hover {
    background: #9684b8;
}

.social-links a[title*="Twitter"]:hover,
.social-links-contact a[title*="Twitter"]:hover {
    background: #9684b8;
}

.social-links a[title*="Inkbunny"]:hover,
.social-links-contact a[title*="Inkbunny"]:hover {
    background: #9684b8;
}

.social-links a[title*="FurAffinity"]:hover,
.social-links-contact a[title*="FurAffinity"]:hover {
    background: #9684b8;
}

/* Responsive per mobile */
@media (max-width: 768px) {
    .social-links-contact {
        justify-content: center;
    }
    
    .social-links-contact a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}