/* ===========================
   ZÁKLADNÍ NASTAVENÍ
=========================== */
html {
    overflow-y: scroll;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #121212;
    color: white;
    text-align: center;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;

    background-image: radial-gradient(circle, #666 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ===========================
   HLAVIČKA
=========================== */
header {
    background: #121212;
    padding: 14px 20px;
    font-size: 1.5em;
    font-weight: bold;
}

/* ===========================
   NAVIGACE – DESKTOP
=========================== */
nav {
    background: #1a1a1a;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
}

.nav-slash {
    color: orange;
    margin-right: 6px;
    font-weight: bold;
}

nav ul li a:hover {
    background: #333;
    border-radius: 5px;
}

/* ===========================
   HAMBURGER MENU – MOBIL
=========================== */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 20px;
    color: white;
}

#menu-toggle {
    display: none;
}

nav ul.mobile {
    display: none;
    flex-direction: column;
    background: #1a1a1a;
    padding: 10px 0;
}

nav ul.mobile li {
    padding: 10px 0;
}

@media (max-width: 700px) {
    nav ul.desktop {
        display: none;
    }
    .hamburger {
        display: block;
    }
    #menu-toggle:checked + nav ul.mobile {
        display: flex;
    }
}

/* ===========================
   OBSAHOVÝ KONTEJNER
=========================== */
.container {
    max-width: 800px;
    margin: 24px auto;
    padding: 20px;
    text-align: left;
}

/* ===========================
   TYPOGRAFIE
=========================== */
h1 {
    font-size: 1.6em;
    margin: 0 0 10px 0;
    color: orange;
    text-align: left;
}

h2 {
    font-size: 1.2em;
    margin: 26px 0 10px 0;
    color: orange;
    text-align: left;
}

p {
    margin: 0 0 10px 0;
    color: #ddd;
}

/* ===========================
   CTA TLAČÍTKO (HOME)
=========================== */
.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 22px;
    background: orange;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
}

.cta:hover {
    background: #ffb733;
}

/* ===========================
   BENEFITY
=========================== */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.benefit-item img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.benefit-item p {
    margin: 0;
}

/* ===========================
   PARTNEŘI – KARTY
=========================== */
.partner-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 24px;
    color: white;
    text-decoration: none;
    transition: border-color 0.25s ease;
    height: 240px;
}

.partner-card img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.partner-links {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.partner-links a {
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.35);
    color: white;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.partner-links a:hover {
    background-color: rgba(255,150,0,0.2);
    border-color: orange;
}

.btn-offer { color: orange; border-color: orange; }
.btn-web { opacity: 0.85; }

/* ===========================
   KONTAKTY – BLOKY
=========================== */
.block {
    margin-bottom: 40px;
}

.block strong {
    display: block;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: orange;
}

/* ===========================
   KONTAKTY – LAYOUT
=========================== */
.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-text {
    text-align: left;
}

.contact-info {
    margin: 5px 0;
    line-height: 1.4;
}

/* ===========================
   KONTAKTY – FOTKY A QR
=========================== */
.profile-photo {
    width: 120px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
}

.qr img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .contact-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-text {
        text-align: center;
    }
    .qr img {
        margin-top: 10px;
    }
}

/* ===========================
   PŘIHLÁŠKA – FORMULÁŘ
=========================== */
.prihlaska h1 {
    color: white;
}

.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 16px;
    background: #1a1a1a;
    border: 2px solid orange;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.back-btn:hover {
    background: orange;
    color: black;
}

.form-row {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 4px;
    font-weight: bold;
}

input {
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #444;
    background: #1a1a1a;
    color: white;
}

input:focus {
    outline: none;
    border-color: orange;
}

button {
    margin-top: 10px;
    padding: 10px 18px;
    background: orange;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #ffb347;
}

/* ============================================================
   MOBILNÍ ÚPRAVA PRO PARTNERY
============================================================ */
@media (max-width: 600px) {

  .partner-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    gap: 16px;
    padding: 20px;
  }

  .partner-card img {
    max-width: 160px;
    height: auto;
  }

  .partner-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    align-items: center;
  }

  .partner-links a {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   ZACHOVÁNÍ MOBILNÍ VERZE I V LANDSCAPE
============================================================ */
@media (max-width: 900px) {

  nav ul.desktop {
    display: none;
  }

  nav ul.mobile {
    display: none;
    flex-direction: column;
  }

  .hamburger {
    display: block;
  }

  #menu-toggle:checked + nav ul.mobile {
    display: flex;
  }

  .container {
    max-width: 100%;
    padding: 20px;
  }
}
/* ============================================
   ORANŽOVÝ HAMBURGER + BÍLÝ TEXT MENU
============================================ */
.hamburger {
    position: relative;
    padding-left: 40px; /* místo pro ikonku */
    color: white;       /* text MENU */
    font-weight: bold;
}

.hamburger::before {
    content: "☰";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: orange;      /* tři čárky */
    font-size: 28px;
}
