.about-hero {
    background: url('/img/banner2.jpg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.about-hero h1 {
    font-family: 'PlayfairDisplay', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.about-story, .renovation, .opening {
    background-color: #fefefe;
    padding: 10px 20px;
    text-align: center;
}

.about-story h2, .renovation h2, .opening h2 {
    font-family: 'PlayfairDisplay', serif;
    margin-bottom: 20px;
    font-size: 32px;
}

.about-story p, .renovation p, .opening p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* Váltakozó kép-szöveg blokkok */
.about-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 20px;
    flex-wrap: wrap;
    background-color: #fefefe;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.about-story p, .renovation p, .opening p {
    text-align: justify;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text ul li {
    margin-bottom: 10px;
}

.about-thankyou {
    padding: 40px 20px;
    background-color: #fff;
}

.thankyou-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.thankyou-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.thankyou-image img:hover {
    transform: scale(1.03);
}

.thankyou-text {
    flex: 1;
    min-width: 300px;
    max-width: 700px;
    text-align: justify;
}

.thankyou-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.thankyou-text li {
    margin-bottom: 8px;
}

/* Reszponzivitás */
@media (max-width: 800px) {
    .thankyou-container {
        flex-direction: column;
        align-items: center;
    }

    .thankyou-text {
        max-width: 100%;
    }
}

/* Felújítás galéria */
.renovation-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.renovation-gallery img {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.renovation-gallery img:hover {
    transform: scale(1.05);
}

/* Megnyitó kép */
.opening-photo img {
    width: 400px;
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.opening-photo img:hover {
    transform: scale(1.05);
}

.thanks-list {
    max-width: none;
    text-align: left;
    margin: 0 0 30px 0;
    padding-left: 40px;
}

.fullwidth {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.closing-message {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin: 60px 0;
    color: #2f2f2f;
    font-family: 'PlayfairDisplay', serif;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 20px 10px;
    background-color: #f9f9f9;
}

/* Reszponzivitás */
@media (max-width: 1000px) {
    .renovation-gallery img {
        width: 45%;
    }

    .about-block {
        flex-direction: column;
        text-align: center;
    }

    .about-block.reverse {
        flex-direction: column;
    }

    .about-text {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .renovation-gallery img {
        width: 100%;
    }
}
