/* Általános stílusok, a konzisztencia érdekében az adatlap-style.css-ből átvéve */
body {
    font-family: Arial, sans-serif;
    background-color: #00001a;
    background-image: url('images/space-background.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(to bottom, rgb(0, 0, 0), transparent);
    padding: 40px 20px 20px 20px;
    text-align: center;
}

h1, h2 {
    color: #75a9b7;
    text-shadow: 0 0 10px #75a9b7;
}

h1 {
    font-size: 3rem;
}

h2 {
    border-bottom: 1px solid #75a9b7;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(0, 0, 26, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

/* Impresszum specifikus tartalom elrendezése */
.impresszum-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.profil-image-container {
    flex: 1 1 300px; /* Kisebb helyet foglal el */
    text-align: center;
}

#profil-kep {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 50%; /* Legyen kör alakú a profilkép */
    border: 2px solid #75a9b7;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

#profil-kep:hover {
    transform: scale(1.10);
    box-shadow: 0 0 20px #75a9b7;
}

.kep-felirat {
    font-style: italic;
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 10px;
}

.details-container {
    flex: 2 1 500px; /* Több helyet kap a szöveg */
}

#ceg-leiras, .elerhetosegek {
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: justify;
}

.elerhetosegek {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.elerhetosegek li {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.elerhetosegek a {
    color: #89e5ff;
    text-decoration: none;
    transition: color 0.3s;
}

.elerhetosegek a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Vissza gomb stílusa */
.vissza-gomb-container {
    text-align: center;
    padding: 40px 20px;
}

#vissza-gomb {
    display: inline-block;
    text-decoration: none;
    background-color: #75a9b7;
    color: #00001a;
    border: 1px solid #75a9b7;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

#vissza-gomb:hover {
    background-color: #fff;
    transform: scale(1.05);
}

/* Modal (Lightbox) stílusok - az adatlap-style.css-ből másolva */
#modal-overlay {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}
#modal-image {
    display: block;
    max-width: 90%;
    max-height: 85%;
    border-radius: 5px;
    border: 1px solid #75a9b7;
    animation: zoomIn 0.4s;
}
#close-modal-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #75a9b7;
    font-size: 50px;
    font-weight: bold;
    transition: color 0.3s, transform 0.3s;
    cursor: pointer;
}
#close-modal-btn:hover {
    color: #fff;
    transform: scale(1.1);
}
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}