/* Alap stílusok */
body {
    font-family: Arial, sans-serif; /* Egységes betűtípus */
    font-size: 16px; /* Alap betűméret */
    color: #333; /* Alap szövegszín */
    margin: 0;
    padding: 0;
    background-color: #fff;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    cursor: pointer;
}

nav ul {
    list-style-type: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #e74c3c;
    text-decoration: none;
}

nav ul li a:hover {
    color: #c0392b;
}

section {
    padding: 20px;
    margin: 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
}

h1, h2, h3 {
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #e74c3c;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

button, a {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

/* Galéria stílusok */
#gallery {
    display: block; /* Változtassuk blokkra, hogy a képek függőlegesen rendeződjenek */
    gap: 40px; /* Növelt távolság a képek között */
    margin-top: 20px;
}

#gallery .left-images,
#gallery .center-images,
#gallery .right-images {
    display: block; /* Blokk szintű elrendezés */
    margin-bottom: 20px;
}

#gallery img {
    width: 100%; /* A képek most az egész szélességüket kitöltik */
    max-width: 600px; /* Maximális szélesség, hogy ne legyenek túl szélesek */
    height: auto; /* Automatikusan a szélesség arányában változik */
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease; /* Animáció a kattintásnál */
    margin-bottom: 20px; /* Képek közötti távolság */
}

#gallery img:hover {
    transform: scale(1.1); /* A képek kissé megnövekednek, ha az egér föléjük kerül */
}


/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scroll-to-top:hover {
    background-color: #e74c3c;
}

/* Kapcsolat információk */
.contact-info p {
    font-size: 16px;
    margin: 5px 0;
}

/* Árajánlat / idézet szekció */
.quote-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f2f2f2;
}

.quote-section blockquote {
    font-style: italic;
    color: #555;
    font-size: 20px;
    margin-bottom: 20px;
}

.quote-section h1 {
    font-size: 36px;
    color: #e74c3c;
    font-weight: bold;
    margin: 0;
}

/* Footer stílusok */
footer {
    padding: 40px 20px;
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.footer-left, .footer-center, .footer-right {
    width: 30%;
    margin-bottom: 20px;
}

.footer-center iframe {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.footer-left h3, .footer-right h3, .footer-center h3 {
    color: #e74c3c;
}

.footer-left p, .footer-right a {
    color: white;
}

.footer-right ul {
    list-style-type: none;
    padding: 0;
}

.footer-right ul li {
    margin-bottom: 10px;
}

.footer-right ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.footer-right ul li a i {
    margin-right: 8px;
}

.footer-right ul li a:hover {
    color: #e74c3c;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-center, .footer-right {
        width: 100%;
        margin-bottom: 20px;
    }

    .gallery img {
        width: 100%;
        height: auto;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
