/* === Základní nastavení === */
body {
  background-color: #262626;
  color: #FFE41D;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

/* === Typografie === */
h1, h2 {
  color: #FFE41D;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.container h3,
.payment-info h3 {
  color: #FFE41D;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

p,
.custom-list li,
.payment-info p,
.payment-info li {
  color: #00F8FD;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
}

/* Desktop: justify */
@media (min-width: 768px) {
  p,
  .custom-list li,
  .payment-info p,
  .payment-info li {
    text-align: justify;
  }
}

p strong,
.custom-list strong {
  color: #FFE41D;
}

/* === Navigace desktop === */
.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.nav-links a {
  color: #FFE41D;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  transition: color 0.3s;
  margin: 0 15px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00F8FD;
  text-decoration: underline;
}

.nav-links .divider {
  color: #00F8FD;
  margin: 0 8px;
  font-weight: bold;
  display: inline;
}

@media (min-width: 768px) {
  .nav-links .divider {
    display: none;
  }
}

/* === Navigace mobil === */
.navbar {
  background-color: #262626;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%2300F8FD' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.navbar-nav .nav-link {
  color: #FFE41D;
  font-weight: bold;
  padding: 8px 0;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #00F8FD;
  text-decoration: underline;
}

.dropdown-divider {
  border-color: #00F8FD;
  opacity: 1;
  margin: 4px 0;
}

.navbar-collapse {
  background-color: #262626;
}

.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
}

.navbar-nav .nav-link::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #FFE41D;
  margin-top: 4px;
  width: 100%;
}

/* === Seznamy === */
.custom-list {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.custom-list li::marker {
  color: #FFE41D;
}

/* === Tabulky === */
.pricing-box {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #262626;
  border: 1px solid #FFE41D;
  border-radius: 8px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #FFE41D !important;
  padding: 0.8rem;
  color: #00F8FD;
  font-weight: 600;
  text-align: left;
  background-color: transparent;
}

.pricing-table th {
  background-color: #333333;
}

/* === Formuláře === */
.form-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #1a1a1a;
  border: 1px solid #FFE41D;
  border-radius: 8px;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #FFE41D;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #FFE41D;
  background-color: #333333;
  color: #00F8FD;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #00F8FD;
}

.contact-form button {
  padding: 0.5rem 1.5rem;
  background-color: #FFE41D;
  color: #262626;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.contact-form button:hover {
  background-color: #00F8FD;
  color: #262626;
}

.radio-group {
  display: flex;
  gap: 30px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.radio-group label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-weight: 400;
}

.radio-group input[type="radio"],
.radio-group input[type="checkbox"] {
  accent-color: #FFE41D;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  cursor: pointer;
}

.radio-group span {
  color: #00F8FD;
}

.radio-group a {
  color: #FFE41D;
  text-decoration: underline;
}

.radio-group a:hover {
  color: #00F8FD;
}

/* === Ostatní === */
.scroll-top {
  font-size: 2rem;
  color: #FFE41D;
  text-decoration: none;
  transition: color 0.3s;
}

.scroll-top:hover {
  color: #00F8FD;
}

.footer-links a {
  color: #FFE41D;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00F8FD;
}

.payment-info {
  max-width: 900px;
  margin: 2rem auto;
  padding: 20px;
  background-color: transparent;
  border: none;
}

p a {
  color: #FFE41D;
  text-decoration: underline;
}

p a:hover {
  color: #00F8FD;
}

ul li::marker,
ol li::marker,
.custom-list li::marker {
  color: #FFE41D;
}

/* Logo Rigstuff */
.logo-img {
  max-width: 800px;  /* nebo jiná maximální šířka */
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

/* Výchozí barva všech dividerů */
.dropdown-divider {
  border-color: #00F8FD;
  opacity: 1;
  margin: 4px 0;
}

/* Na mobilu změníme barvu divideru u aktivní stránky */
@media (max-width: 767px) {
  .navbar-nav .nav-item.active .dropdown-divider {
    border-color: #FFE41D;
  }
}

/* Výchozí stav - žlutá čára, žluté odkazy */
.navbar-nav .nav-link {
  color: #FFE41D;
  text-decoration: none;
  font-weight: bold;
}

.dropdown-divider {
  border-color: #FFE41D;
  opacity: 1;
  margin: 4px 0;
}

/* Aktivní stránka – jen na mobilu změní barvu divideru, odkaz zůstane bez podtržení */
@media (max-width: 767px) {
  .navbar-nav .active-divider {
    border-color: #00F8FD;
  }

  .navbar-nav .active-link {
    color: #FFE41D;
  }
}

/* Výchozí mobilní odkazy */
.navbar-nav .nav-link {
  color: #FFE41D;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 0;
  transition: color 0.3s;
}

/* Výchozí barva divideru */
.dropdown-divider {
  border-color: #FFE41D;
  opacity: 1;
  margin: 4px 0;
}

/* === MOBIL === */
@media (max-width: 767px) {

  /* Aktivní odkaz – zůstává žlutý bez podtržení */
  .navbar-nav .nav-link.active {
    color: #00F8FD;   /* moje modrá */
    text-decoration: none;
  }

  /* Aktivní divider – modrá */
  .dropdown-divider.active-divider {
    border-color: #00F8FD;
  }

  /* Ostatní divider zůstávají žluté */
  .dropdown-divider {
    border-color: #FFE41D;
  }
}

/* === DESKTOP === */
@media (min-width: 768px) {

  /* Aktivní odkaz – modrá + podtržení */
  .nav-links a.active {
    color: #00F8FD;
    text-decoration: underline;
  }
}

.scroll-mobile {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

p.form-warning {
  text-align: center !important;
}

.scroll-mobile {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .scroll-mobile {
    margin-bottom: 2rem;
  }
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.contact-card {
  width: 22rem;
  background-color: #262626;
  border: 1px solid #FFE41D;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.contact-card .card-body {
  text-align: left;
  line-height: 1.4;
  padding: 1rem;
}

.contact-card p {
  margin-bottom: 0.4rem;
}

.contact-card .card-title {
  color: #00F8FD;
  margin-bottom: 1rem;
}

.contact-label {
  color: #FFE41D;
}

.contact-text {
  color: #00F8FD;
}

/* Na mobilu rámečky pod sebe */
@media (max-width: 767px) {
  .contact-card {
    width: 100%;
  }
}

h4 {
  color: #00F8FD;
  margin-bottom: 1rem;
  font-weight: 600;
}

.required {
  color: #00F8FD;
}

.how-list {
    list-style-type: square; /* Nebo třeba circle, decimal, nebo úplně custom */
    padding-left: 1.5rem;
}

.how-list li {
    color: #00F8FD;
    margin-bottom: 6px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

.how-list li::marker {
    color: #FFE41D; /* Stejně jako u custom-list */
}

/* Seznam pro stránku Jak to probíhá */
.how-list {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.how-list li {
    color: #00F8FD; /* Tvoje modrá pro text */
    margin-bottom: 6px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

/* Barva teček (odrážek) */
.how-list li::marker {
    color: #FFE41D; /* Tvoje žlutá pro tečky */
} 