/* ======================
   CUSTOM THEME STYLES
   ====================== */

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.hero-gradient {
    background: linear-gradient(135deg, #1F2937 0%, #374151 25%, #4B5563 50%, #6B7280 75%, #9CA3AF 100%);
}

.pulse-border {
    animation: pulse-border 2s infinite;
    box-shadow: 0 0 0 0 rgba(31, 41, 55, 0.7);
}

.pulse-border-accent {
    animation: pulse-border-accent 2s infinite;
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(31, 41, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(31, 41, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(31, 41, 55, 0);
    }
}

@keyframes pulse-border-accent {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.slide-up {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease-out;
}

.slide-up.visible {
    transform: translateY(0);
    opacity: 1;
}

.logo-wrapper {
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-lg-center {
    justify-content: center;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-lg-start {
    justify-content: flex-start;
}

.me-lg-3 {
    margin-right: 1rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.data-group {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.data-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.data-group-1 {
    background: linear-gradient(135deg, #60A5FA, #3B82F6);
}

.bg-gold {
    background-color: #FFDC73;
}

.bg-success {
    background-color: #34D399;
}

.text-gold {
    color: #FFDC73;
}

.text-accent {
    color: #60A5FA;
}

.bg-accent {
    background-color: #60A5FA;
}

.hover-accent-dark:hover {
    background-color: #3B82F6;
}

.data {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.data-1 {
    color: white;
}

.data-2 {
    color: black;
}

.orario {
    font-size: 0.9rem;
    opacity: 0.9;
}

.me-1 {
    margin-right: 0.25rem;
}

.session-label {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-group-1 .session-label {
    color: white;
}

.bg-gold .session-label {
    color: black;
}

@media (max-width: 768px) {
    .d-flex {
        flex-direction: column;
        align-items: center;
    }
    .me-lg-3, .me-2 {
        margin-right: 0;
        margin-bottom: 1rem;
    }
} 