body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* Régi háttérszín törölhető vagy megtartható */
    /* background-color: #fffbe6; */

    /* Új háttérkép */
    background-image: url('../images/hatter.jpg');
    background-size: cover;      /* kitölti a teljes képernyőt */
    background-repeat: no-repeat; /* ne ismétlődjön */
    background-attachment: fixed; /* görgetéskor fix marad */
    color: #333;
}

header {
    background-color: #f5c242;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav {
    background-color: #e6a800;
    display: flex;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
}

nav a:hover {
    background-color: #d18f00;
}

section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
}

h2 {
    color: #e6a800;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery img {
    width: calc(33% - 10px);
    border-radius: 8px;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product {
    background-color: #fff3cc;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 calc(33% - 20px);
    box-sizing: border-box;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

form button {
    padding: 10px;
    background-color: #e6a800;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #d18f00;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f5c242;
}

@media(max-width: 768px){
    .gallery img, .product {
        width: 100%;
    }
}