/* ==============================
   ROOT & ZÁKLADNÍ NASTAVENÍ
============================== */
:root {
    font-size: 16px;
  
    --hlavni-barva: #ff6600;
    --hover-barva: #e65c00;
    --pozadi-stranky: #f5f5f5;
    --text-barva: #2c3e50;
  
    --radius: 0.6rem;
    --shadow: 0 0.2rem 0.6rem rgba(0,0,0,0.12);
  }
  
  html, body {
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--pozadi-stranky);
    color: var(--text-barva);
  }
  
  /* Scroll snap jen pro full-screen sekce */
  .hero, .kontakt {
    scroll-snap-align: start;
  }
  
  /* ==============================
     HLAVIČKA
  ============================== */
  .hlavicka {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  


  .firma {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  
  .menu a {
    text-decoration: none;
    color: var(--text-barva);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.9rem;
    transition: color 0.3s ease;
  }
  
  .menu a:hover {
    color: var(--hlavni-barva);
  }
  
  /* ==============================
     HERO
  ============================== */
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
  }
  
  .hero h1, .hero p, .hero-btn {
    position: relative;
    z-index: 2;
  }
  
  .hero h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-style: italic;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }
  
  .hero-btn {
    background-color: var(--hlavni-barva);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1.2rem;
    font-family: "Bebas Neue", sans-serif;
    transition: background-color 0.3s ease;
  }
  
  .hero-btn:hover {
    background-color: var(--hover-barva);
  }
  
  /* ==============================
     SLUŽBY
  ============================== */
  .sluzby {
    padding: 4rem 5%;
    background-color: #ffffff;
    text-align: center;
  }
  
  .sluzby h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-barva);
  }
  
  .sluzby-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .sluzba {
    background-color: hwb(29 90% 0%);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.1);
    max-width: 300px;
    flex: 1 1 250px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .sluzba:hover {
    transform: translateY(-5px);
    background-color: #ff6600;
  }
  
  .sluzba h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .sluzba h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #ff6600;
    margin: 0.5rem auto 0;
    border-radius: 1px;
  }
  
  .sluzba p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* ==============================
     LOKALITA
  ============================== */
  .lokalita {
    padding: 4rem 5%;
    background-color: #f0f0f0;
    text-align: center;
  }
  
  .lokalita h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-barva);
  }
  
  .lokalita-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .lokalita-seznam {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
    flex-wrap: wrap;
  }
  
  .lokalita-seznam li {
    font-weight: bold;
  }
  
  /* ==============================
     POSTUP
  ============================== */
  .postup {
    background-color: #f9f9f9;
    padding: 4rem 5%;
    text-align: center;
  }
  
  .postup h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-barva);
  }
  
  .postup-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .krok {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.1);
    max-width: 300px;
    flex: 1 1 250px;
    text-align: center;
  }
  
  .krok h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .ikona {
    fill: #FF6A00;
    margin-bottom: 1rem;
  }
  
  /* ==============================
     FORMULÁŘ
  ============================== */
  .kontakt {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #ffffff, #fff8f0);
    text-align: center;
}

.kontakt h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-barva);
}

.kontakt-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.kontakt-formular {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-pole {
    display: flex;
    flex-direction: column;
}

.form-pole label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-pole input,
.form-pole textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.3rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-pole input:focus,
.form-pole textarea:focus {
    border-color: var(--hlavni-barva);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
    outline: none;
}

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

.tlacitko-odeslat {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-family: "Bebas Neue", sans-serif;
    border: none;
    border-radius: var(--radius);
    background-color: var(--hlavni-barva);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.tlacitko-odeslat:hover {
    background-color: var(--hover-barva);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .kontakt-formular {
        width: 100%;
    }
}


  
  /* ==============================
     PATIČKA
  ============================== */
  .paticka {
    background: linear-gradient(135deg, #ff6600, #e65c00); /* ladí s hlavní barvou stránky */
    color: #fff;
    padding: 1rem 5%;
    text-align: center;
}

.paticka-obsah {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.paticka-obsah p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.paticka-obsah strong {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.3rem;
}

.paticka-obsah a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.paticka-obsah a:hover {
    color: #ffd3b3; /* světlejší oranžová při hoveru */
}

@media (max-width: 768px) {
    .paticka {
        padding: 2rem 3%;
    }

    .paticka-obsah p {
        font-size: 0.95rem;
    }
}
