/* 
   Tantra Yoni Torino - Profile Card CSS
   Carrd-style Premium Design
*/

:root {
    --primary-color: #8e2de2;
    --secondary-color: #4a00e0;
    --accent-color: #d4af37; /* Gold */
    --text-color: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.1);
    --bg-glass-hover: rgba(255, 255, 255, 0.2);
    --border-glass: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    font-family: 'Lora', serif;
    background: #000 url('../image/foto-copertina-massaggio-tantra-torino.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(74,0,224,0.4) 100%);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.profile-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.profile-card {
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

/* Header */
.profile-img-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 0 15px rgba(142, 45, 226, 0.5);
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-tagline {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    margin-bottom: 25px;
}

/* Bio */
.profile-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.quote {
    margin-top: 15px;
    font-style: italic;
    font-size: 0.95rem;
    color: #ffffff; /* Bianco per massimo contrasto */
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6); /* Bagliore dorato */
    border-top: 1px solid var(--border-glass);
    padding-top: 15px;
}

/* Buttons */
.profile-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Lora', serif;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(142, 45, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(142, 45, 226, 0.5);
}

.btn-secondary, .btn-telegram, .btn-signal, .btn-email {
    background: var(--bg-glass);
    color: white;
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover, .btn-telegram:hover, .btn-signal:hover, .btn-email:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.btn-telegram i { color: #0088cc; }
.btn-signal i { color: #3a76f0; }

/* Footer */
.profile-footer {
    margin-top: 35px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.profile-footer p {
    margin-bottom: 5px;
}

.profile-footer i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .profile-card {
        padding: 30px 20px;
    }
    
    .profile-name {
        font-size: 1.6rem;
    }
}
