/* ============================== */
/* 🌐 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 A SLIDER */
/* ============================== */
.container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 150px;
  margin: 0px 100px;
  border-bottom: 2px solid rgba(56, 3, 94, 0.1);
  padding-bottom: 40px;
}

/* 🔹 Slider rámec (pevná veľkosť, bez orezania) */
.thirdPhoto {
  position: relative;
  width: 600px;   /* pevná šírka */
  height: 300px;  /* pevná výška */
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 8px;
}

/* Každý slide má rovnakú veľkosť */
.slide {
  display: none;
  position: absolute;
  inset: 0;
}

.slide.active {
  display: block;
}

/* Obrázky – celé viditeľné, žiadne orezanie */
.thirdPhoto img {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* zobraz celý obrázok */
  object-position: center;   /* vycentruj */
  border-radius: 8px;
  transition: opacity 0.6s ease;
}

/* Šípky */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(211, 211, 211, 0.6);
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  font-size: 20px;
  border-radius: 50%;
  transition: background 0.3s;
}

.prev:hover, .next:hover {
  background-color: rgba(87, 86, 88, 0.8);
  color: white;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ============================== */
/* 📄 TEXT VPRAVO */
/* ============================== */
.text-Pravo {
  max-width: 800px;
}

.text-Pravo h2 {
  text-align: center;
  font-size: 2.8em;
  color: #002F5D;
}

.text-Pravo p {
  text-align: justify;
  font-size: 1.1em;
  line-height: 1.8;
  margin: 0px 50px 0 50px;
}

/* ============================== */
/* 📱 RESPONZÍVNY DIZAJN */
/* ============================== */
@media (max-width: 1000px) {
  .container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .thirdPhoto {
    width: 100%;
    max-width: 450px;
    height: auto;
  }

  .text-Pravo {
    margin-top: 20px;
  }

  .text-Pravo h2 {
    font-size: 2em;
  }

  .text-Pravo p {
    font-size: 1.1em;
    margin: 0 20px;
  }
}

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

.seo-text {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}

.seo-text p {
    margin-bottom: 18px;
    font-size: 17px;
}

.seo-text strong {
    font-weight: 500;
    color: #222;
}

/* ============================== */
/* 📄 PDF SEKTION – TECHNICKÉ LISTY */
/* ============================== */
.pdf-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
}

.pdf-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 0 100px;
    box-sizing: border-box;
}

/* Klikateľný box */
.pdf-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: linear-gradient(90deg, #f5f7fa, #cfcfcf);
    border-left: 6px solid #c32614;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pdf-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* Ikona */
.pdf-icon {
    width: 46px;
    height: auto;
    flex-shrink: 0;
}

.pdf-link {
    margin-bottom: 20px;
}

.pdf-link:last-child {
    margin-bottom: 0;
}

/* PDF Text */
.pdf-text {
    display: flex;
    flex-direction: column;
}

.pdf-title {
    font-size: 14px;
    font-weight: 700;
    color: #c32614;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pdf-name {
    font-size: 18px;
    font-weight: 600;
    color: #002F5D;
}

/* Mobile */
@media (max-width: 900px) {
    .pdf-wrapper {
        padding: 0 20px;
    }

    .pdf-link {
        gap: 14px;
        padding: 16px;
    }

    .pdf-name {
        font-size: 16px;
    }
}

/* ============================== */
/* TECHNICKÁ TABUĽKA */
/* ============================== */
.tech-table-title {
    margin: 60px auto 20px;
    max-width: 1200px;
    padding: 0 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #003b7a;
    text-align: left;
}

.table-wrapper {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 40px 0;
    width: 100%;
}

.tech-table {
    border-collapse: collapse;
    min-width: 700px;
    max-width: 900px;
    width: auto;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 0px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.tech-table thead th {
    background: linear-gradient(90deg, #002F5D, #335B8C);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 10px;
    text-align: center;
    border: 1px solid #002F5D;
}

.tech-table tbody td:first-child {
    text-align: center;
    font-weight: 700;
    background-color: #004b87;
    color: #fff;
    padding: 12px 15px;
    border: 1px solid #002F5D;
}

.tech-table tbody td {
    text-align: center;
    padding: 12px;
    font-size: 14px;
    color: #333;
    border: 1px solid #002F5D;
}

.tech-table tbody tr:nth-child(even) td:not(:first-child) {
    background-color: #f5f7fa;
}

.tech-table tbody tr:hover td:not(:first-child) {
    background-color: rgba(0, 47, 93, 0.1);
}

.tech-table thead th:first-child {
    border-top-left-radius: 0px;
}

.tech-table thead th:last-child {
    border-top-right-radius: 0px;
}

.tech-table tbody tr:last-child td:first-child {
    border-bottom-left-radius:0px;
}

.tech-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0px;
}

@media (max-width: 768px) {
    .tech-table {
        min-width: 100%;
    }
    .tech-table thead th,
    .tech-table tbody td {
        font-size: 12px;
        padding: 8px 6px;
    }
}

/* ============================== */
/* 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;
    }
}