﻿/* ==== WOW EFEKTY PRO DEMO PŮJČOVNY ==== */

/* Obalovač */
.demo-pujcovna-wrapper {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

/* Karta produktu */
.costume-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px !important;
    border: 1px solid rgba(255,255,255,0.8) !important;
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(10px);
}
.costume-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

/* Obrázek produktu - scale on hover */
.card-img-wrapper img {
    transition: transform 0.6s ease;
}
.costume-card:hover .card-img-wrapper img {
    transform: scale(1.1) rotate(2deg);
}

/* Tlačítko - dynamické a kouzelné */
.btn-theme-dynamic {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8b);
    color: white;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-theme-dynamic:hover {
    background: linear-gradient(45deg, #ff5252, #ff7676);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    color: white;
}

/* Hero Badge */
.badge-fun {
    background: linear-gradient(45deg, #ffd93d, #ffb347);
    font-size: 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* Upozornění - glassmorphism */
.demo-pujcovna-wrapper .alert {
    background: rgba(224, 247, 250, 0.8) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.6) !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05) !important;
}

/* Plovoucí tlačítko "Zpět z dema" */
.btn-demo-back {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    background: #0f172a;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-demo-back:hover {
    transform: translateY(-3px) scale(1.05);
    background: #1d4ed8;
    color: white;
    box-shadow: 0 15px 35px rgba(29, 78, 216, 0.4);
}
