/* === ÁLTALÁNOS BEÁLLÍTÁSOK === */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

a {
    color: #00ffff;
    text-decoration: underline;
}

a:hover,
a:focus {
    color: #ff0;
    background-color: #222;
    outline: 2px solid #ff0;
}

/* === CÍMEK === */
h1, h2, .section-title {
    color: #fff;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    padding-bottom: 0.5rem;
}

/* === NAVIGÁCIÓ === */
.navbar .nav-link {
    color: #fff !important;
    font-weight: bold;
}

.navbar .nav-link.active {
    background-color: #fff !important;
    color: #000 !important;
    border-radius: 5px;
}

.navbar-toggler-icon {
    filter: invert(100%);
}

/* === KÁRTYÁK === */
.card {
    background-color: #111;
    color: #fff;
    border: 2px solid #fff;
}

.card-title,
.card-text,
label {
    color: #fff;
}

/* === ŰRLAP ELEMEK === */
input,
select,
textarea {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #00ffff;
    background-color: #111;
}

.form-check-input {
    background-color: #000;
    border: 2px solid #fff;
}

.form-check-input:checked {
    background-color: #00ffff;
    border-color: #00ffff;
}

.form-check-label {
    color: #fff;
}

/* === GOMBOK === */
.btn {
    background-color: #00ffff;
    color: #000;
    border: 2px solid #00ffff;
    font-weight: bold;
}

.btn:hover,
.btn:focus {
    background-color: #ff0;
    color: #000;
    border-color: #ff0;
}

/* === SOCIAL MEDIA SZEKCIÓ === */
.social-media {
    background-color: #000;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.social-media a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
}

.social-media a:hover {
    color: #ff0;
}

/* === LIGHTBOX HÁTTÉR === */
.basicLightbox--visible {
    background-color: rgba(0, 0, 0, 0.95);
}

/* === ACCESSIBILITY LINK === */
.visually-hidden-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 10px 0;
    padding: 10px;
    background: #00ffff;
    color: #000;
    z-index: 1000;
}

/* === KONTRASZT GOMB === */
#toggle-contrast {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    background-color: #fff !important;
    color: #000 !important;
    border: 2px solid #000;
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#toggle-contrast:hover {
    background-color: #ff0;
    color: #000;
}
