* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family:'Roboto', sans-serif;
    background:#fff8f0;
    color:#333;
}

header {
    background:#6ea051;
    padding:10px 20px;
    position:sticky;
    top:0;
    z-index:100;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-family:'Pacifico', cursive;
    color:#F5F5F5;
    font-size:28px;
}

nav ul {
    display:flex;
    list-style:none;
}

nav ul li {
    margin-left:20px;
}

nav ul li a {
    color:#F5F5F5;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

nav ul li a:hover {
    color:#3B7A57;
}

.hamburger {
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: none;
}

.section {
    display:none;
    padding:50px 20px;
}

.section.active {
    display:block;
}

section h2 {
    text-align:center;
    font-family:'Pacifico', cursive;
    font-size:36px;
    margin-bottom:30px;
    color:#D94141;
}

.hero-text {
    text-align:center;
    margin-bottom:20px;
}

.hero-text h1 {
    font-family:'Pacifico', cursive;
    font-size:48px;
    margin-bottom:10px;
}

.hero-text p {
    font-size:20px;
}

/* ===============================
   GALÉRIA
=============================== */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
    padding-top: 5%;
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}


/* ===============================
   ÉTLAP
=============================== */

#etlap .menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

#etlap .menu img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s;
}

#etlap .menu img:hover {
    transform: scale(1.03);
}

/* ===============================
   LIGHTBOX (KÉP NAGYÍTÓ)
=============================== */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
}

.modal-content {
    margin-top: 5%;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* ===============================
   NYITVATARTÁS
=============================== */

table {
    margin:0 auto;
    border-collapse:collapse;
    font-size:18px;
}

table td {
    padding:10px 20px;
    border-bottom:1px solid #ccc;
}

/* ===============================
   HÍREK
=============================== */

.news-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.news-item {
    display: flex;
    flex-direction: column;
}

.news-text h3 {
    color: #161616;
    margin-bottom: 6px;
}

.news-text p {
    color: #1f1f1f;
    font-size: 14px;
    line-height: 1.5;
}

.news-item img,
.news-item video {
    width: 60%;
    height: 260px;
    object-fit: contain;
    margin-top: 10px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   ELÉRHETŐSÉG
=============================== */

#elerhetoseg {
    text-align: center;
}

#elerhetoseg p {
    margin: 10px 0;
    font-size: 18px;
}

#elerhetoseg .map {
    margin-top: 20px;
    display: inline-block;
}

/* ===============================
   FELUGRÓ RENDELÉSI ABLAK
=============================== */

.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.order-box {
    background: #fff8f0;
    padding: 30px;
    width: 350px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.order-icon-img {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ===============================
   FOOTER
=============================== */

footer {
    text-align:center;
    padding:20px;
    background:#D94141;
    color:#fff;
}

/* ===============================
   MOBIL NÉZET (RESPONSIVE)
=============================== */

@media (max-width: 900px) {

    .hamburger {
        display: block;
    }

    nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #D94141;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 15px 0;
    }

    #etlap .menu {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   subscruiibeee
=============================== */

.subscribe-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.subscribe-box {
    background: #fff8f0;
    padding: 30px;
    width: 350px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
}

.close-sub {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* ===============================
   google maps gomb
=============================== */

.maps-btn {
    display: block;
    margin: 20px auto;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: rgba(122, 59, 59, 0.85);
    border: 2px solid #ff2b2b;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
    text-shadow: 0 0 6px rgba(255,255,255,0.5);
    box-shadow:
      0 0 6px #ff2b2b,
      inset 0 0 8px #7a3b3b;
}

.maps-btn:hover {
    background: rgb(122, 59, 59);
    box-shadow:
      0 0 12px #ff2b2b,
      inset 0 0 10px #7a3b3b;
    transform: scale(1.03);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 23px;
}

.divider {
    width: 100%;
    height: 3px;
    background: #D94141;
    margin: 15px auto;
    border-radius: 5px;
}

.hero-about {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.about-team-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 40px auto;
    gap: 40px;
}

.about-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.team-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-title,
.team-title {
    font-family: 'Pacifico', cursive;
    font-size: 42px;
    color: #D94141;
    margin-bottom: 15px;
}

.about-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
}

.team-photo {
    width: 50%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
    .about-team-container {
        flex-direction: column;
        gap: 30px;
    }

    .team-container {
        align-items: center;
    }

    .team-photo {
        max-width: 100%;
    }
}