:root {
    --primary: #002b5b;
    --accent: #c5a059;
    --dark: #060e1a;
    --light: #f8f9fa;
}

html {
    scroll-behavior: smooth;
    /* Pontosan akkora helyet hagyunk, amilyen magas a menüsorod (80px) */
    scroll-padding-top: 80px; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: #333; scroll-behavior: smooth; }
.container { width: 85%; margin: auto; }

/* Header & Nav - CSAK A POSITION FIXED ÉS A WIDTH KERÜLT BE */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0.5rem 5%; 
    background: white; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.logo span { color: var(--accent); }
.nav-links { display: flex; list-style: none; }
.nav-links a { text-decoration: none; color: var(--primary); margin: 0 1rem; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.btn-cta { background: var(--accent); color: white; padding: 0.6rem 1.2rem; text-decoration: none; font-weight: bold; border-radius: 2px; }

/* Hero - MARGIN-TOP HOZZÁADVA */
.hero { 
    margin-top: 80px; 
    height: 60vh; 
    background: linear-gradient(rgba(0,43,91,0.5), rgba(0,43,91,0.5)), url('/assets/img/pck_hero.jpg?auto=format&fit=crop&q=80&w=1500') center/cover; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    text-align: center; 
}
.hero h1 { font-size: 3rem; text-transform: uppercase; letter-spacing: 3px; }

/* About Section */
.about-section { padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tag { color: var(--accent); font-weight: 800; text-transform: uppercase; font-size: 0.8rem; }
.about-text h2 { font-size: 2.2rem; color: var(--primary); margin: 1rem 0; }
.advantage-box { background: var(--light); padding: 1.5rem; border-left: 5px solid var(--accent); margin-top: 1.5rem; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 4px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.experience-badge { position: absolute; bottom: -15px; left: -15px; background: var(--accent); color: white; padding: 1.2rem; text-align: center; }
.experience-badge .years { display: block; font-size: 2rem; font-weight: 800; }

/* Activities */
.activities { padding: 5rem 0; background: #fafafa; text-align: center; }
.section-title { margin-bottom: 3rem; color: var(--primary); font-size: 2rem; }
.activities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.activity-card { background: white; padding: 2.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.activity-card:hover { transform: translateY(-10px); }
.activity-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 1.2rem; }

/* Stats */
.stats-section { padding: 4rem 0; background: var(--primary); color: white; text-align: center; }
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--accent); }

/* Partners Track */
.partners { padding: 3rem 0; background: white; overflow: hidden; white-space: nowrap; border-top: 1px solid #eee; }
.logos-track { display: flex; animation: scroll 90s linear infinite; width: max-content; }
.logo-item { padding: 0 3rem; font-weight: 700; color: #999; font-size: 0.9rem; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Footer */
.main-footer { background: var(--dark); color: white; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; padding-bottom: 3rem; }
.footer-bottom { background: #000; text-align: center; padding: 1.2rem; font-size: 0.8rem; }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}

/* Projects Section */
.projects-section { padding: 6rem 0; background: #fff; }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border-bottom: 4px solid #eee;
}

.project-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--accent);
}

.project-image {
    position: relative;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    border-radius: 2px;
}

.status.active { background: #28a745; }
.status.planning { background: var(--accent); }
.status.completed { background: var(--primary); }

.project-info { padding: 2rem; }
.project-info h3 { color: var(--primary); margin-bottom: 1rem; font-size: 1.4rem; }
.project-info p { font-size: 0.95rem; color: #666; margin-bottom: 1.5rem; height: 4.5rem; overflow: hidden; }

.project-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--primary);
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.project-details i { color: var(--accent); margin-right: 5px; }


/* Aloldal fejléc - MARGIN-TOP HOZZÁADVA */
.page-header {
    margin-top: 80px;
    background: var(--primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Szűrő gombok stílusa */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
}

.portfolio {
    padding: 4rem 0;
}

/* Szűrő gombok */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
}

/* Megjelenési animáció */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Section Styles */
.contact-section { padding: 6rem 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.contact-details-list { margin-top: 2rem; }
.detail-item { display: flex; align-items: center; margin-bottom: 1.5rem; }
.detail-item i { 
    width: 50px; height: 50px; background: var(--light); color: var(--accent); 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; margin-right: 1.2rem; font-size: 1.2rem; 
}
.detail-item h4 { color: var(--primary); font-size: 1rem; }

/* Megújult Kapcsolati Űrlap Stílus */
.contact-form-container { 
    background: #ffffff; 
    padding: 3rem; 
    border-radius: 8px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}

.form-group { 
    margin-bottom: 1.5rem; 
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%; 
    padding: 1rem; 
    border: 1px solid #e0e0e0; 
    border-radius: 4px;
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.05rem; /* Kicsit nagyobb betűméret */
    color: #333;
    outline: none; 
    transition: all 0.3s ease;
    appearance: none; /* Alapértelmezett böngésző stílus eltávolítása */
}

/* Egyedi stílus a legördülő menünek (select) */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    cursor: pointer;
}

/* Interakciók: fókusz állapot */
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus { 
    border-color: var(--accent); 
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1); /* Finom arany izzás */
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Gomb stílusának finomítása */
.contact-form .btn-cta { 
    width: 100%; 
    border: none; 
    padding: 1.2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer; 
    display: block; 
    text-align: center;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.contact-form .btn-cta:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-container { padding: 1rem; }
    .filter-buttons { display: grid; }
    .page-header h1 {font-size: 1.8rem;}
}

/* Vissza a tetejére gomb */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0; /* Alapértelmezetten rejtett */
    visibility: hidden;
    z-index: 2000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

#scroll-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Hamburger ikon stílusa */
.menu-toggle {
    display: none; /* Alapból rejtve asztali nézetben */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

/* Mobil nézet szabályai (max 768px) */
@media (max-width: 768px) {
    .menu-toggle { display: flex; z-index: 1001; }

    /* A menü alapbeállítása */
    .nav-links {
        display: flex !important; /* Felülírjuk az alapértelmezett display: none-t */
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%; 
        width: 70%;
        height: 100vh;
        background: white;
        padding: 100px 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        align-items: center;
        visibility: visible; /* Biztosítjuk, hogy ne legyen rejtve */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li { 
        display: block !important; /* Kényszerítjük a listaelemek megjelenését */
        margin: 1.5rem 0; 
        width: 100%; 
        text-align: center; 
    }
    
    .nav-links a { font-size: 1.2rem; display: block; }

    /* Hamburger ikon animációja */
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    
    /* Gombok kezelése */
    .navbar > .btn-cta.desktop-cta { 
        display: none !important; /* A fejlécben lévő gombot biztosan elrejtjük */
    }
    
    /* A menün belüli gomb kényszerítése */
    .nav-links .mobile-cta-item { 
        display: block !important; 
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
        margin-top: 2rem;
    }

    .nav-links .mobile-cta-item .btn-cta {
        display: block !important;
        background: var(--accent) !important;
        color: white !important;
        padding: 1rem !important;
        border-radius: 4px;
        font-weight: bold;
    }
    
}

.desktop-cta { display: block; }
.mobile-cta-item { display: none; }

/* MODAL ALAPSTÍLUS */
.modal {
    display: none;
    position: fixed;
    z-index: 9999; /* Legyen minden felett */
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5vh auto;
    padding: 40px;
    width: 90%;
    max-width: 1100px;
    border-radius: 4px; /* Elegánsabb, szögletesebb forma */
    position: relative;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* BEZÁRÓ X STÍLUSA (Képek alapján) */
.close-modal {
    position: absolute;
    right: 25px; 
    top: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #0a192f; /* Sötétkék */
    transition: 0.3s;
    z-index: 100;
}

.close-modal:hover {
    color: #c5a059; /* Arany */
    transform: rotate(90deg);
}

/* MODAL ELRENDEZÉS */
.modal-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    margin-top: 10px;
}

/* GALÉRIA ÉS LAPOZÁS (image_e4a9b1.jpg alapján) */
.modal-gallery {
    position: relative;
}

.gallery-wrapper {
    width: 100%;
    height: 450px; /* Egységes magasság a galériának */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000; /* Fekete háttér az álló képek széleinek */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
#modal-main-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Nem vágja le a képet, hanem beleilleszti a keretbe */
}
.gallery-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* NYILAK STÍLUSA */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #0a192f;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

.nav-btn:hover {
    background: #c5a059;
    color: #fff;
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

/* SZÁMLÁLÓ STÍLUSA (1/3 balra lent) */
#gallery-counter {
    text-align: left;
    margin-top: 15px;
    font-weight: 400;
    color: #666;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

/* INFORMÁCIÓS RÉSZ */
.modal-info h2 {
    font-size: 2rem;
    color: #0a192f;
    margin-bottom: 15px;
    font-weight: 800;
}

.modal-description {
    color: #444;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.modal-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.modal-features li {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #0a192f;
}

.modal-features i { 
    color: #c5a059; 
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

/* MOBIL NÉZET OPTIMALIZÁLÁSA */
@media (max-width: 768px) {
    .modal-content { 
        width: 95%; 
        margin: 20px auto; 
        padding: 25px 15px; 
    }
    
    .modal-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .modal-info h2 { font-size: 1.5rem; }
    
    .nav-btn {
        width: 35px;
        height: 35px;
    }
}

/* PROJEKT KÁRTYA HOVER EFFEKT */
.project-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    top: 0;
}

/* Kiemelkedés és finom árnyék hoverre */
.project-card:hover {
    top: -10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Kép nagyítása a kártyán belül */
.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-image img {
    transition: transform 0.6s ease;
}

/* Arany keret megjelenése hoverre */
.project-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 2px solid var(--pck-gold, #c5a059);
    border-radius: 8px;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
}

/* TOVÁBB A PROJEKTEKRE GOMB */
.more-projects-container {
    text-align: center;
    margin-top: 50px;
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #c5a059;
    color: #0a192f;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
    border-radius: 4px;
}

.btn-outline-gold:hover {
    background-color: #c5a059;
    color: #fff;
}

/* MOBIL OPTIMALIZÁLÁS */
@media (max-width: 768px) {
    .project-card:hover {
        top: -5px; /* Mobilon kisebb elmozdulás is elég */
    }
    
    /* Mobilon az "aktív" állapot érintésre váltódik ki */
    .project-card:active {
        background-color: #f9f9f9;
    }
}

/* MODAL BEZÁRÓ GOMB ALAPHELYZET */
.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001; /* Biztosan minden felett legyen */
    cursor: pointer;
    background: white; /* Legyen saját háttere, ha a kép mögé érne */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.close-modal i {
    color: #0a192f; /* PCK Sötétkék */
    font-size: 1.2rem;
}

/* MOBIL SPECIFIKUS JAVÍTÁS */
@media (max-width: 768px) {
    .modal-content {
        padding-top: 50px; /* Hely biztosítása a gombnak felül */
        position: relative;
    }

    .close-modal {
        top: 10px;
        right: 10px;
        background: #f4f4f4; /* Mobilon kicsit kontrasztosabb szürke */
    }
    
    /* Ha a galéria gombjai (nyilak) útban lennének a kép felett */
    .gallery-nav {
        z-index: 1000;
    }
}

/* HERO MOBIL FIX */
@media (max-width: 768px) {
    .hero {
        height: 80vh; /* Kicsit alacsonyabb, hogy látszódjon a folytatás */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem; /* Kisebb betű, hogy ne lógjon ki */
        line-height: 1.2;
        word-wrap: break-word; /* Szükség esetén törje el a szót */
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* PROJEKT STÁTUSZ JELZŐ JAVÍTÁSA */
.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    /* Árnyék hozzáadása a jobb olvashatóságért */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Átírt színek a jobb kontrasztért */
.project-status.completed {
    background-color: #28a745; /* Sötétebb zöld a fehér szöveghez */
    color: #ffffff;
}

.project-status.active {
    background-color: #c5a059; /* PCK Arany */
    color: #ffffff;
}

.project-status.planning {
    background-color: #0a192f; /* PCK Sötétkék */
    color: #ffffff;
}

/* Opcionális: Finom sötétítés a kép tetején, hogy a felirat mindig látszódjon */
.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 5;
}
#project-modal .project-status {
    display: none;
}
/* ELADVA státusz színe */
.project-status.sold {
    background-color: #4a5568; /* Semleges palaszürke */
    color: #ffffff;
}

/* Ha a modalban el akarod rejteni, hogy ne takarja az X-et */
#project-modal .project-status {
    display: none !important;
}

/* COOKIE BANNER */
.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: none; /* Alapértelmezett rejtve, JS fedi fel */
}

.cookie-box {
    /* 1. VÁLTOZAT: Világosabb háttér (Sötétszürke a tiszta fekete/kék helyett) */
    background-color: #1a2a40; 
    color: #ffffff;
    padding: 25px;
    width: 300px;
    border-radius: 8px;
    
    /* 2. VÁLTOZAT: Erőteljes Arany szegély minden oldalon */
    border: 2px solid #c5a059; 
    
    /* 3. VÁLTOZAT: Külső ragyogás, ami "lebegő" hatást kelt */
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.4);
    
    position: relative;
    overflow: hidden;
}

/* Egy extra finom fényvisszaverődés a tetejére */
.cookie-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.cookie-box h3 {
    color: #c5a059;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cookie-box p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #d1d1d1;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-cookie-accept {
    background-color: #c5a059;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
    transition: 0.3s;
    font-size: 0.8rem;
}

.btn-cookie-accept:hover {
    background-color: #b38e4a;
}

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.8rem;
    transition: 0.3s;
}

.cookie-link:hover {
    color: #c5a059;
}

/* Mobil nézet optimalizálás */
@media (max-width: 480px) {
    .cookie-container {
        left: 10px;
        bottom: 10px;
        right: 10px;
    }
    .cookie-box {
        width: auto;
    }
}

/* LOGÓ KÉP STÍLUSA */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px; /* A navigációs sáv magasságához igazítva */
    width: auto;  /* Megtartja az eredeti arányokat */
    display: block;
    transition: transform 0.3s ease;
}

/* Hover effekt: finom mozgás a logón is */
.logo-img:hover {
    transform: scale(1.05);
}

/* MOBIL OPTIMALIZÁLÁS */
@media (max-width: 768px) {
    .logo-img {
        height: 50px; /* Mobilon kicsit kisebb legyen a fejléc miatt */
    }
    .navbar {
        padding: 1.5rem 5%;
    }
}

/* Megakadályozza, hogy a linkek (tel, email) kékre váltsanak */
a[href^="tel"], 
a[href^="mailto"],
.contact-details-list a,
footer a {
    color: inherit !important;
    text-decoration: none !important;
    border: none !important;
    pointer-events: auto; /* A kattinthatóság megmarad, de a stílus nem változik */
}

/* iOS specifikus javítás az automatikus linkelés ellen */
[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}
