/* ============================= */
/* GLOBAL BACKGROUND */
/* ============================= */

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    background-image: url('../images/blackball.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #f8f9fa;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}


/* ============================= */
/* BOOTSTRAP OVERRIDES */
/* ============================= */

.card {
    background-color: rgba(20, 20, 20, 0.85);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}

.navbar {
    backdrop-filter: blur(6px);
}

.navbar-logo {
    height: 1.2em;
    width: auto;
}

.footer-logo {
    height: 1em;
    width: auto;
    display: inline-block;
}

/* Keskitetty logout dropdownissa */
.dropdown-menu .dropdown-item {
    text-align: center;
}


/* ============================= */
/* HOMEPAGE MATCH STYLING */
/* ============================= */

.date-title {
    font-size: 1rem;
    font-weight: 500;
}

.match-row {
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.players {
    text-transform: uppercase;
    font-weight: 500;
}

.score {
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}


/* ============================= */
/* FOOTER */
/* ============================= */

footer {
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    margin: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {
    body { font-size: 1.05rem; }
}

@media (max-width: 600px) {
    body { font-size: 1rem; }
}


/* ============================= */
/* FADE EFFECT */
/* ============================= */

#results-container {
    transition: opacity 0.8s ease;
}

/* Village Snooker typography */

h1 {
    font-size: 2.2rem;
    font-weight: 600;
}

h2 {
    font-size: 1.6rem;
    font-weight: 500;
}

h3 {
    font-size: 1.3rem;
}