/* Custom styles for Traxsyd */

/* General styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navbar styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
}

/* Card styles */
.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: none;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Table styles */
.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

/* Button styles */
.btn-group .btn {
    margin: 0 2px;
}

/* Footer styles */
.footer {
    margin-top: auto;
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #6c757d;
    text-decoration: none;
}

.footer a:hover {
    color: #343a40;
}

/* Event management styles */
.event-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
}

/* Form styles */
.form-label {
    font-weight: 500;
}

.invalid-feedback {
    font-size: 0.875rem;
}

/* Modal styles */
.modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.modal-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Fan Stats Section */
.fan-stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 2px rgba(255,255,255,0.6);
}

.stat-label {
    color: #333;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 1px rgba(255,255,255,0.4);
}

/* User Types Section - Featured Card */
.user-type-card.featured {
    border: 2px solid #17a2b8;
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.15);
    transform: scale(1.02);
}

.user-type-card.featured .user-type-icon {
    transform: scale(1.1);
}

/* Gradient backgrounds */
.bg-primary-gradient {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.bg-success-gradient {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.bg-info-gradient {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.bg-warning-gradient {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
} 