
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
}

body {
    color: #111;
    background: #fff;
    line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}



/* ---- NAV ---- */
.nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 32px;
    padding-top: 32px;
    color: #fff;
    position: sticky;
    z-index: 100;
    top: 0;
    background-color: #0d1117;
    box-sizing: border-box;
    box-shadow: 0 4px 6px #0d11177e;

    transition: top 0.4s ease-in-out;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  transition: 0.3s;
  padding: 0;
  margin: 0;
  align-items: center; 
}

.nav a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex; 
  align-items: center; 
  gap: 8px;
}

.nav a:hover {
  color: #ffffff;
}

.nav a img {
  height: 20px;
  width: auto;
  display: block;
}

a.nav-partner { color: #63b3ed; }
a.nav-partner:hover { color: #90cdf4; }
a.nav-katalog { color: #F77D41; }
a.nav-katalog:hover { color: #f69e72; }

/* MENU IKONA - DIZAJN */
.menu {
  display: none; 
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu.active span:nth-child(2) { opacity: 0; }
.menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* MOBILNÉ ROZHRANIE */
@media (max-width: 768px) {
  .nav {
    display: flex;
    justify-content: end;
    padding: 20px;
    width: 100%;
  }
  
  .menu {
    display: flex;
  }
  
  .nav ul {
    position: fixed; 
    top: 0; 
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #0d1117;
    flex-direction: column; 
    justify-content: center;
    padding-top: 0;
    gap: 40px;
    z-index: 90;
    
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  
  .nav ul.active {
    transform: translateX(0);
  }
}



/* Hlavný kontajner pre GDPR stránku */
.gdpr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Prispôsobte podľa fontu vášho webu */
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Hlavička */
.gdpr-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 20px;
}

.gdpr-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.gdpr-header h2 {
    font-size: 1.5rem;
    color: #7f8c8d;
    font-weight: 400;
}

/* Sekcie */
.gdpr-section {
    margin-bottom: 40px;
}

.gdpr-section h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    border-left: 5px solid #3498db; /* Modrý prúžok vľavo */
    padding-left: 15px;
    margin-bottom: 20px;
}

.gdpr-section h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
}

.gdpr-section p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Adresa */
.gdpr-address {
    font-style: normal;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #eee;
    display: inline-block;
    min-width: 250px;
}

/* Odkazy */
.gdpr-container a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.gdpr-container a:hover {
    text-decoration: underline;
}

/* Tabuľky */
.table-responsive {
    overflow-x: auto; /* Umožní skrolovanie tabuľky na mobile */
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.gdpr-table th, 
.gdpr-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.gdpr-table th {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

.gdpr-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.gdpr-table tr:hover {
    background-color: #f1f1f1;
}

/* Zoznamy */
.gdpr-list {
    list-style-type: none;
    padding: 0;
}

.gdpr-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233498db" width="18px" height="18px"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left top 4px;
    padding-left: 30px;
    margin-bottom: 10px;
}

/* Zvýraznený box (odvolanie súhlasu) */
.gdpr-highlight {
    background-color: #eaf2f8;
    border-left: 5px solid #3498db;
    padding: 15px;
    margin-top: 20px;
}

/* Responzivita pre mobily */
@media (max-width: 600px) {
    .gdpr-header h1 {
        font-size: 1.8rem;
    }
    
    .gdpr-container {
        padding: 20px 10px;
    }
    
    .gdpr-table th, .gdpr-table td {
        padding: 8px 10px;
    }
}



/* ====== CONTACT ====== */

#contact {
  max-width: 1280px;
  margin: 60px auto;
  padding: 20px;
}

.eyebrow-text {
  font-size: 18px;
  font-weight: 600;
  color: #888;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 48px;
  color: #111;
  margin: 10px 0;
}

.contact-body {
  display: grid;
  grid-template-columns: 55% 45%;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 15px;
}

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

.btn-submit {
  width: 100%;
  padding: 14px 30px;
  background-color: #009de0;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #007bb5;
}

.btn-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

.contact-info-wrapper {
  padding: 24px;
  color: #fff;
  width: 100%;
}

.contact-info-wrapper h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
}

.contact-info-wrapper > p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.contact-info-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-link {
    text-decoration: none; 
    color: inherit;
    display: block;
}

.contact-link:hover .contact-info-item {
    background-color: #545454;
    cursor: pointer;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon img {
  width: 24px;
  height: 24px;
}

#icon-telefon { background-color: #FFDEC0; }
#icon-sidlo { background-color: #C5EAFA; }
#icon-hodiny { background-color: #D0C5FA; }
#icon-email { background-color: #C5FAD9; }

.contact-info-text strong {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 2px;
}

.contact-info-text span {
  font-size: 14px;
  color: #ccc;
  line-height: 1;
}


.contact-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-wrapper {
    display: inline-block !important;
    text-decoration: none !important;
    height: auto;
}

.contact-logo {
    display: block !important;
    width: 100% !important;
    max-width: 180px !important;
    height: auto !important;
  
    border: none !important;
}

.contact-logo {
  max-width: 120px;
  filter: brightness(0) invert(1);
  cursor: pointer;
}

.contact-footer p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}


@media (max-width: 1220px) {
  .contact-body {
    grid-template-columns: 2fr;
  }
  
  .contact-form-wrapper {
    clip-path: none;
    border-radius: 20px 20px 0 0;
  }
  
  .contact-info-wrapper {
    border-radius: 0 0 20px 20px;
  }

}

@media (max-width: 1100px) {
  .contact-header h2 {
    font-size: 40px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-body {
    grid-template-columns: 2fr;
  }
  
  .contact-form-wrapper {
    clip-path: none;
    border-radius: 20px 20px 0 0;
  }
  
  .contact-info-wrapper {
    border-radius: 0 0 20px 20px;
  }
}

@media (max-width: 768px) {
  
  #contact{
    margin: 0;
    padding: 0;
  }

  .contact-body{
    border-radius: 20px 20px 0 0;
  }

  .contact-form-wrapper{
    border-radius: 0;
    padding: 24px;
    
  }

  .contact-info-wrapper{
    border-radius: 0;
    padding: 24px;
    
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-header h2 {
    font-size: 32px;
    line-height: 1.4;
  }
  
  .contact-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-info-item{
    width: 100%;
  }

  .contact-info-grid{
    gap: 16px;
    width: 100%;
  }

  .contact-footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .contact-logo{
    margin: 0px auto 16px;
  }
}

.gdpr-text{
  padding-bottom: 40px;
}
.gdpr-text p{
  font-size: 0.8rem;
}



/* Základné nastavenie lišty */

/* --- KARTA --- */
.cookie-card {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: Arial, sans-serif;
    z-index: 9999;
    
    /* Animácia: začíname neviditeľní */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    pointer-events: none;
}

/* Trieda pre zobrazenie (JS) */
.cookie-card.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* --- TEXT A IKONY --- */
.cookie-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-icon {
    font-size: 24px;
}

.cookie-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.cookie-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* --- TLAČIDLÁ (Nové classy) --- */
.c-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.2s, transform 0.1s;
}

.c-btn:active {
    transform: scale(0.98);
}

/* Tlačidlo Odmietnuť */
.c-btn-decline {
    background-color: #f0f0f0;
    color: #333;
}
.c-btn-decline:hover {
    background-color: #e0e0e0;
}

/* Tlačidlo Prijať */
.c-btn-accept {
    background-color: #007bff;
    color: white;
}
.c-btn-accept:hover {
    background-color: #0056b3;
}

/* Mobilná verzia */
@media (max-width: 480px) {
    .cookie-card {
        width: auto;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}


/* ====== FOOTER ====== */
footer {
  text-align: center;
  padding: 1rem;
  background: #0d1117;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}