/* Tema 3 (Lipödem 2026) CSS Stylesheet */

.glass-header { 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(10px); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); 
}

.glass-panel { 
    background: rgba(25, 109, 145, 0.4); 
    backdrop-filter: blur(8px); 
    border-top: 1px solid rgba(255,255,255,0.1); 
}

.speaker-card {
    background: white; 
    border-radius: 1.5rem; 
    padding: 2rem; 
    text-align: center;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    border: 1px solid #e2e8f0; 
    position: relative; 
    overflow: hidden;
}

.card-secondary { 
    border-top: 6px solid #d43460; 
}

.card-primary { 
    border-top: 6px solid #196d91; 
}

.card-gray { 
    border-top: 6px solid #cbd5e1; 
}

.speaker-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px -10px rgba(25, 109, 145, 0.15); 
    border-color: #d43460; 
}

.speaker-img-container {
    width: 140px; 
    height: 140px; 
    border-radius: 50%; 
    overflow: hidden;
    margin: 0 auto 1.5rem auto; 
    border: 4px solid #fff; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.price-table th { 
    padding: 1.2rem 1rem; 
    color: white; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 0.5px; 
}

.price-table td { 
    padding: 1.2rem 1rem; 
    border-bottom: 1px solid #f1f5f9; 
    color: #334155; 
    font-weight: 600; 
}

.pattern-dots { 
    background-image: radial-gradient(#196d91 1px, transparent 1px); 
    background-size: 24px 24px; 
}

[x-cloak] { 
    display: none !important; 
}

#preloader { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: #196d91; 
    z-index: 9999; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

/* Custom transitions and premium classes for subpages */
.pricing-table th {
    background-color: #196d91;
    color: #ffffff;
}

.pricing-table tr:hover {
    background-color: rgba(25, 109, 145, 0.03);
}

.btn-secondary-action {
    background-color: #d43460;
    color: #ffffff;
}

.btn-secondary-action:hover {
    background-color: #196d91;
}
