/*
Theme Name: Párty Čas
Theme URI: https://example.com
Author: Tvé jméno
Author URI: https://example.com
Description: Jednoduchá šablona půjčovny Párty Čas
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: partycas
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  background: #f5fdfd;
  color: #222;
}
header {
  width: 100%;
  background: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #222;
  font-weight: bold;
}
.btn {
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #00c2de;
  color: white;
}
.btn-outline {
  background: white;
  border: 2px solid #00c2de;
  color: #00c2de;
}
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #e6fbff, #f5fdfd);
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero p {
  margin-bottom: 15px;
  color: #555;
  font-size: 18px;
}
.hero-buttons {
  margin-top: 30px;
}
.hero-buttons button {
  margin: 0 10px;
}
.section-title {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 10px;
  font-size: 36px;
}
.section-sub {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}
.products {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px;
}
.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-content {
  padding: 20px;
}
.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.card .price {
  font-size: 22px;
  margin-top: 5px;
  font-weight: bold;
  color: #00b5cf;
}
.card button {
  width: 100%;
  margin-top: 15px;
}
.reservation-box {
  max-width: 700px;
  margin: 80px auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
}
.contact-grid {
  max-width: 900px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.contact-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
footer {
  background: #0b0f19;
  color: white;
  padding: 40px 20px;
  margin-top: 80px;
}
footer .footer-flex {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
