/* ▸ RESET ▸────────────────────────────── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fdfdfd;
  }

  .navbar {
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

.btn-primary {
  background-color: rgb(8, 8, 8);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar .container {
    padding: 10px 15px;
  }

  .logo {
    height: 40px;
  }

  .btn-primary {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

  
  img { max-width: 100%; display: block; }
  
  /* ▸ HERO ▸─────────────────────────────── */
  header.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 9rem 6rem;
    background: rgb(0, 0, 0);
  }
  
  .hero-content { flex: 1 1 400px; padding-right: 2rem; }
  
  .hero-content h1 {
    font-size: clamp(2.5rem,3.1vw,3.5rem);
    color: white;
    margin-bottom: 1.3rem;
    line-height: 1.2;
  }

  .hero-content p {
    color: white;
    
  }
  
  .tagline { font-size: 1.125rem; margin-bottom: 1.5rem; }
  
  .benefits { list-style: disc inside; }
  .benefits li{ color: white; }
  
  .hero-image { 
    flex: 1 1 350px; 
}

.hero-image img{ 
    border-radius: 10px;
}
  
  /* ▸ JAK TO PROBÍHÁ ▸──────────────────── */
  .how { padding: 6rem 6rem; background: #fff; }
  
  .how h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
  
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 2rem;
  }
  
  .step { text-align: center; }
  
  .step h3 { margin: 1rem 0 .5rem; font-size: 1.125rem; }
  
  /* ▸ O NÁS ▸────────────────────────────── */
  .about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 8rem 6rem;
    background: #f7f9fc;
  }
  
  .about-image { flex: 1 1 350px; margin-right: 2rem; }

  .about-image img{ border-radius: 10px; }
  
  .about-content { flex: 1 1 400px; }
  
  .about-content h2 { font-size: 2rem; margin-bottom: 1rem; }
  
  /* ▸ GALERIE ▸──────────────────────────── */
  .gallery { padding: 4rem 6rem; background: #ffffff; }
  
  .gallery h2 { 
    text-align: center; font-size: 2rem; margin-bottom: 2rem; 
    color: rgb(0, 0, 0);
}
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1rem;
  }
  
  .gallery-grid img {
    width: 100%;             /* zabere celou šířku svého grid boxu */
    height: 200px;           /* pevná výška pro všechny obrázky */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,.05);
    
    object-fit: cover;       /* obrázek vyplní box a ořízne přebytečné části */
    /* alternativně můžeš použít object-fit: contain; aby byl celý vidět, ale bude prázdné místo */
  }
  
  /* ▸ KONTAKT ▸──────────────────────────── */
  .contact { padding: 4rem 6rem; background: #000000; }
  
  .contact h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; color: white; }
  
  .contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  
  .contact-info { flex: 1 1 260px; font-size: 1rem; }
  
  .contact-info p { margin-bottom: 1rem; color: white; }
  
  .contact-form {
    flex: 1 1 300px;
    display: grid;
    gap: 1rem;
  }
  
  .contact-form label { font-weight: 600; color: white;}
  
  .contact-form input,
  .contact-form textarea {
    padding: .75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font: inherit;
  }
  
  .contact-form button {
    padding: .75rem 1rem;
    border: none;
    border-radius: 6px;
    background-color: #0056b3;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
  }
  
  .contact-form button:hover { background: #e14a2a; }
  
  /* ▸ PATICKA ▸──────────────────────────── */
  .site-footer {
    text-align: center;
    padding: 2rem;
    background: #333;
    color: #fff;
    font-size: .875rem;
  }

  .terms {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
  }
  
  .terms .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .terms h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
  }

  .terms p {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  .term-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .term {
    background-color: white;
    border: 2px solid #007bff;
    border-radius: 12px;
    padding: 20px 40px;
    font-size: 1.3rem;
    color: #007bff;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .term:hover {
    background-color: #007bff;
    color: white;
  }
  
  .term .spots {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: normal;
    color: #555;
  }
  
  .term:hover .spots {
    color: #e0e0e0;
  }
  
  
  /* ▸ RESPONSIVITA ▸────────────────────── */
  @media (max-width: 768px) {
    .hero-content { padding-right: 0; }
    .about-image { margin-right: 0; margin-bottom: 2rem; }
  }
  
  .pricing {
    padding: 4rem 6rem;
    background-color: #000000;
    font-family: 'Inter', sans-serif;
  }
  
  .pricing h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: white;
  }
  
  .pricing-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .includes{
    flex: 1 1 300px;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;

  }

  .includes:hover{
    background: green;
    color: white;
  }

  .includes:hover h3{
    color: white;
  }

  .excludes {
    flex: 1 1 300px;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;

  }

  .excludes:hover {
    background: red;
    color: white;
  }

  .excludes:hover h3 {
    color: rgb(255, 255, 255);
  }
  
  .includes h3, .excludes h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.25rem;
  }
  
  .includes ul, .excludes ul {
    list-style: disc;
    padding-left: 1.5rem;
  }
  
  .includes li, .excludes li {
    margin-bottom: 0.5rem;
  }
  
  .price-box {
    text-align: center;
    margin-top: 2rem;
  }
  
  .price-box p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: white;
  }
  
  .price-box .note {
    font-size: 0.95rem;
    color: #ffffff;
    max-width: 600px;
    margin: 1rem auto 0;
  }

  /* ▸ MOBILNÍ RESPONSIVITA ▸────────────── */
@media (max-width: 768px) {
  header.hero,
  .about,
  .how,
  .gallery,
  .pricing,
  .contact {
    padding: 3rem 1.5rem;
  }

  header.hero {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-content, .hero-image {
    padding: 0;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .tagline, .benefits li {
    font-size: 1rem;
  }

  .about {
    flex-direction: column;
  }

  .about-content, .about-image {
    text-align: center;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .term-list {
    flex-direction: column;
    gap: 1rem;
  }

  

  .pricing-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 180px;
  }
}

/* Extra malý mobil */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .contact-form button {
    width: 100%;
  }

  .term {
    padding: 1rem 1.5rem;
  }
}

  