* {
     font-family: "Montserrat", sans-serif;

}

body {
  background-color: #000;
}


/*
selektor {
    atribut: hodnota;
    atribut: hodnota;
    atribut: hodnota;
    atribut: hodnota;
}
/*

/* Navigace */

.Habet-logo {
    padding-left: 80px;
}

nav {
    margin-left: 1rem;
    margin-right: 1rem;
    display: flex;
    justify-content: space-between;
}

.Navigace ul {
    display: flex;
    list-style: none;
}

.Navigace ul li {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid white;
}

.Navigace ul a {
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
}

.Navigace ul li:hover {
  display: inline-block;
}

.Navigace ul li:after {
  content: '';
  width: 0px;
  height: 1px;
  display: block;
  background: #ffffff;
  transition: 300ms;
}

.Navigace ul li:hover:after {
  width: 100%;
}

/* Hero sekce s obrázkem */

.hero {
  position: relative;
  width: 100%;
  height: auto;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* nový wrapper pro obsah na obrázku */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 100px;
  display: block; /* ✅ NE Flex */
  z-index: 1;
}

/* Pruh */

.season-bar {
    position: absolute;
    top: 10px;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between; /* rozdělí pruh na dvě části */
    gap: 2px; /* mezera mezi tlačítky */
    width: 98%;
    height: 80px;
    background-color: transparent; /* odstraníme pruh, protože budou dva boxy */
    z-index: 1000;
}

.season-button {
    flex: 1; /* každý zabere 50 % šířky */
    background-color: rgba(80, 124, 91, 0.58);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0; /* žádné extra zakřivení uvnitř */
    text-align: center;
    transform: skew(-3deg); /* zachová zkosení */
}

.season-button:first-child {
    border-radius: none; /* levé zaoblení */
}

.season-button:last-child {
    border-radius: none; /* pravé zaoblení */
}

.season-button:hover {
    background-color: rgba(106, 204, 136, 0.76);
}

.season-button:hover {
    background-color: rgba(106, 204, 136, 0.76);
}

.text-desktop {
  display: inline;
}
.text-mobile {
  display: none;
}

/* Tabulka */

.tabulky-flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30rem;
  flex-wrap: nowrap;
  margin-top: 2rem;
}

.kontakty-tabulka {
  flex: 1 1 400px;
  max-width: 420px;
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 1em;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  border-collapse: collapse;
  box-sizing: border-box;
}

.kontakty-tabulka a {
  color: white;
  text-decoration: none;
}

.kontakty-tabulka a:hover {
  text-decoration: underline;
}

.kontakty-tabulka table {
  width: 100%;
  border-collapse: collapse;
}

.kontakty-tabulka th,
.kontakty-tabulka td {
  border-bottom: 1px solid white;
  padding: 0.75em;
  text-align: left;
}

.kontakty-tabulka thead th {
  font-size: 1.1em;
  text-transform: uppercase;
  border-bottom: 2px solid white;
}


/* === HAMBURGER IKONA === */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 900px) {
    .hamburger { display: flex; }
    .Navigace ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 220px;
        background-color: #000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 0 10px 0;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -4px 0 8px rgba(0, 0, 0, 0.5);
    }
    .Navigace ul.show { right: 0; }
    .Navigace ul li { padding: 1rem; width: 100%; text-align: center; }
    .Navigace ul li a { color: white; font-size: 18px; }
}

@media (max-width: 500px) {

/* Navigace - hamburger menu */
  .hamburger {
    transform: scale(0.8);
  }

  #nav-menu li a {
    font-size: 14px;
    padding: 6px 10px;
  }

  .Navigace ul li {
    border-bottom: 1px solid white;
    margin: 0 auto;
    width: calc(100% - 20px);
  }


/* Pozadí */
body {
background: linear-gradient(to bottom, #000000, #34c26fc9);
}

.hero-img {
display: none;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }


/* LOGO */
    .Habet-logo {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

  .Habet-logo img {
    width: 70px !important;
    height: auto !important;
    margin-left: 20px;
    text-align: center !important;
    justify-content: center;   /* ✅ zarovnání na střed vodorovně */
    align-items: center; 
}

/* PRUH */
    .season-bar {
    width: 88%;
    height: 50px !important;
    top: 10px !important;              /* sníží pozici pod navigací */
    font-size: 0.8em !important;
    padding: 0 10px !important;
    transform: skew(-2deg);
    display: flex;
    justify-content: center;
    align-items: center; /* ✅ zarovná tlačítko vertikálně doprostřed */
    }

    .season-button {
    top: 110px !important;
    width: 90%;
    height: 50px;
    padding: 0 10px !important;
    font-size: 1em !important;
    cursor: default;
    }



    .text-desktop {
        display: none;
    }
    .text-mobile {
        display: inline;
    }

    .tabulky-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;         /* ✅ umožní zalomení */
    gap: 2rem;               /* ✅ menší mezera */
    margin-top: 2rem;
    padding: 0 1rem;         /* ✅ zajištění odsazení na malých displejích */
    }

.kontakty-tabulka {
    width: 100%;
    max-width: 400px;
  }


}