/* Általános stílusok */
body {
    padding-top: 56px;
    background-color: #8897a78b;
}

* {
    font-family: "Tagesschrift", system-ui;
    font-weight: 400;
    font-style: normal;
}

/* Főoldal hero section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../src/background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
}

/* Nyelvi tartalmak kezelése */
.lang-hu, .lang-en {
    display: none;
}

html[lang="hu"] .lang-hu,
html[lang="en"] .lang-en {
    display: block;
}

html[lang="hu"] .lang-hu.inline,
html[lang="en"] .lang-en.inline {
    display: inline;
}

/* Nyelvváltó gomb */
#lang-icon {
    font-size: 0.9rem;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn-outline-light:hover #lang-icon {
    transform: scale(1.1);
}

/* Táblázat stílusa */
.table th {
    background-color: #212529;
    color: white;
}

/* Kapcsolati űrlap stílusa */
form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Reszponzív videó */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    box-shadow: 0px -10px 30px #212529;
}

/* Nyelvi tartalom doboz */
.language-content {
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
}

/* Reszponzív beállítások */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col-lg-6 {
        width: 100%;
    }
    
    #lang-icon {
        padding: 0.1rem 0.3rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .row {
        flex-direction: row;
    }
}

/* Nyomtatási stílusok */
@media print {
    nav, footer, .video-container, .btn {
        display: none !important;
    }
    
    body {
        background-color: white !important;
        color: black !important;
        font-size: 12pt;
        padding-top: 0 !important;
    }
    
    img {
        max-width: 50% !important;
        height: auto !important;
    }
    
    a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }
    
    .table {
        page-break-inside: avoid;
    }
}

/* Table header language switching */
thead .lang-hu,
thead .lang-en {
    display: none;
}

html[lang="hu"] thead .lang-hu,
html[lang="en"] thead .lang-en {
    display: table-row;
}

.section-links {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}
.section-links li {
    display: inline-block;
    margin-right: 15px;
}
.section-links a {
    text-decoration: underline;
    color: #007bff;
}
.section-links a:hover {
    color: #0056b3;
}
/* Aláhúzott linkek a szövegben */
a:not(.nav-link, .btn) {
    text-decoration: underline;
}

/* Skip Navigation link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

/* Nagy kontrasztú változat */
.high-contrast {
    background: #000 !important;
    color: #fff !important;
}
.high-contrast a {
    color: #0ff !important;
}