/* Lõuke Cup 2026 — kohandatud stiilid (visuaal põhineb 2025 versioonil) */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --gold-color: #ffd700;
    --silver-color: #c0c0c0;
    --bronze-color: #cd7f32;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Navigatsioon */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    transform: translateY(-1px);
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #495057 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Kaardid */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card-header {
    border-bottom: 2px solid #e9ecef;
    border-radius: 15px 15px 0 0 !important;
    font-weight: 600;
}

/* Ikoonimullid */
.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* Nupud */
.btn {
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Tabelid */
.table th {
    background-color: #f8f9fa;
    border-top: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

.table-warning {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

/* Märgised */
.badge {
    border-radius: 20px;
    font-weight: 500;
}

/* Progressiribad */
.progress {
    height: 8px;
    border-radius: 20px;
    background-color: #e9ecef;
}

.progress-bar {
    border-radius: 20px;
    transition: width 0.6s ease;
}

/* Mängukaardid */
.match-card {
    border-radius: 15px;
    overflow: hidden;
}

.vs-divider {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.team-section {
    padding: 0.75rem;
    border-radius: 10px;
    background-color: #f8f9fa;
}

.match-form input[type="number"] {
    font-size: 1.1rem;
    font-weight: bold;
}

/* Tabid */
.nav-pills .nav-link {
    border-radius: 25px;
    margin: 0 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 2rem !important;
    }

    .hero-section .col-lg-4 {
        display: none;
    }

    .display-4 {
        font-size: 2rem;
    }

    .table-responsive {
        font-size: 0.875rem;
    }

    .feature-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.1rem;
    }
}

/* Print */
@media print {
    .navbar, .btn, .nav, footer, .alert {
        display: none !important;
    }

    .card {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
}
