/* RESET + BOX MODEL */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ZÁKLAD STRÁNKY */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #c4f7f4;
  color: #333;
  line-height: 1.8;
}

/* HLAVIČKA */
header {
  background: #c4f7f4;
  padding: 30px;
  text-align: center;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

.gallery-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-section img {
  width: 100%;
  max-width: calc(50% - 10px);
  border-radius: 12px;
}

/* HLAVNÍ OBSAH */
main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  background: #ffe4ec;
  border-radius: 12px;
}

/* OBSAHOVÝ BOX */
.content-box {
  max-width: 100%;
}

/* O NÁS – OBRÁZKY */
.onas-foto-galerie {
  margin-bottom: 40px;
}

.onas-foto-galerie img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
/* --- Kontakt --- */
.contact-item {
    margin-bottom: 25px;
}

.contact-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.contact-form {
    margin-top: 30px;
}

/* --- Fotka na kontaktu --- */
.contact-photo {
    margin-bottom: 30px;
}

.contact-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
/* === KONTAKT – ROZLOŽENÍ === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEVÝ SLOUPEC */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* PRAVÝ SLOUPEC */
.contact-right {
  display: flex;
  flex-direction: column;
}

/* === FOTKA NA KONTAKTU === */
.contact-photo img {
  width: 100%;
  max-width: 420px;   /* 👈 ZMENŠENÍ */
  height: auto;
  border-radius: 12px;
  display: block;
}

/* FORMULÁŘ */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form input[type="submit"] {
  background: #8a4b32;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.contact-form input[type="submit"]:hover {
  background: #a65a3c;
}

/* GDPR text pod formulářem */
.gdpr-note {
    font-size: 0.9em;
    color: #555;
    margin-top: 12px;
    line-height: 1.5;
}

/* === MOBIL === */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-photo img {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .gallery-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
