/* Globális korrekciók */
body {
    font-family: 'Nunito', sans-serif;
    background-color: #000;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
}

/* 1. Landing & Navigation */
#mainNav {
    background-color: rgba(0, 0, 0, 0.85) !important;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-logo {
    max-height: 50px;
}

.sheriff-bg {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.85) 100%), 
                url('../assets/img/SheriffBackgroundPic.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-blur-box {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
}

.divider-custom {
    height: 3px;
    width: 100px;
    background-color: #64a19d;
    margin: 0 auto;
}

/* 2. Statisztikák & Szekciók */
.bg-dark-custom {
    background-color: #0a0a0a;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
}

/* 3. Alosztályok & Vezetőség */
.division-card {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: 0.3s;
}

.division-card:hover {
    border-color: #64a19d;
}

.leader-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

/* 4. Kontakt & Karrier */
.contact-box {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.border-danger-soft {
    border-color: rgba(220, 53, 69, 0.3);
}

@media (max-width: 768px) {
    .masthead h1 { font-size: 2rem !important; }
    .bg-blur-box { padding: 2rem !important; }
}