/* =======================
   GLOBAL
======================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}
  

/* !!!!!!!!!!!!!!!!!!!
!!!!!!!!HEADER!!!!!!!!
!!!!!!!!!!!!!!!!!!! */ 

.socialpanel {
    width: 100%;
    max-width: 100vw;
    height: auto;
    display: flex;
    box-sizing: border-box;
    flex-direction: row;
    background: #fff;
    padding: 0rem 15rem;
    margin: 0 auto;
    align-items: end;
    justify-items: end;
    justify-content: end;
}

.social {
    display: flex;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    flex-direction: row;
    
    
}

.social img {
    height: 2rem;
    padding: 0.1rem;
    transition: 0.4s ease-in;
    
}

.social img:hover {
    scale: 115%;
    
}

.social h2 {
    margin: 0;
    padding: 0;
}

.navigator {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #444444d4;
    padding: 0.5rem 1rem;
  }
  
  .logo img {
    max-height: 50px;
  }
  
  .hamburger {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
  }
  
  .navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .navigation li {
    padding: 0 1rem;
  }
  
  .navigation a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .navigation a:hover {
    opacity: 0.7;
  }
  
  .number {
    background: green;
    color: #fff;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    white-space: nowrap;
  }

/* !!!!!!!!!!!!!!!!!!!
!!!!!!!!!MAIN!!!!!!!!!
!!!!!!!!!!!!!!!!!!! */ 

/* !!!!!!!!!!!!!!!!!!!
!!!!!!!!!HOME!!!!!!!!!
!!!!!!!!!!!!!!!!!!! */ 
.home {

    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
}

.home img {
    display: flex;
    width: 100%;
    height: 40rem;
    object-fit: cover;
    object-position: bottom;
}

.home h1 {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0px;
    font-family: "Corinthia", cursive;
    font-weight: 700;
    font-style: normal;
    font-size: 3rem;
}

.home p {
  display: none;
  width: 100%;
  text-align: center;
}

.services {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

/* !!!!!!!!!!!!!!!!!!!
!!!!!!!SERVICES!!!!!!!
!!!!!!!!!!!!!!!!!!! */ 

.services-info {
    display: flex;
    height: 100%;
    flex-direction: row;
    width: 80%;
    margin: 2rem 0rem;
    transition: 0.3s ease-in;
    border-radius: 12px;
}

.services-info:hover {
    border: 2px solid black;
    scale: 105%;
    
}

.sport {
    margin-top: 0%;
}

.services-info img {
    width: 25rem;
    border-radius: 10px 0px 0px 10px;
}

.text {
    display: flex;
    flex-direction: column;
    background-color: #4444;
    padding: 0% 5%;
    border-radius: 0px 10px 10px 0px;

}

.text h2 {
    font-size: 3rem;
    margin: 5px;
}

.text p {
    font-size: 1.5rem;
}

.cenik {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
  }
  
  .cenik th,
  .cenik td {
    padding: 10px 16px;
    text-align: left;
  }
  
  .cenik thead {
    background-color: #242424;
    color: #ffffff;
  }
  
  .cenik tbody tr:nth-child(even) {
    background-color: #f3f4f6;
  }
  
  .cenik tbody tr:hover {
    background-color: #e5e7eb;
  }
  
  .cenik th {
    font-weight: 600;
  }
  
  .cenik td:last-child {
    font-weight: 600;
    white-space: nowrap;
  }
  

/* !!!!!!!!!!!!!!!!!!!
!!!!!!!!ABOUT-ME!!!!!!!!
!!!!!!!!!!!!!!!!!!! */ 

.about-me {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    padding: 2rem 20rem;
    align-items: center;
}

.about-me img {
    display: flex;
    border-radius: 10px;
    height: 60%;

}

.about-me-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
    width: 100%;
    padding: 5rem 5rem;
    justify-items: center;
}

.about-me-text h2 {
    text-align: center;
    font-size: 3rem;
}

.about-me-text p {
    text-align: center;
    font-size: 1.5rem;
}

/* Sekce formuláře */
.formular {
    padding: 60px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
  }
  
  /* Formulář */
  .formular form {
    background: #ffffff;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  /* Inputy a textarea */
  .formular input,
  .formular textarea {
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 1rem;
    border: 1px solid #000;
    border-radius: 0.5rem;
    background: none;
    outline: none;
  }
  
  /* Výška textarea */
  .formular textarea {
    min-height: 140px;
    resize: vertical;
  }
  
  /* Focus efekt */
  .formular input:focus,
  .formular textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  }
  
  /* Placeholder (pokud ho doplníš) */
  .formular ::placeholder {
    color: #9ca3af;
  }
  
  /* Tlačítko */
  .formular button {
    margin-top: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
  }
  
  /* Hover efekt */
  .formular button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  }
  
  /* Active (kliknutí) */
  .formular button:active {
    transform: translateY(0);
    box-shadow: none;
  }

/* !!!!!!!!!!!!!!!!!!!
!!!!!!!CONTACT!!!!!!!!
!!!!!!!!!!!!!!!!!!! */ 

.contact {
    display: flex;
    flex-direction: row ;
    padding: 2rem 20rem;
}

.contact iframe {
    border-radius: 10px;
    height: 20rem;
}

.contact p {
    padding: 2rem 5rem;
    font-size: 1.5rem;
}
/* !!!!!!!!!!!!!!!!!!!
!!!!!!!!FOOTER!!!!!!!!
!!!!!!!!!!!!!!!!!!! */ 

.footer {
    display: flex;
    height: 10rem;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.footer-all-categories {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0rem 15rem;
    
}

.footer-info {
    display: flex;
    width: 400px;
    height: 100%;
}

.footer-info {
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem; 
    line-height: 0;
}


.footer-social img {
    display: block;
    height: 3rem;
    padding: 0.1rem;
    transition: 0.4s ease-in;
    cursor: pointer;
    
}

.footer-social img:hover {
    height: 4rem;
}

.footer-navigation {
    scale: 115%;
}


.footer-navigation {
    display: flex;
    justify-content: flex-end;
    
}

.footer-navigation ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    width: 350px;
}

.footer-navigation li {
    display: flex;
    padding: 0rem 2rem;
    
    

}

.footer-navigation a {
    text-decoration: none;
    color: #000;
    transition: 0.4s ease-in;
    
}

.footer-navigation a:hover {
    transform: scale(115%);
    font-style: bold;
    font-weight: 400;
}

@media (max-width: 1480px) {

    .socialpanel,
    .navigator,
    .footer-all-categories {
      padding: 0 5rem;
    }
  
    .about-me,
    .contact {
      padding: 2rem 5rem;
    }
  
    .services-info {
      width: 100%;
      max-width: 100%;
      margin: 2rem auto;
    }

    .gdpr {
      padding: 2rem 1rem;
    }
  }

  .gdpr {
    padding: 2rem 10rem;
  }
  

  @media (max-width: 768px) {

    /* ===== SOCIAL PANEL ===== */
    .socialpanel {
      padding: 0.5rem 1rem;
      justify-content: center;
    }
  
    /* ===== NAVIGACE ===== */
    .navigator {
      flex-direction: row;
      padding: 1rem;
      gap: 1rem;
    }
  
    /* ===== HAMBURGER ===== */
 
    .navigation {
      display: none;
      width: 100%;
    }
  
    .navigation.active {
      display: block;
    }
  
    .navigation ul {
      flex-direction: column;
      align-items: center;
      background-color: #444444d4;
      padding: 1rem 0;
      margin: 0;
    }
  
    .navigation li {
      padding: 1rem 0;
    }
  

    /* ===== HOME ===== */
    .home img {
      height: 20rem;
    }
  
    .home h1 {
      font-size: 2rem;
      padding: 1rem;
    }
  
    /* ===== SERVICES ===== */
    .services-info {
      flex-direction: column;
      width: 100%;
      margin: 1.5rem auto;
    }
  
    .services-info img {
      width: 100%;
      border-radius: 10px 10px 0 0;
    }
  
    .text {
      border-radius: 0 0 10px 10px;
      padding: 1rem;
    }
  
    .text h2 {
      font-size: 2rem;
      text-align: center;
    }
  
    .text p {
      font-size: 1.2rem;
    }
  
    /* ===== CENÍK ===== */
    .cenik {
      font-size: 0.9rem;
    }
  
    .cenik th,
    .cenik td {
      padding: 8px;
    }
  
    /* ===== ABOUT ME ===== */
    .about-me {
      flex-direction: column;
      padding: 2rem 1rem;
      align-items: center;
    }
  
    .about-me img {
      width: 100%;
      max-width: 300px;
    }
  
    .about-me-text {
      padding: 2rem 1rem;
    }
  
    .about-me-text h2 {
      font-size: 2.2rem;
    }
  
    .about-me-text p {
      font-size: 1.2rem;
    }
  
    /* ===== FORM ===== */
    .formular {
      padding: 2rem 1rem;
    }
  
    .formular form {
      padding: 1.5rem;
    }
  
    /* ===== CONTACT ===== */
    .contact {
      flex-direction: column;
      padding: 2rem 1rem;
    }
  
    .contact iframe {
      width: 100%;
      height: 250px;
    }
  
    .contact p {
      padding: 1.5rem 0;
      font-size: 1.2rem;
    }
  
    /* ===== FOOTER ===== */
    .footer {
      height: auto;
    }
  
    .footer-all-categories {
      flex-direction: column;
      padding: 2rem 1rem;
      gap: 2rem;
      align-items: center;
    }
  
    .footer-navigation ul {
      align-items: center;
      padding: 0;
    }
  
    .footer-info {
      width: auto;
    }

    .gdpr {
      padding: 2rem 1rem;
    }
  }
  
  