/* --- Reset a základní styl --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* --- Hlavička --- */
header {
  width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

/* PMŠ SPORT rámeček */
.pm-sport-box {
  background-color: #003366;
  color: #fff;
  padding: 35px 25px;
  border-radius: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 85%);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.pm-sport-box h1 {
  margin: 10px;
  font-weight: 900;
  font-size: 1.6rem;
}

.pm-sport-box .sport {
  display: block;
  font-weight: 700;
}

/* Logo + slogan uprostřed */
.logo-slogan {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-slogan img {
  max-height: 140px;
}

.slogan {
  font-size: 1rem;
  margin-top: 5px;
  text-align: center;
}

.slogan .blue {
  color: #003366;
}

.slogan .red {
  color: #CC0000;
}

/* Tlačítka doprava nahoře */
.header-buttons {
  display: flex;
  gap: 10px;
}

.header-buttons .nav-btn {
  background-color: #003366;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.header-buttons .nav-btn:hover {
  background-color: #ffcc00;
  color: #003366;
}

/* --- Hero sekce --- */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #e6f0ff;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 20px;
  align-items: center;
}

.hero-text {
  flex: 1 1 400px;
}

.hero-text h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #333;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 50%;
  border-radius: 10px;
}

/* --- Služby s obrázkem vlevo a textem vpravo --- */
.services {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.services h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  flex-direction: row;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  max-width: 800px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: auto;
  height: 200px;
  object-fit: contain;
  border-radius: 10px;
  margin-right: 15px;
}

.service-text {
  flex: 1;
  display: flex;
  align-items: center;
}

.service-text p {
  font-size: 1rem;
  line-height: 1.4;
}

.service-text strong {
  color: #003366;
}

.red {
  color: #CC0000;
  font-weight: bold;
}

/* --- Kontakty --- */
.contact {
  padding: 40px 20px;
  background-color: #e6f0ff;
  text-align: center;
}

.contact h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact address {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact a {
  color: #003366;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* --- Patička --- */
footer {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}

/* --- Otevírací doba --- */
.opening-hours {
  font-weight: bold;
  color: red;
  font-size: 20px;
  text-align: center;
  margin: 40px 0 10px 0;
}

/* --- Responzivita --- */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-image img {
    max-width: 80%;
  }

  .service-item {
    flex-direction: column;
    align-items: center;
  }

  .service-item img {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    max-width: 300px;
  }

  .service-text {
    align-items: center;
    text-align: center;
  }

  .header-top {
    flex-direction: column;
    align-items: center;
  }

  .header-buttons {
    margin-top: 10px;
  }

  .pm-sport-box {
    margin-bottom: 10px;
  }
}

/* --- Úprava hero sekce pro mobilní telefony, kompaktní verze --- */
@media (max-width: 768px) {
  .hero {
    padding: 20px 10px; /* menší výška sekce */
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    margin-right: 0;
    margin-bottom: 5px;
    text-align: center;
  }

  .hero-image img {
    max-width: 90%;
    margin-top: 0; /* obrázek těsně pod textem */
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 15px 10px; /* ještě menší výška pro malé telefony */
  }

  .nav-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-text {
    margin-bottom: 5px;
    text-align: center;
  }

  .hero-image img {
    max-width: 95%;
    margin-top: 0; /* obrázek těsně pod textem */
  }

  .services h2, .contact h2 {
    font-size: 1.5rem;
  }
}


























