 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Candara !important;
        }

        body {
            font-family: 'Arial', sans-serif;
            /* line-height: 1.6; */
            color: #333;
            background-color: #f8f9fa;
        }

        main{
            margin-top: 0px;
        }
        .container {
            max-width: unset;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            color: white;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: background-color 0.5s ease, box-shadow 0.5s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-bar-container{
            font-family: Candara;
            padding: 10px 25px;
            background-color: transparent;
            transition: background-color 0.5s ease, box-shadow 0.5s ease;
        }

        /* Gradient réteg */
        .nav-bar-container::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: linear-gradient(135deg, #A3B18A 0%, #588157 100%);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        /* Scroll után megjelenik */
        .nav-scrolled::before {
            opacity: 1;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1rem;
            margin-bottom: 0px !important;
        }

        /* Menüelemek (li > a) */
        .nav-links li a {
            text-decoration: none;
            color: white; /* sötét bézs / grafit */
            position: relative;
            transition: color 0.3s ease;
            padding: 5px 0;
            font-size: 17px;
        }

        /* Hover színváltás */
        .nav-links li a:hover {
            color: #fdecc1; /* olívás-bézs */
        }

        /* Alsó vonalas kiemelés hoverre */
        .nav-links li a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background-color: #a89d82;
            transition: width 0.3s ease;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        /* Elválasztó vonalak (pseudo-element) */


        .nav-links li:not(:last-child) {
            border-right: 1px solid #fdf3e4;
            padding-right: 20px;
            margin-right: 5px;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        body.index .hero{
             background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../images/fokepek/index.jpg') no-repeat center center;
             /*background-image: url(../images/fokepek/index.jpg);*/
        }
        body.jegyes .hero{
            background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../images/fokepek/jegyes.jpg') no-repeat center center;
        }
        body.eskuvoi .hero{
            background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../images/fokepek/eskuvoi.jpg') no-repeat center center;
        }
        body.csaladi .hero{
            background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../images/fokepek/csaladi.jpg') no-repeat center center;
        }
        body.karacsonyi .hero{
            background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../images/fokepek/karacsonyi.jpg') no-repeat center center;
        }
        /* Hero Section */
        .hero {
            opacity: 100%;
            background-size: contain;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content{
             z-index: 100;
        }
        .hero-content h1 {
           z-index: 100;
            font-size: 3.5rem;
            color: #588157;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .cta-button {
            /*background: #13583D;*/
             background: #588157;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(88, 129, 87, 0.4);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            align-items: center;
            padding-left: 5rem;
        }
        

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #666;
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotate(-5deg) scale(1.1);
            transition: transform 0.3s ease;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        .card {
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 30px rgba(88, 129, 87, 0.2);
        }


        .portfolio {
            padding: 80px 0;
        }

        .portfolio-filter {
            margin-bottom: 2rem;
            text-align: center;
        }

        .portfolio-filter button {
            margin: 0.3rem;
            border: none;
            background: transparent;
            font-weight: bold;
            color: #444;
            cursor: pointer;
            padding: 0.4rem 1rem;
            transition: all 0.2s ease;
        }

        .portfolio-filter button.active,
        .portfolio-filter button:hover {
             color: #fbcf84;
            border-bottom: 2px solid #fbcf84;
        }

        .portfolio-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .portfolio-item {
            overflow: hidden;
            border-radius: 10px;
            flex-shrink: 0;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }




        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .testimonials h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-size: 4rem;
            color: #667eea;
            position: absolute;
            top: 10px;
            left: 20px;
        }

        .testimonial-card p {
            margin-bottom: 1rem;
            color: #666;
            font-style: italic;
            padding-left: 30px;
        }

        .testimonial-author {
            font-weight: bold;
            color: #333;
            text-align: right;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: white;
        }

        .contact h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            background: #F4F1EE;
            padding: 2rem;
            border-radius: 15px;
        }

        .contact-info h3 {
            margin-bottom: 1rem;
            color: #333;
        }

        .contact-info p {
            margin-bottom: 1rem;
            color: #666;
        }

        .contact-form {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
/* 
        .submit-btn {
            background: linear-gradient(135deg, #DDB892 0%, #A3B18A 100%);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .submit-btn:hover {
             transform: translateY(-2px);
            background: #A3B18A;
        } */

        /* Footer */
        footer {
            /* background: linear-gradient(135deg, #61CE70 0%, #13583D 100%); */
            background: linear-gradient(135deg, #A3B18A 0%, #588157 100%);
            color: white;
            padding: 4rem 0 2rem 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
            color: #fff;
        }

        .footer-section p {
            margin-bottom: 0.5rem;
            color: #ccc;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
             color: #DDB892;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #C1CFC0;
            color: #ccc;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            /* justify-content: flex-end; */
        }

        .social-links a {
            color: #ccc;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #ffd700;
        }

        /* Modal testreszabás – Adatvédelmi nyilatkozat */
        .modal-content {
            background-color: #F4F1EE; /* bézs háttér */
            color: #333;
            border-radius: 10px;
            border: 2px solid #A3B18A;
        }

        .modal-header {
            background-color: #A3B18A; /* olívazöld */
            color: white;
            border-bottom: 1px solid #588157;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .modal-title {
            font-weight: bold;
            font-size: 1.4rem;
        }

        .modal-body p,
        .modal-body ul {
            font-size: 1rem;
            color: #444;
        }

        .modal-body ul {
            padding-left: 1.2rem;
            margin-bottom: 1rem;
        }

        .modal-body ul li {
            list-style: disc;
            margin-bottom: 0.5rem;
        }

        .modal-footer {
            border-top: 1px solid #DDB892;
            background-color: #f7f6f4;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .modal-footer .btn-secondary {
            background-color: #588157;
            border: none;
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .modal-footer .btn-secondary:hover {
            background-color: #3a5a41;
        }


        /* Select dropdown új stílus – természetközeli témához */
        .styled-select select {
            width: 100%;
            padding: 12px;
            border: 2px solid #A3B18A;
            border-radius: 5px;
            font-size: 1rem;
            background-color: #F4F1EE;
            color: #333;
            appearance: none; /* eltávolítja az alapstílust */
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%23588157"><polygon points="0,0 14,0 7,10"/></svg>');
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 14px;
        }

        .contact-form {
            background: #F4F1EE;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .contact-form h3 {
            margin-bottom: 1.5rem;
            color: #333;
            font-size: 1.8rem;
        }

        .contact-form .form-group {
            margin-bottom: 1.5rem;
        }

        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #333;
        }

        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 12px;
            font-size: 1rem;
            border: 2px solid #A3B18A;
            border-radius: 5px;
            background-color: #fff;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            color: #333;
        }

        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            outline: none;
            border-color: #588157;
            box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.2);
        }

        .contact-form textarea {
            min-height: 140px;
            resize: vertical;
        }

        /* Select dropdown */
        .styled-select {
            position: relative;
        }

        .styled-select select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%23588157"><polygon points="0,0 14,0 7,10"/></svg>');
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 14px;
        }

        /* Submit button */
        .submit-btn {
            background: linear-gradient(135deg, #A3B18A 0%, #588157 100%);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #A3B18A 40%, #588157 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(88, 129, 87, 0.3);
        }


        @media (max-width: 768px) {
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #A3B18A;
                padding: 1rem 0;
                z-index: 999;
                gap: 1rem;
                text-align: center;
            }

            .nav-links.active a {
                color: white;
                font-size: 1.2rem;
                padding: 0.5rem 0;
            }
        }

        @media (max-width: 768px) {
            .contact-form {
                padding: 1.5rem;
            }
        }



        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .social-links {
                justify-content: center;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* A sáv, ami görög */
.testimonial-carousel .track {
  --gap: 16px;                  /* JS innen olvassa a hézagot */
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-block: 0.5rem;
  /* Opcionális: rejtett görgetősáv */
  scrollbar-width: none;
}
.testimonial-carousel .track::-webkit-scrollbar { display: none; }

/* Kártyák: mindig annyi fér ki, amennyi a viewportba belefér */
.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 100%;               /* mobil: 1 oszlop */
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
@media (min-width: 768px) { .testimonial-card { flex-basis: 80%; } }
@media (min-width: 992px) { .testimonial-card { flex-basis: 48%; } }   /* ~3 oszlop */
@media (min-width: 1200px){ .testimonial-card { flex-basis: 31%; } }   /* ~4 oszlop */

.testimonial-card p {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: .75rem;
}
.testimonial-author {
  font-weight: 600;
  color: #588157;
}

/* Navigáció gombok */
.nav-btn {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  border: none;
  background: #e9ecef;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-btn:hover { 
    background: rgba(255,255,255,0.9); 
}

.hp-wrapper {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


.fa-solid, .fas { font-family: "Font Awesome 6 Free" !important; font-weight: 900; }
.fa-regular, .far { font-family: "Font Awesome 6 Free" !important; font-weight: 400; }
.fa-brands, .fab { font-family: "Font Awesome 6 Brands" !important; font-weight: 400; }

.lightbox[hidden]{ display:none; }

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;            /* kis perem */
  z-index: 2000;
}

.lightbox-box{
  width: 600px;             /* ← kívánt szélesség */
  height: 400px;            /* ← kívánt magasság */
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  border-radius: 20px;       /* opcionális */
}

.lightbox-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;      /* nem torzít: teljes kép belefér */
  cursor: zoom-out;
    border-radius: 20px; 
}

/* Ha inkább kitöltse a 600×400-at (levágással), akkor a fenti object-fit: cover; */

