/* ============================== */
/* 🌐 GLOBÁLNE NASTAVENIA */
/* ============================== */

body, html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* ============================== */
/* 🧭 HLAVIČKA A NAVIGÁCIA */
/* ============================== */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #002F5D 0%, #003d79 100%);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 0 100px;
    height: 150px;
    box-sizing: border-box;
}

/* ============================== */
/* 📌 FIXNÝ NAVBAR */
/* ============================== */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(90deg, #002F5D 0%, #003d79 100%);
    padding: 15px 100px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #002F5D 0%, #003d79 100%);
    z-index: -1;
}

.visible {
    top: 0;
}

.hidden {
    background: linear-gradient(90deg, #002F5D 0%, #003d79 100%);
}

.sticky {
    background: linear-gradient(90deg, #002F5D 0%, #003d79 100%);
}

.Logo img {
    height: 75px;
    display: block;
    margin-right: 40px;
    padding: 20px 0;
}

/* ====================================================== */
/* MENU */
/* ====================================================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 75px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 0;
    transition: color 0.25s ease, opacity 0.25s ease;
    position: relative;
}

/* underline hover */

.nav-menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #c32614;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::before {
    width: 100%;
}

.nav-menu li a:hover {
    color: #ffffff;
}

/* ====================================================== */
/* PRAVÁ ČASŤ */
/* ====================================================== */

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ====================================================== */
/* 🔍 SEARCH */
/* ====================================================== */

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    height: 44px;
    width: 0;
    opacity: 0;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.95);
    padding: 0;
    margin-right: 10px;
    outline: none;
    font-size: 14px;
    transition: width 0.45s ease,opacity 0.25s ease,padding 0.3s ease;
}

.search-box:hover input,
.search-box input:focus {
    width: 240px;
    opacity: 1;
    padding: 0 18px;
}

/* SEARCH BUTTON */

.search-btn {
    width: 46px;
    height: 46px;
    border: none;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease,background 0.25s ease;
}

.search-btn:hover {
    transform: scale(1.08);
    background: rgba(255,255,255,0.16);
}

.search-btn img {
    width: 24px;
    filter: brightness(0) invert(1);
}

/* ====================================================== */
/* SEARCH RESULTS */
/* ====================================================== */

.search-results {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 320px;
    max-height: 360px;
    overflow-y: auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    list-style: none;
    padding: 10px;
    margin: 0;
    display: none;
    z-index: 99999;
    box-sizing: border-box;
}

.search-box.active .search-results {
    display: block;
}

/* ITEM */

.search-results li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.22s ease,transform 0.2s ease;
}

.search-results li:hover {
    background: rgba(0,47,93,0.06);
    transform: translateX(3px);
}

.search-results li img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex-shrink: 0;
}

.product-name {
    font-size: 14px;
    color: #002F5D;
    font-weight: 500;
    line-height: 1.4;
}

/* ====================================================== */
/* 🌍 LANGUAGE SWITCH */
/* ====================================================== */

.language-switch {
    display: flex;
    align-items: center;
    position: relative;
}

.dropbtn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropbtn img {
    width: 30px;
}

/* ŠÍPKA */

.arroww {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid white;
    transition: transform 0.25s ease;
}

.arroww.rotate {
    transform: rotate(180deg);
}

/* DROPDOWN */

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    background: #002F5D;
    padding: 14px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    z-index: 9999;
}

.dropdown-content.show {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dropdown-content img {
    width: 30px;
    cursor: pointer;
    transition: transform 0.2s ease,opacity 0.2s ease;
}

.dropdown-content img:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

/* ====================================================== */
/* 🔥 MEGA MENU – PRODUKTY + SLUŽBY + RIEŠENIA */
/* ====================================================== */

.mega-menu,
.sluzby-menu,
.riesenia-menu {
    position: relative;
}

/* ====================================================== */
/* TOGGLE BUTTONS */
/* ====================================================== */

.mega-toggle,
.sluzby-toggle,
.riesenia-toggle {
    display: flex !important;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* ====================================================== */
/* ŠÍPKY PRI PRODUKTY / SLUŽBY / RIEŠENIA */
/* ====================================================== */

.mega-toggle::after,
.sluzby-toggle::after,
.riesenia-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    transition: transform 0.28s ease,border-color 0.28s ease;
    margin-top: -4px;
}

/* hover */

.mega-toggle:hover::after,
.sluzby-toggle:hover::after,
.riesenia-toggle:hover::after {
    border-color: #c32614;
}

/* rotate when active */

.mega-menu.show .mega-toggle::after,
.sluzby-menu.show .sluzby-toggle::after,
.riesenia-menu.show .riesenia-toggle::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}

/* ====================================================== */
/* DROPDOWN BOX */
/* ====================================================== */

.mega-content,
.sluzby-content,
.riesenia-content {
    position: fixed;
    top: 95px;
    left: 50%;
    transform: translateX(-50%) translateY(14px);
    width: min(1250px, calc(100vw - 40px));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    padding: 30px;
    background: linear-gradient(135deg,#002F5D 0%,#003a72 100%);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:0 30px 70px rgba(0,0,0,0.45),0 0 0 1px rgba(255,255,255,0.03) inset;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:opacity 0.28s ease,transform 0.28s ease,visibility 0.28s ease;
    z-index: 99999;
    box-sizing: border-box;
}

/* SHOW */

.mega-content.show,
.sluzby-content.show,
.riesenia-content.show,
.mega-menu.show .mega-content,
.sluzby-menu.show .sluzby-content,
.riesenia-menu.show .riesenia-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* ====================================================== */
/* KARTY */
/* ====================================================== */

.mega-item,
.sluzby-item,
.riesenia-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 120px;
    padding: 22px;
    background: rgba(255,255,255,0.05);
    border-radius: 22px;
    text-decoration: none;
    transition:background 0.3s ease,transform 0.3s ease,box-shadow 0.3s ease,border 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
}

/* light effect */

.mega-item::before,
.sluzby-item::before,
.riesenia-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,transparent,rgba(255,255,255,0.08),transparent);
    transition: 0.6s;
}

/* HOVER */

.mega-item:hover,
.sluzby-item:hover,
.riesenia-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.30);
    border-color: rgba(255,255,255,0.12);
}

.mega-item:hover::before,
.sluzby-item:hover::before,
.riesenia-item:hover::before {
    left: 120%;
}

/* ====================================================== */
/* TEXT */
/* ====================================================== */

.mega-item span,
.sluzby-item span,
.riesenia-item span {
    flex: 1;
    color: white;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    text-align: left;
    word-break: break-word;
    transition: color 0.25s ease;
    order: 1;
}

/* HOVER */

.mega-item:hover span,
.sluzby-item:hover span,
.riesenia-item:hover span {
    color: #ffffff;
}

/* ====================================================== */
/* IMAGE */
/* ====================================================== */

.mega-item img,
.sluzby-item img,
.riesenia-item img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    background: white;
    padding: 10px;
    border-radius: 24px;
    flex-shrink: 0;
    order: 2;
    transition:transform 0.3s ease,background 0.3s ease;
}

.mega-item:hover img,
.sluzby-item:hover img,
.riesenia-item:hover img {
    transform: scale(1.08) rotate(3deg);
}

/* ====================================================== */
/* NOTEBOOK */
/* ====================================================== */

@media (max-width: 1280px) {

    #navbar {
        padding: 0 25px;
    }

    .nav-menu {
        gap: 28px;
    }

    .mega-content,
    .sluzby-content,
    .riesenia-content {
        width: calc(100vw - 40px);
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ====================================================== */
/* TABLET */
/* ====================================================== */

@media (max-width: 980px) {

    #navbar {
        height: 80px;
        padding: 0 18px;
    }

    .Znak img {
        height: 52px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu li a {
        font-size: 15px;
    }

    .search-box:hover input,
    .search-box input:focus {
        width: 180px;
    }

    .mega-content,
    .sluzby-content,
    .riesenia-content {
        top: 80px;
        width: calc(100vw - 30px);
        grid-template-columns: repeat(2, 1fr);
        padding: 22px;
    }
}

/* ====================================================== */
/* MOBIL */
/* ====================================================== */

@media (max-width: 640px) {

    #navbar {
        height: auto;
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .search-box:hover input,
    .search-box input:focus {
        width: 160px;
    }

    .search-results {
        width: calc(100vw - 30px);
        right: 50%;
        transform: translateX(50%);
    }

    .mega-content,
    .sluzby-content,
    .riesenia-content {
        top: 120px;
        left: 10px;
        right: 10px;
        transform: translateY(10px);
        width: auto;
        height: calc(100vh - 140px);
        overflow-y: auto;
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 14px;
        border-radius: 22px;
    }

    .mega-content.show,
    .sluzby-content.show,
    .riesenia-content.show {
        transform: translateY(0);
    }

    .mega-item,
    .sluzby-item,
    .riesenia-item {
        min-height: auto;
        padding: 16px;
    }

    .mega-item img,
    .sluzby-item img,
    .riesenia-item img {
        width: 58px;
        height: 58px;
    }

    .mega-item span,
    .sluzby-item span,
    .riesenia-item span {
        font-size: 14px;
    }
}

/* ====================================================== */
/* MAIN */
/* ====================================================== */

main {
    margin-top: 150px;
}

/* ====================================================== */
/* RESPONSIVE */
/* ====================================================== */

@media (max-width: 1280px) {

    #navbar {
        padding: 0 25px;
    }

    .nav-menu {
        gap: 28px;
    }

    .mega-content,
    .sluzby-content {
        width: calc(100vw - 40px);

        grid-template-columns:
            repeat(3, 1fr);
    }
}

/* ====================================================== */
/* TABLET */
/* ====================================================== */

@media (max-width: 980px) {

    #navbar {
        height: 80px;
        padding: 0 18px;
    }

    .Znak img {
        height: 52px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu li a {
        font-size: 15px;
    }

    .search-box:hover input,
    .search-box input:focus {
        width: 180px;
    }

    .mega-content,
    .sluzby-content {

        top: 80px;
        width: calc(100vw - 30px);
        grid-template-columns:repeat(2, 1fr);
        padding: 24px;
        gap: 18px;
    }

    .mega-item,
    .sluzby-item {

        min-height: 110px;
        padding: 18px;
    }

    .mega-item img,
    .sluzby-item img {

        width: 65px;
        height: 65px;
    }

    .mega-item span,
    .sluzby-item span {

        font-size: 15px;
    }
}

/* ====================================================== */
/* MOBILE */
/* ====================================================== */

@media (max-width: 640px) {

    #navbar {
        height: auto;
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .search-box:hover input,
    .search-box input:focus {
        width: 160px;
    }

    .search-results {
        width: calc(100vw - 30px);
        right: 50%;
        transform: translateX(50%);
    }

    .mega-content,
    .sluzby-content {

        top: 120px;
        left: 12px;
        right: 12px;
        width: auto;
        transform: translateY(15px);
        height: calc(100vh - 140px);
        overflow-y: auto;
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 14px;
        border-radius: 22px;
    }

    .mega-content.show,
    .sluzby-menu.show .sluzby-content {
        transform: translateY(0);
    }

    .mega-item,
    .sluzby-item {

        min-height: auto;
        padding: 16px;
    }

    .mega-item img,
    .sluzby-item img {

        width: 56px;
        height: 56px;
    }

    .mega-item span,
    .sluzby-item span {

        font-size: 14px;
    }
}

/* Nadpis */
main h1 {
    margin-top: 150px;
    padding: 20px 100px;
    font-size: 2.5em;
    color: white;
    background: linear-gradient(to right, #002F5D, #335B8C, transparent);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ============================== */
/* 🛒 PRODUKTY */
/* ============================== */
.product-link {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    margin: 20px;
}

.product-link img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.product-link a {
    display: block;
    position: relative;
    text-decoration: none;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-link:hover .overlay {
    opacity: 1;
}

.overlay span {
    font-size: 1.2em;
    font-weight: bold;
}

/* ============================== */
/* 🖼️ galeria – VODOMERY */
/* ============================== */
.photoContainerWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* všetko na stred */
    gap: 30px;
    margin: 0 auto;
    margin-top: 40px;
    max-width: 1300px;
    box-sizing: border-box;
}

.photoContainer {
    flex: 1 1 350px; /* každý box má cca rovnakú šírku */
    max-width: 380px;
    background: rgba(247, 247, 247, 0.9);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(230, 230, 230, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1.6em;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 50px; /* rovnaká výška všetkých boxov */
}

.photoContainer:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(56, 3, 94, 0.4);
}

/* Obrázky vodomerov */
.photoContainer img {
    width: 220px;
    height: 220px;
    object-fit: contain; /* zachová proporcie */
    border-radius: 8px;
    transition: transform 0.3s ease;
    padding: 10px;
}

.photoContainer:hover img {
    transform: scale(1.05);
}

/* Nadpis produktu */
.universal-uvod {
    font-size: 1.3em;
    font-weight: 600;
    color: #002F5D;
    margin: 15px 0;
    min-height: 60px; /* aby mali všetky názvy rovnakú výšku */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Tlačidlo */
.button {
    display: inline-block;
    padding: 10px 130px;
    background-color: #002F5D;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.05em;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* ============================== */
/* Sekcia objednania služieb a cenovej ponuky */
/* ============================== */

.UkazkovyBar {
    width: 100%;
    background-color: #e1e1e1;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 100px;
    padding: 30px 90px;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin-top: 50px;
}

/* Horizontálne tlačidlo */
.UkazkovyButton {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ffffff; /* biele pozadie */
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 300px;
    max-width: 900px;
    flex: 1;
    box-sizing: border-box;
}

/* Obrázok */
.UkazkovyButton img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Text + šípka vedľa seba */
.buttonTextWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Nadpis */
.buttonText {
    font-size: 1.2rem;
    text-align: center;
    flex: 1;
    transition: color 0.3s ease;
}

/* Šípka v kruhu */
.arrowCircle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    margin-left: 15px;
    line-height: 1;
    text-align: center;
    transition: all 0.3s ease;
    background-color: transparent;
    border: 2px solid transparent;
}

/* Červené tlačidlo */
.UkazkovyButton.redButton .arrowCircle {
    color: #c32614;
    border-color: #c32614;
}

.UkazkovyButton.redButton .buttonText {
    color: #c32614;
}

.UkazkovyButton.redButton:hover .arrowCircle {
    background-color: #c32614;
    color: white;
    transform: translateX(3px) scale(1.1);
}

/* Modré tlačidlo */
.UkazkovyButton.blueButton .arrowCircle {
    color: #0056b3;
    border-color: #0056b3;
}

.UkazkovyButton.blueButton .buttonText {
    color: #0056b3;
}

.UkazkovyButton.blueButton:hover .arrowCircle {
    background-color: #0056b3;
    color: white;
    transform: translateX(3px) scale(1.1);
}

/* Hover efekt celej karty */
.UkazkovyButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

/* Mobilné zobrazenie */
@media (max-width: 768px) {
    .UkazkovyBar {
        flex-direction: column;
        gap: 20px;
        padding: 20px 10px;
        align-items: center;
    }
    .UkazkovyButton {
        width: 90%;
        max-width: none;
    }
    .buttonTextWrapper {
        justify-content: space-between;
    }
}

/* ============================== */
/* FOOTER KOMPLETNE */
/* ============================== */
footer {
    background-color: #002F5D;
    color: #fff;
    line-height: 1.7em;
    width: 100%;
    margin-top: 50px;
    overflow-x: hidden;
}

footer::before {
    content: "";
    display: block;
    height: 10px;
    background-color: #c32614;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
    justify-items: start;
    text-align: left;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 40px;
    gap: 50px;
}

.footer-column { width: 100%; box-sizing: border-box; }
.logo-column { text-align: left; }
.footer-logo { width: 160px; margin-bottom: 20px; }

.footer-column h3 {
    color: #c32614;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    margin-left: 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-column ul li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 1.05em;
    text-align: left;
}

.footer-column ul li a:hover {
    color: #c32614 !important;
    text-decoration: none;
}

footer a[href^="mailto:"],
 footer a[href^="http"] {
    color: #fff !important;
    text-decoration: none;
}

footer a[href^="mailto:"]:hover,
 footer a[href^="http"]:hover {
     color: #c32614 !important;
    text-decoration: none;
}

/* QR */
.qr-col { text-align: center; }

.qr-footer {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 10px;
    margin: 0 auto;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    font-size: 0.95em;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 10px;
    opacity: 0.9;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: red;
    text-decoration: none;
}
/* RESPONZIVITA */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .footer-column h3 { text-align: center; }
    .footer-column ul { align-items: center; } 
    .logo-column, .qr-col { text-align: center; }
    .qr-footer { margin: 0 auto; }
}

/* ============================== */
/* cookies.css - GDPR Banner + Modal */
/* ============================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    font-family: 'Arial', sans-serif;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.hidden {
    transform: translateY(150%);
}

.cookie-banner .cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-banner h6 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: bold;
}

.cookie-banner p {
    margin: 0 0 15px 0;
    font-size: 0.95em;
    line-height: 1.4;
    color: #e0e0e0;
}

.cookie-banner p a {
    color: #15977d;
    text-decoration: underline;
}

/* Buttons */
.cookie-banner .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cookie-banner button {
    border: none;
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-accept {
    background-color: #15977d;
    color: white;
}

.btn-accept:hover {
    background-color: #1f5edc;
}

.btn-reject {
    background-color: #f44336;
    color: white;
}

.btn-reject:hover {
    background-color: #d32f2f;
}

.btn-settings {
    background-color: #555;
    color: white;
}

.btn-settings:hover {
    background-color: #333;
}

/* ---------------- Cookie Modal ---------------- */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.cookie-modal.hidden {
    display: none;
}

.cookie-modal .modal-content {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.cookie-modal h6 {
    margin-top: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.cookie-modal p {
    font-size: 0.95em;
    color: #333;
}

.cookie-modal .cookie-types {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    text-align: left;
}

.cookie-modal label {
    font-size: 0.95em;
    cursor: pointer;
}

.cookie-modal input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
}

/* Modal Buttons */
.cookie-modal .modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-modal .modal-buttons button {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.cookie-modal .modal-buttons .btn-accept {
    background-color: #15977d;
    color: white;
}

.cookie-modal .modal-buttons .btn-accept:hover {
    background-color: #1f5edc;
}

.cookie-modal .modal-buttons .btn-reject {
    background-color: #f44336;
    color: white;
}

.cookie-modal .modal-buttons .btn-reject:hover {
    background-color: #d32f2f;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
    .cookie-banner .cookie-content {
        padding: 15px;
    }

    .cookie-modal .modal-content {
        padding: 20px 15px;
    }

    .cookie-banner button, .cookie-modal button {
        width: 100%;
    }

    .cookie-banner .buttons {
        flex-direction: column;
    }

    .cookie-modal .modal-buttons {
        flex-direction: column;
    }
}