/* Fonty z Google Fonts:
   font-family: 'Playfair Display', serif;
   font-family: 'Quicksand', sans-serif;
*/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background-color: #fffefc;
  color: #333;
  scroll-behavior: smooth;
}

header {
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  font-weight: 600;
}

nav a {
  text-decoration: none;
  color: #849CAF;
  transition: color 0.3s;
}

nav a:hover {
  color: #F1B7A9;
}

/* Hero sekce */
.hero {
  background: url('foto1.png') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin: 0;
}

.hero p {
  font-size: 1.3rem;
  margin-top: 1rem;
}

/* Obsahové sekce */
.section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  align-items: center;
}

.section:nth-child(even) {
  flex-direction: row-reverse;
}

.section img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.section-content {
  flex: 1;
  padding: 20px;
}

.section-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #849CAF;
}

.section-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

form input,
form textarea,
form button {
  font-family: 'Quicksand', sans-serif;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #B6C5D5;
  border-radius: 6px;
  width: 100%;
}

form button {
  background-color: #849CAF;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #6c7f91;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 1rem;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 0.9rem;
}

/* Responsivita */
@media (max-width: 768px) {
  .section {
    flex-direction: column !important;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

