/* Thème Pink'Volume 52 Classic — Flower Power (pastels aquarelle) */

.flower-bg {
    background: linear-gradient(160deg, #f8f0f4 0%, #e8f5e9 35%, #e3f2fd 70%, #fce4ec 100%);
    position: relative;
    overflow: hidden;
}

.flower-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(191, 111, 170, 0.12) 2px, transparent 2px),
        radial-gradient(circle at 75% 60%, rgba(129, 199, 132, 0.15) 1.5px, transparent 1.5px),
        radial-gradient(circle at 45% 80%, rgba(100, 181, 246, 0.1) 2px, transparent 2px);
    background-size: 120px 120px, 90px 90px, 140px 140px;
    background-position: 0 0, 40px 60px, 20px 20px;
    animation: flower-drift 24s ease-in-out infinite alternate;
}

@keyframes flower-drift {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(0.5deg); }
}

.flower-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(191, 111, 170, 0.15);
    border: 1px solid rgba(191, 111, 170, 0.12);
}

.flower-text {
    color: #1a2e35;
}

.flower-accent {
    background: linear-gradient(135deg, #66bb6a 0%, #BF6FAA 55%, #5c6bc0 100%);
}

/* Titre hero : une seule ligne, taille fluide (mobile plus lisible) */
.vol52-hero-title {
    white-space: nowrap;
    font-size: clamp(1.625rem, 6vw + 1rem, 4.5rem);
    line-height: 1.12;
}

/* Boutons hero : même structure que Pink'Tolosa (primaire + secondaires), couleurs Volume 52 */
.flower-hero-btn-primary {
    background: linear-gradient(135deg, #66bb6a 0%, #BF6FAA 52%, #5c6bc0 100%);
    color: #fff;
    box-shadow: 0 10px 36px rgba(191, 111, 170, 0.32);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flower-hero-btn-primary:hover {
    box-shadow: 0 14px 44px rgba(191, 111, 170, 0.42), 0 4px 20px rgba(92, 107, 192, 0.2);
}

.flower-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #1a2e35;
    border: 2px solid rgba(191, 111, 170, 0.28);
    box-shadow: 0 8px 28px rgba(191, 111, 170, 0.12);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.flower-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(129, 199, 132, 0.55);
    box-shadow: 0 10px 32px rgba(129, 199, 132, 0.15), 0 6px 24px rgba(191, 111, 170, 0.12);
}

.flower-hero-btn-secondary svg {
    color: #BF6FAA;
}

/* Contour avatar DJ : dégradé flower-accent + halo type flower-card */
.flower-dj-ring {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 4px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #66bb6a 0%, #BF6FAA 52%, #5c6bc0 100%);
    box-shadow:
        0 6px 28px rgba(191, 111, 170, 0.3),
        0 3px 14px rgba(129, 199, 132, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.flower-dj-ring-inner {
    width: 200px;
    height: 200px;
    border-radius: 9999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    line-height: 0;
}

.flower-dj-ring-inner img {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: cover;
}
