﻿

:root {
    --primary-color: #28a745;
    --secondary-color: #212529;
    --background-color: #f8f9fa;
    --text-color: #495057;
    --link-color: #28a745;
    --hover-color: #218838;
    --footer-bg-color: #212529;
    --button-bg-color: #28a745;
    --button-text-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

   
body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 70px;
    position: relative;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
}

header {
    background: linear-gradient(135deg, #ff9800, #e64a19);
    color: var(--button-text-color);
    padding: 20px;
    text-align: center;
    position: relative;
}

    header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    header p {
        font-size: 1.2rem;
        font-weight: 300;
    }

.navbar {
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: 0.8s;
}

.navbar-logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
    .navbar-menu li {
        margin-left: 20px;
        animation: fadeInDown 1s ease-out;
        opacity: 0;
        animation-fill-mode: forwards;
    }

.navbar-menu li a
{
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

a:hover {
    /* background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); */
    border-radius: 5px;
    color: var(--secondary-color);
    transition: all 0.5s ease;
}


.navbar:hover {
    background-color: var(--nav-hover-color);
}


#container {
    width: 90%;
    margin: 40px auto;
}

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    
}

    .main-content .image-container img {
        width: 100%;
        max-width: 500px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }


.description {
    flex: 1;
    padding-left: 20px;
}

    .description h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .description ul {
        padding-left: 20px;
        margin: auto;
    }

    .description li {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

.services {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .services h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

.service-item {
    margin-bottom: 30px;
}

    .service-item h3 {
        font-size: 1.8rem;
        color: var(--secondary-color);
    }

    .service-item p {
        font-size: 1.1rem;
        color: #555;
    }


button {
    background-color: transparent;
    border: none;
    font-size: 2rem;
    color: var(--secondary-color);
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

    button:hover {
        color: var(--hover-color);
    }

.about {
    padding: 40px;
    background-color: var(--background-color);
    text-align: center;
    margin-bottom: 40px;
}

    .about p {
        font-size: 1.2rem;
        color: #555;
    }

.faq {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

    .faq h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

details {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

summary {
    font-weight: bold;
    cursor: pointer;
}

.contact {
    background-color: #4b5d70;
    padding: 40px;
    text-align: center;
    color: white;
}

.contact-buttons {
    margin: 20px 0;
}

    .contact-buttons .btn {
        background-color: var(--primary-color);
        color: var(--button-text-color);
        padding: 15px 30px;
        font-size: 1.2rem;
        border-radius: 8px;
        margin: 0 10px;
        transition: background-color 0.3s ease;
    }

        .contact-buttons .btn:hover {
            background-color: var(--hover-color);
        }

footer {
    background-color: var(--footer-bg-color);
    color: var(--button-text-color);
    padding: 10px;
    text-align: center;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        text-align: center;
    }

        .main-content .image-container {
            margin-bottom: 20px;
        }

    .gallery-slider {
        flex-direction: column;
    }

    .gallery-track-container {
        width: 100%;
    }

    .service-item {
        text-align: center;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .description{
        padding: 0;
    }

    .description ul li{
        margin-left: auto;
        margin-right: auto;
    }

    .services h2{
        font-size: 2rem;
    }
}


















a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
}

.navbar {
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    border-bottom: 0.5px solid #fff;
}

    .navbar:hover {
        background-color: var(--hover-color);
    }

.navbar-logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

    .navbar-menu li {
        margin-left: 20px;
        opacity: 0;
        animation: fadeInDown 1s ease-out;
        animation-fill-mode: forwards;
    }

        .navbar-menu li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            padding: 8px 15px;
            border-radius: 25px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

            .navbar-menu li a:hover {
                background-color: var(--secondary-color);
                color: var(--primary-color);
                transform: scale(1.1);
            }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

        .navbar-menu.active {
            display: flex;
        }

        .navbar-menu li {
            margin: 10px 0;
        }

    .navbar-toggle {
        display: block;
        font-size: 2rem;
        color: white;
        cursor: pointer;
    }

    .navbar-logo {
        flex-grow: 1;
    }
}


#shop {
    background-color: var(--background-color);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    width: 90%;
    max-width: 800px;
}

    #shop h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: var(--secondary-color);
    }

    #shop p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        color: #555;
    }

    #shop .btn {
        display: inline-block;
        padding: 15px 30px;
        font-size: 1.2rem;
        font-weight: bold;
        background-color: var(--button-bg-color);
        color: var(--button-text-color);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

        #shop .btn:hover {
            background-color: var(--hover-color);
            transform: scale(1.05);
        }





.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

    .burger span {
        width: 25px;
        height: 3px;
        background-color: white;
        border-radius: 2px;
    }

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

    .navbar-menu li a {
        text-decoration: none;
        color: white;
        font-weight: bold;
        padding: 10px 15px;
        border-radius: 25px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

        .navbar-menu li a:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            transform: scale(1.1);
        }



@media (max-width: 900px) {
    .burger {
        display: flex;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px; /* Igazodik a navbar magasságához */
        left: 0;
        width: 100%; /* Teljes szélesség */
        background-color: var(--primary-color);
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

        .navbar-menu.active {
            display: flex;
        }

        .navbar-menu li {
            text-align: center;
            margin: 0.5rem 0;
        }

            .navbar-menu li a {
                padding: 10px;
                color: white;
            }
}

@media (max-width: 500px) {
    .contact-buttons .btn{
        padding: 10px, 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .contact-buttons{
        display: grid;
        grid-auto-columns: auto;
        gap: 10px;
        padding: 10px 15px;
    }
}

.contact-info {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

    .contact-info a {
        color: var(--button-text-color);
        text-decoration: none;
        font-weight: bold;
    }

        .contact-info a:hover {
            color: var(--hover-color);
            text-decoration: underline;
        }
