* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f4f4;
  
}

.glass-header {
    position: sticky; 
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-logo {
    height: 40px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 400;
    /*font-family: 'Tangerine', serif;*/
    color: #3f64a1;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    font-family: "Bellota", system-ui;
    font-weight: 700;
    font-style: normal;
    color: #333;
    transition: color 0.3s;
}

.main-nav > ul > li > a:hover {
    color: #3f64a1;
}

.hero {
    position: relative;
    height: calc(100vh - 100px);
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

@keyframes fadeInZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.slide.active .slide-bg {
    animation: fadeInZoom 6s ease-out forwards; 
}

.slide-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    transition-delay: 0.1s; 
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 {
    color: #fff;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slide-content h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.btn-glass {
    display: inline-block;
    padding: 15px 40px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    background:  linear-gradient(135deg, rgba(63, 100, 161, 0.6) 0%, rgba(102, 179, 157, 0.6) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background:  linear-gradient(135deg, rgba(102, 179, 157, 0.6) 0%, rgba(63, 100, 161, 0.6) 100%);
    color: black;
    transform: translateY(-3px);
}

.akcio-section {
    padding: 80px 20px;
    background-color: #f4f4f4; 
}

.akcio-doboz {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
}

.akcio-focim {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #3f64a1;
    font-weight: 400;
}

.akcio-sor {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.akcio-sor:last-child {
    margin-bottom: 0;
}

.akcio-sor.reverse {
    flex-direction: row-reverse;
}

.akcio-szoveg {
    flex: 1; 
}

.akcio-szoveg h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #3f64a1;
    font-weight: 400;
}

.akcio-szoveg p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.akcio-kep {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.akcio-kep img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.akcio-kep:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .akcio-sor, 
    .akcio-sor.reverse {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .akcio-doboz {
        padding: 30px 20px;
    }
}

.akcio-telefon {
    text-align: center;
    margin-bottom: 30px; 
}


.akcio-telefon.alsot-telefon {
    margin-bottom: 0;
    margin-top: 50px;
}

.akcio-telefon a {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: white; 
    text-decoration: none;
    padding: 10px 25px;
    background:  linear-gradient(135deg, rgba(63, 100, 161, 0.6) 0%, rgba(102, 179, 157, 0.6) 100%); 
    border-radius: 50px;
    transition: all 0.3s ease;
}

.akcio-telefon a:hover {
    background:  linear-gradient(135deg, rgba(102, 179, 157, 0.6) 0%, rgba(63, 100, 161, 0.6) 100%);
    color: black;
    transform: translateY(-3px);
   
}


@media (max-width: 768px) {
    .akcio-telefon a {
        font-size: 1.1rem;
        padding: 10px 15px;
    }
}

/* --- Footer Szekció --- */
.site-footer {
    background-color: black;
    color: #fff;
    padding: 60px 20px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-tartalom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row; /* Egymás mellé teszi a két oszlopot */
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-oszlop {
    flex: 1;
    text-align: left; /* Balra zárjuk a szöveget */
}

/* A kép tárolója és a sötét átmenet */
.footer-kep-tartaly {
    flex: 1;
    position: relative;
    max-width: 550px;
    border-radius: 12px;
    overflow: hidden;
}

.footer-kep-tartaly img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Fekete köd/homályosítás a bal oldalon */
.footer-kep-tartaly::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Mobil nézet a Footerhez */
@media (max-width: 768px) {
    .footer-tartalom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-oszlop {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-kep-tartaly::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 100%);
    }
}

.kapcsolat-adatok h3 {
    color: #2c8285;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kapcsolat-adatok p {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 1.3rem;
}

.kapcsolat-adatok a {
    color: #2c8285;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.kapcsolat-adatok a:hover {
    color: #fff;
}

.adatkezelesi-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}

.szerzoi-jog {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.85rem;
}


.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px); 
}

.modal-content {
    background-color: #fff;
    margin: 5% auto; 
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #ff4757; 
    text-decoration: none;
}

.modal h2 {
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
}

.modal > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c8285;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(44, 130, 133, 0.15); 
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 25px;
    background-color: #3f64a1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #1f5e60;
    transform: translateY(-2px);
}

.g-recaptcha {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}


.impresszum-section {
    margin-bottom: 30px;
}

.impresszum-section h3 {
    color: #3f64a1;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #eee;
}

.data-list {
    list-style: none;
    padding: 0;
}

.data-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    color: #555;
    line-height: 1.5;
}

.data-list li:last-child {
    border-bottom: none;
}

.data-list li span {
    font-weight: 600;
    color: #333;
    width: 160px; 
    flex-shrink: 0;
}

@media (max-width: 500px) {
    .data-list li {
        flex-direction: column;
    }
    
    .data-list li span {
        width: 100%;
        margin-bottom: 5px;
        color: #2c8285;
    }
}

.siker-uzenet {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #c3e6cb;
    font-weight: 600;
}

.hiba-uzenet {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #f5c6cb;
    font-weight: 600;
}

.felszereltseg-cim {
    margin-top: 25px;
}


.specifikacio-link {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #49cafc; 
    text-decoration: none; 
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.specifikacio-link:hover {
    color: #033d61; 
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    
 
    .header-container {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .brand-name {
        font-size: 2.3rem; 
    }

   
    .slide-content {
        padding: 0 20px; 
    }

    .slide-content h1 {
        font-size: 2.2rem; 
        margin-bottom: 15px;
    }

    .slide-content h2 {
        font-size: 1.3rem; 
        margin-bottom: 25px;
    }

  
    .akcio-focim {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .akcio-szoveg h3, 
    .felszereltseg-cim {
        font-size: 1.4rem;
    }

   
    .modal-content {
        padding: 25px 20px; 
        margin: 10% auto;
    }

    .modal h2 {
        font-size: 1.6rem;
    }
}
/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: -150%; /* Alapból el van rejtve a képernyő alatt */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
}

.cookie-icon svg {
    width: 40px;
    height: 40px;
    color: #3f64a1;
}

.cookie-text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: #3f64a1;
    font-weight: 600;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn, .cookie-btn-secondary {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cookie-btn {
    background-color: #3f64a1;
    color: white;
}

.cookie-btn:hover {
    background-color: #2c497a;
}

.cookie-btn-secondary {
    background-color: transparent;
    color: #555;
    border-color: #ddd;
}

.cookie-btn-secondary:hover {
    background-color: #f4f4f4;
    color: #333;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        width: 100%;
    }
}