/* Reset a základní nastavení */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

#error-msg {
padding: 15px; border-radius: 6px; margin-bottom: 20px; font-weight: bold; text-align: center; background-color: #f8d7da; color: #721c24;
}
#success-msg {
padding: 15px; border-radius: 6px; margin-bottom: 20px; font-weight: bold; text-align: center; background-color: #d4edda; color: #155724;
}


/* About sekce */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 40px;
}

.about-wrapper {
  padding: 20px 20px;
  background: radial-gradient(circle at center, #2B3050 0%, #1A2037 100%);
}


.about-text {
  flex: 1 1 85%;
  padding-right: 40px;
  max-width: none;
    font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  text-align: justify;

}


.about-icon {
  width: 100px;
  height: auto;
  display: block;
  margin-left: 0 auto;
}

.section-title {
  color: #ffcc00;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: left;
}

/* Responzivita */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 40px;
  }

  .about-text {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .about-images {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .about-icon {
    width: 100px;
  }
}

/* Pricing sekce */
.pricing-wrapper {
  padding: 60px 20px;
  background: radial-gradient(circle at center, #2B3050 0%, #1A2037 100%);
}

.pricing-cards {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: #2B3050;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 30px;
  width: 300px;
  color: #ddd;
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: #ffcc00;
}

.pricing-card h3 {
  color: #ffcc00;
  margin-bottom: 20px;
}

.pricing-card p {
  margin-bottom: 10px;
  font-size: 1rem;
  position: relative;
  padding-left: 20px;
}

.pricing-card p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #ffcc00;
  border-radius: 50%;
}

.pricing-card button {
  margin-top: 20px;
  background-color: transparent;
  color: #ffcc00;
  border: 1px solid #ffcc00;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
}

.pricing-card button:hover {
  background-color: #ffcc00;
  color: #1A2037;
}

/*Centrum nenu */
.security-menu {
    margin: 20px 0;
    padding: 0;
    display: flex;
    gap: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.security-menu-item {
    padding: 10px 15px;
    color: #fbc531; /* Zlatavá žlutá z designu */
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.security-menu-item:hover {
    border-bottom: 2px solid #fbc531;
    color: #fff; /* Po přejetí bude bílá pro zvýraznění */
}

.security-menu-item.active {
    border-bottom: 2px solid #fbc531;
    color: #fff;
    font-weight: bold;
}

/* vyhledávací sekce */
.security-content {
    margin-top: 30px;
    background: #192040;
    padding: 20px;
    border-radius: 6px;
    color: #ccc;
}

.security-content h3 {
    color: #fff;
}

.search-form {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.search-form input[type="text"] {
    padding: 10px;
    flex: 1;
    border: none;
    border-radius: 4px;
}

.search-form button {
    background: #fbc531;
    color: #192040;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: #ffd35c;
}


.leak-table {
    width: 100%;
    border-collapse: collapse;
    background: #192040;
    color: #ccc;
    margin-top: 20px;
    font-size: 14px;
}

.leak-table th,
.leak-table td {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.leak-table th {
    background: #10152b;
    color: #fbc531;
    font-weight: bold;
}

.leak-table tr:nth-child(even) {
    background: #1f263e;
}

.leak-table tr:hover {
    background: #2a3352;
}

.hint-text {
    font-size: 12px;
    color: white;
    margin-top: 5px;
}

.limit-warning {
    color: #ffa500;
    background-color: rgba(255, 165, 0, 0.1);
    padding: 10px;
    border-left: 4px solid #ffa500;
    margin: 15px 0;
}

.limit-warning a {
    color: #fbc531; /* jemná zlatavá › Unikdat barva */
    text-decoration: underline;
    font-weight: bold;
}

.limit-warning a:hover {
    color: #ffd35c; /* světlejší žlutá na hover */
    text-decoration: none;
}

/*Watchlist sekce*/
.watchlist-btn {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-right: 5px;
}

.watchlist-btn-blue {
    background-color: #3498db;
}

.watchlist-btn-blue:hover {
    background-color: #2980b9;
}

.watchlist-btn-red {
    background-color: #e74c3c;
}

.watchlist-btn-red:hover {
    background-color: #c0392b;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background-color: #192040;
    padding: 20px;
    border-radius: 8px;
    color: #ccc;
    text-align: center;
    width: 400px;
}

.modal-content p {
    margin-bottom: 20px;
}



/* Login Sekce */
.login-wrapper {
  padding: 80px 20px;
  background: radial-gradient(circle at center, #2B3050 0%, #1A2037 100%);
}

.section-title-center {
  text-align: center;
  color: #ffcc00;
  margin-bottom: 30px;
  font-size: 2rem;
}

.login-form {
  max-width: 400px;
  margin: 0 auto;
  background: #1A2037;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.login-form label {
  color: #ffcc00;
  font-weight: bold;
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #444;
  background-color: #2B3050;
  color: #fff;
  font-size: 1rem;
}

.login-form button {
  background-color: transparent;
  color: #ffcc00;
  border: 1px solid #ffcc00;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
}

.login-form button:hover {
  background-color: #ffcc00;
  color: #1A2037;
}

.login-icon {
  text-align: center;
  margin-bottom: 30px;
}

.login-icon img {
  max-width: 120px;
  height: auto;
}

.login-wrapper a {
text-align: center;
  color: #ffcc00;
  text-decoration: none;
}

.login-wrapper a:hover {
  text-decoration: underline;
}
.options{
    text-align: center;
}

.gray-line {
   width: 190px; /* Nastaví délku čáry */
   border: none;
   border-top: 2px solid #ccc; /* Šedá barva čáry */
   margin: 40px auto; /* Odsazení a centrování */
}


/* Contact sekce */
.contact-wrapper {
  padding: 60px 20px;
  background: radial-gradient(circle at center, #2B3050 0%, #1A2037 100%);
}

.contact-info {
  margin-bottom: 40px;
  color: #ddd;
  line-height: 1.8;
}

.contact-info a {
  color: #ffcc00;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  color: #ffcc00;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #444;
  background-color: #2B3050;
  color: white;
  font-size: 1rem;
}

.contact-form button {
  align-self: center;
  margin-top: 10px;
  background-color: transparent;
  color: #ffcc00;
  border: 1px solid #ffcc00;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form button:hover {
  background-color: #ffcc00;
  color: #1A2037;
}



.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #1A2037;
  padding: 10px 0;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.navbar a {
  color: #ffcc00;
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.navbar a:hover {
  text-decoration: underline;
}

.navbar a.login-button {
  border: 1px solid #ffcc00;
  padding: 6px 14px;
  border-radius: 4px;
  margin-left: 30px;
}

.navbar a.login-button:hover {
  background-color: #ffcc00;
  color: #1A2037;
}

@media (max-width: 768px) {
  .navbar {
    position: static !important;
    padding: 10px 0;
  }

  .navbar .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .navbar > .container > div:first-child {
    font-size: 1.3rem;
    font-weight: bold;
  }

  .navbar a {
    display: inline-block;
    margin: 4px 6px;
    font-size: 0.95rem;
  }

  .navbar a.login-button {
    display: block;
    width: 100%;
    text-align: center;
    margin: 6px 0 0 0;
    padding: 8px;
  }

  .navbar div[style*="position: relative"] {
    width: 100%;
    text-align: center;
  }

  #test {
    position: static !important;
    padding: 0 !important;
    margin-top: 6px;
    text-align: center !important;
    display: block !important;
  }
}



/* Kontejner */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header */
.header {
  background: radial-gradient(circle at center, #2B3050 0%, #1A2037 100%);
  color: white;
  text-align: left;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.header::after {
  content: "";
  background: url('dots-vector-background.png') no-repeat right center / contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.header .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.header p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}


.button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ffcc00;
  color: #333;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #e6b800;
}

/* Features sekce */
.features {
  background-color: #1A2037;
  color: white;
  padding: 60px 0;
}

.features .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature {
  flex: 1 1 280px;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #2B3050;
  border: 1px solid #333;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature:hover {
  background-color: #3a3f60;
  transform: translateY(-5px);
}

.feature img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffcc00;
}

.feature p {
  font-size: 1rem;
  color: #ccc;
}

/* Informativní sekce */
.info-section {
  background: radial-gradient(circle at center, #2B3050 0%, #1A2037 100%);
  color: white;
  padding: 60px 20px;
}

.info-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.info-section .text-content {
  flex: 1 1 100%;
  max-width: 600px;
}

.info-section .text-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffcc00;
}

.info-section .text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

.info-section .image-content {
  flex: 1 1 100%;
  text-align: center;
}

.info-section .image-content img {
  max-width: 280px;
  height: auto;
}

/* Footer */
.footer {
  background-color: #2B3050;
  color: white;
  padding: 40px 20px;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto 20px;
}

.footer-contact,
.footer-links {
  flex: 1 1 100%;
  max-width: 400px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer a {
  color: #ffcc00;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 0.8rem;
  color: #888;
}

/* Responzivita */
@media (min-width: 768px) {
  .header .container,
  .info-section .container {
    flex-wrap: nowrap;
  }

  .info-section .text-content,
  .info-section .image-content {
    flex: 1;
  }

  .footer-contact,
  .footer-links {
    flex: 1 1 300px;
  }
}

/* Styl pro stránku obchodních podmínek a GDPR */

/* Reset a základní nastavení */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at center, #2B3050 0%, #1A2037 100%);
  color: white;
  line-height: 1.6;
}

/* Styl pro stránku obchodních podmínek a GDPR */
.terms-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 60px 30px;
  background-color: #2B3050;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

.terms-container h1, .terms-container h2 {
  color: #ffcc00;
}

.terms-container h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.terms-container h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
}

.terms-container p {
  color: #eee;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

.terms-container a {
  color: #ffcc00;
  text-decoration: none;
}

.terms-container a:hover {
  text-decoration: underline;
}