/* Alap stílusok */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;   
    height: 100vh;
}

/* Háttérkép */
.background {
    background-image: url('levelek_v2.jpg'); /* háttérkép fájlneve */
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Háttér téglalap */
.white-box {
    width: 90%;
    max-width: 1000px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Logó és kapcsolat egy sorban */
.logo-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap; /* mobilbarát */
}

/* Logó konténer */
.logo-container {
    flex: 1;
    text-align: center;
}

/* Logó mérete */
.logo {
    width: 150px;
    height: auto;
}

/* Ferde elválasztó vonal */
.divider {
    width: 3px;
    height: 150px;
    background-color: #656565;
    transform: skew(-20deg);
}

/* Kontakt szakasz */
.contact {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    color: #333;
    margin-top: 0;
}

.contact h2 {
    margin-top: 0;
    color: #333;
}

.contact p {
    margin: 5px 0;
    color: #555;
}

/* Gomb és kép */
.content {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Gomb */
.image-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    display: flex;               
    flex-direction: column;      
    align-items: center;         
    justify-content: center;
    transition: background-color 0.3s ease;
}

/* Gombon lévő kép */
.button-image {
    width: 400px;
    height: auto;
    border-radius: 8px;
}

/* Szöveg a kép alatt */
.button-label {
    margin-top: 12px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

/* Hover-effekt */
.image-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


/* Mobilbarát nézet */
@media (max-width: 768px) {
    .logo-contact-row {
        flex-direction: column;
    }

    .divider {
        display: none;
    }

    .contact {
        text-align: center;
    }

    .button-image {
        width: 80%;
        max-width: 250px;
    }

    .image-btn {
        padding: 10px;
    }

    .button-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .button-image {
        width: 70%;
        max-width: 200px;
    }

    .button-label {
        font-size: 12px;
    }

    .image-btn {
        padding: 8px;
    }
}


.footer-text {
    margin-top: 40px;
    text-align: center;
    color: #444;
    font-size: 14px;
    line-height: 0.8;
}
