
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: linear-gradient(
        180deg,
        #f2f2f2 0%,
        #f7f7f7 30%,
        #ffffff 60%,
        #f7f7f7 100%
    );
    color: #222;
}
main.container {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 30px;
    margin-top: 25px;
}
/* ===============================
   TOP BANNER
================================ */

/* ===============================
   TOP BANNER – DESIGN LEZÁRÁS
================================ */

.top-banner_old {
    position: relative;
    width: 100%;
    background:
        /* BAL OLDALI KÉKES-SZÜRKE ÁTMENET */
        linear-gradient(
            to right,
            #3f4a55 0%,
            rgba(63,74,85,0.6) 8%,
            rgba(63,74,85,0.0) 18%
        ),
        /* JOBB OLDALI KÉKES-SZÜRKE ÁTMENET */
        linear-gradient(
            to left,
            #3f4a55 0%,
            rgba(63,74,85,0.6) 8%,
            rgba(63,74,85,0.0) 18%
        ),
        /* ALAP HÁTTÉR */
        #f2f2f2;

    overflow: hidden;
}


/* FELSŐ + ALSÓ BORDÓ CSÍK */
.top-banner::before,
.top-banner::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(
        to right,
        #5c0000,
        #8b0000,
        #5c0000
    );
    z-index: 2;
}

.top-banner::before {
    top: 0;
}

.top-banner::after {
    bottom: 0;
}

/* BANNER KÉP */
.top-banner_old img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.top-banner {
    height: 180px;              /* marad a banner magasság */
    overflow: hidden;
    position: relative;
    background: #1e2a3a;        /* biztonsági háttér */
}
.top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* kitölti */
    object-position: left center; /* BAL OLDAL MARAD */
    display: block;
}

/* MOBIL FINOMÍTÁS */
@media (max-width: 768px) {
    .top-banner::before,
    .top-banner::after {
        height: 6px;
    }
}

@media (max-width: 768px) {
    .top-banner {
        height: 180px; /* ugyanaz */
    }

    .top-banner img {
        object-position: left center;
    }
}


/* ===============================
   NAVBAR – MODERN DESIGN
================================ */

.navbar {
    background: linear-gradient(90deg, #b60000, #e10000);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.main-menu .nav-link {
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 18px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover underline animáció */
.main-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-menu .nav-link:hover::after {
    width: 60%;
}

.main-menu .nav-link:hover {
    opacity: 0.85;
}

/* Aktív menüpont */
.main-menu .nav-link.active {
    color: #ffdede !important;
}
.main-menu .nav-link:hover {
    text-shadow: 0 0 8px rgba(255,255,255,0.35);
}
/* ===============================
   NYELVVÁLASZTÓ
================================ */

.lang-switch .nav-link {
    font-size: 18px;
    padding: 10px 10px;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-switch .nav-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-switch .nav-link.active {
    opacity: 1;
}
@media (max-width: 991px) {
    .main-menu {
        text-align: center;
    }

    .lang-switch {
        justify-content: center;
        margin-top: 10px;
    }
}
.banner-divider {
    height: 60px;
    background: linear-gradient(
        to bottom,
        #8b0000,
        #ffffff
    );
}
h1, h2 {
    border-left: 6px solid #c40000;
    padding-left: 14px;
    margin-bottom: 20px;
}
/* ===============================
   BANNER ALATTI LEZÁRÁS
================================ */

.banner-bottom {
    height: 70px;
    background:
        linear-gradient(
            to bottom,
            #8b0000 0%,
            #b30000 40%,
            #ffffff 100%
        );
}

/* ===============================
   OLDALTARTALOM BELÉPŐ ANIMÁCIÓ
================================ */

.page-content {
    animation: slideInFromRight 0.6s ease-out both;
}

/* Keyframes */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@media (max-width: 768px) {
    .page-content {
        animation-duration: 0.45s;
    }
}
@media (max-width: 991px) {
    .main-menu .nav-link {
        transform: none;
        text-align: center;
    }

    .main-menu .nav-link::after {
        bottom: 4px;
    }
}

.home-section h2,
.home-section h3 {
    border-left: 5px solid #8b0000;
    padding-left: 12px;
    margin-bottom: 15px;
}

.home-section h4 {
    margin-top: 20px;
    font-weight: 600;
}

.home-section ul {
    padding-left: 18px;
}

.services-list li {
    margin-bottom: 6px;
}

/* ===============================
   BUBORÉKOS HOME TARTALOM
================================ */

.bubble-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.bubble {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bubble:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.14);
}

.bubble h2,
.bubble h3 {
    color: #8b0000;
    margin-bottom: 14px;
}

.bubble-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.bubble-tags span {
    background: linear-gradient(90deg, #8b0000, #b30000);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
}

.bubble.highlight {
    background: linear-gradient(135deg, #8b0000, #b30000);
    color: #fff;
}

.bubble.highlight h3 {
    color: #fff;
}

.bubble.highlight .bubble-tags span {
    background: rgba(255,255,255,0.18);
}

.bubble-cta {
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}
/* ===============================
   PIPÁLÓS LISTA – BUBORÉKOKHOZ
================================ */

.check-list {
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* pipa ikon */
.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #8b0000;
    font-weight: 700;
}
.check-list li::before {
    content: "✓";
    width: 18px;
    height: 18px;
    background: #8b0000;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
}

.check-list li:hover {
    transform: translateX(4px);
    transition: transform 0.2s ease;
}
/*     ------------------------------------------   */
/* ===============================
   MAGUNKRÓL OLDAL
================================ */

.about-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.bubble.wide {
    grid-column: 1 / -1;
}


.about-intro {
    overflow: hidden; /* float clearing */
}

.about-image {
    float: left;
    max-width: 360px;
    width: 100%;
    height: auto;
    margin: 0 20px 14px 0;
    border-radius: 14px;
}
@media (max-width: 768px) {
    .about-image {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
        max-width: 100%;
    }
}
.bubble {
    overflow: hidden;
}

.about-article-image {
    max-width: 380px;
    height: auto;
    float: left;
    margin: 0 20px 12px 0;
    border-radius: 12px;
}

@media (max-width: 992px) {
    .about-article-image {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
    }
}



.about-quote {
    margin-top: 20px;
    padding-left: 18px;
    border-left: 5px solid #8b0000;
    font-style: italic;
    font-weight: 600;
}

/*   *******************************************   */
/* ===============================
   TARIFA OLDAL
================================ */

.tariff-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.tariff-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tariff-img {
    max-width: 100%;
    width: 380px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.text-center {
    text-align: center;
}
/*****************************  ******************/
.contact-section {
    display: grid;
    gap: 28px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-grid img {
    width: 100%;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

#cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 42, 58, 0.95); /* sötét, elegáns */
    color: #fff;
    z-index: 9999;
    font-size: 14px;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

#cookie-accept {
    background: #8b1d1d; /* bordó – passzol a designhoz */
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
}

#cookie-accept:hover {
    background: #a92424;
}

@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}


/* MOBIL BANNER FINOMHANGOLÁS */
@media (max-width: 768px) {

    .top-banner {
        height: 200px;              /* marad a banner magasság */
        overflow: hidden;
        position: relative;
    }

    .top-banner img {
        height: 100%;
        width: auto;                /* NE nyúljon szét */
        position: absolute;
        left: -300px;               /* ← EZ TOLJA BALRA */
        top: 0;
    }
}
