* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f9;
  color: #333;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  flex-wrap: wrap;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: white;
  padding-right: 30px;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links li a.active {
  text-decoration: underline;
}

.navbar-right {
  margin-top: 10px;
}

.login-button {
  padding: 8px 16px;
  background-color: #fff;
  color: #007BFF;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.login-button:hover {
  background-color: #e6e6e6;
}

.hero {
  background: url('images/stock3.jpg') no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  color: white;
  background-color: #0056b3;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 20px;
  border-radius: 10px;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #218838;
}

.info-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.info-section ul {
  list-style: none;
  margin-top: 20px;
}

.info-section li {
  margin: 10px 0;
  font-size: 1.1rem;
}

.footer {
  background-color: #343a40;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}

/* ZÁJEZDY STYL */
.zajezdy-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  padding: 40px 40px 60px;
  justify-items: center;
}

.zajezd-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  
}

.zajezd-card:hover {
  transform: scale(1.02);
}

.zajezd-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.zajezd-info {
  padding: 1rem;
}

.zajezd-info h2 {
  font-size: 1.2rem;
  color: #0077cc;
  margin-bottom: 0.5rem;
}

.zajezd-info p {
  margin: 0.3rem 0;
  color: #555;
}

.page-header {
  background: #3498db;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.page-header h1 {
  margin: 0;
  font-size: 2rem;
}

.sort-form {
  text-align: center;
  margin: 1rem 0;
}

.sort-form select {
  padding: 0.4rem 0.6rem;
  font-size: 1rem;
}

/* RECENZE */
.reviews-section {
  padding: 40px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

.reviews-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.review-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 20px;
  width: 280px;
  max-width: 90%;
  box-sizing: border-box;
  text-align: left;
}

.review-card h3 {
  margin-top: 0;
  font-size: 20px;
  color: #333;
}

.review-card p {
  font-size: 16px;
  color: #555;
}

.stars {
  font-size: 1.2rem;
  color: #f5c518;
  margin-top: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-right {
    width: 100%;
    text-align: right;
    margin-top: 10px;
  }

  .hero {
    padding: 60px 10px;
  }

  .hero-content {
    width: 100%;
  }
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin: 2rem 0;
}
.contact-prompt {
  background-color: #66b2f0;
  border-top: 1px solid #cce0f5;
  border-bottom: 1px solid #cce0f5;
}

