/* Reset a základní styly */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #5f8765;
  background: #fff;
  font-size: 10px;
}

p {
  font-size: 14px;
  text-align: justify;
  max-width: 650px;       /* zúží blok textu */
  margin: 0 auto;         /* vycentruje ho vodorovně */
  padding: 0 20px; 
}

.text-info p {
  text-align: center;
  margin-bottom: 0;
}

.text-info p:last-child {
  margin-bottom: 40px; /* mezera jen pod druhou větou */
}


.rezervace-wrapper {
  text-align: center;
  margin: 40px 0;
}

.rezervace-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #f8bbd0;
  background-color: rgba(248, 187, 208, 0.2); /* jemná růžová, průhledná */
  color: #d81b60;
  font-weight: bold;
  text-decoration: none;
  border-radius: 40px;
  font-size: 16px;
  transition: background 0.3s ease, color 0.3s ease;
  text-align: center;
}

.rezervace-btn:hover {
  background-color: rgba(248, 187, 208, 0.4);
  color: #ad1457;
}

.main-menu {
  background-color: #fff;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 30px;
}

.main-menu a {
  text-decoration: none;
  color: #5f8765;
  font-weight: bold;
  transition: color 0.3s;
}

.main-menu a:hover {
  color: #ff69b4;
}

/* Header */
header {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

h1 {
  font-family: 'Playfair Display', serif;
  color: #ff69b4;
  font-size: 55px;
  margin: 0;
  font-weight: 400;
}

h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 36px;
  color: #5f8765;
  font-weight: 400;
}

h3 {

 font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 24px;
  color: #ff69b4;
  font-weight: 400;
}



/* Main content */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

section {
  margin-bottom: 80px;
}

/* Sekce O mně */
#about {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

#about img {
  border-radius: 20px;
  width: 300px;
  height: auto;
  margin-top: 40px;    /* ← tady přidáš odsazení od horního okraje */
}

#about div {
  max-width: 500px;
  text-align: justify;
}

/* Služby */
.services-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-box {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 25px 30px;
  width: 250px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: #fff0f5; /* jemně růžové pozadí při hoveru */
}

.service-box h3 {
  margin-top: 0;
  color: #5f8765;
}

 .service-box strong {
  font-size: 20px;      /* nebo větší – zkus třeba 22px */
}

/* Formulář */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

input, textarea {
  padding: 10px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 500px;
  border-radius: 40px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button {
  background-color: #7b6c5f;
  color: white;
  padding: 10px 20px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
margin-top: 20px
}

button:hover {
  background-color: #5a4b3c;
}

/* Checkbox label a input */
.checkbox-label {
  display: flex;
  align-items: center;   /* vertikálně zarovná checkbox a text */
  gap: 8px;
  cursor: pointer;
  text-align: left !important;
  max-width: 600px;
  font-size: 14px;
  color: #5f8765;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;           /* checkbox pevná velikost */
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label a {
  color: #f48fb1;           /* růžová barva odkazu */
  text-decoration: underline; /* nebo none podle potřeby */
}

/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* POPUP BOX */
.popup-box {
  background: white;
  padding: 30px 40px;
  border-radius: 15px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  position: relative;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-box {
  transform: scale(1);
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #777;
  cursor: pointer;
  user-select: none;
}

.close-btn:hover {
  color: #000;
}

/* Footer */
.site-footer {
  padding: 60px 60px;
  font-size: 14px;
  color: #f48fb1; /* jemná růžová */
}

.footer-line {
  width: 80%;
  margin: 0 auto 20px;
  border: none;
  border-top: 1px solid #ddd;
}

.footer-wrapper {
  display: flex;
  justify-content: space-evenly; /* rovnoměrné rozložení sloupců */
  align-items: center;
  max-width: 900px; /* zúžený středový blok */
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px; /* větší mezera mezi levým a pravým sloupcem */
}

/* Levá strana – kontakty */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-left a {
  color: #f48fb1;
  text-decoration: none;
  font-size: 14px;
}

/* Pravá strana – sociální ikony */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-right a img {
  width: 30px;
  height: 30px;
}

/* Sociální sítě */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
}

.social-icons img {
  width: 30px;
  height: 30px;
}

/* Responsivní */
@media (max-width: 768px) {
  #about {
    flex-direction: column;
    align-items: center;
  }

  #about div {
    text-align: justify;
  }
  
  /* Zlepšení zobrazení křížku pro zavření popup na mobilu */
  .close-btn {
    top: 15px;
    right: 20px;
    font-size: 32px;
    z-index: 10000;
  }
}

.custom-list {
  list-style: none;      /* odstraní puntíky */
  padding: 0;            /* odstraní vnitřní odsazení */
  margin: 40px auto 40px 290px;     /* zarovná na střed + prostor okolo */
  max-width: 600px;
  text-align: left;      /* text vlevo uvnitř bloku */
}

.custom-list li {
  display: flex;
  align-items: flex-start; /* zarovná srdíčko nahoře k víceřádkovému textu */
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #5f8765;
}

.heart {
  font-size: 14px;
  line-height: 1;
  color: #f48fb1;
  flex-shrink: 0;
  margin-top: 2px; /* jemné srovnání s textem */
}

.start-banner {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 400px;
  color: #f48fb1;
  font-weight: bold;
  font-size: 16px;
  margin: 15px auto;
  padding: 10px 40px;
  text-align: center;
  z-index: 1;
}

.start-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 40px;
  background-color: rgba(244, 143, 177, 0.3);
  transform: translateY(-50%);
  z-index: -1;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(244, 143, 177, 0.2);
}

/* DRUHÝ BANNER – např. pro léto */

.leto {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 600px;
  color: #f48fb1;
  font-weight: bold;
  font-size: 16px;
  margin: 20px auto;
  padding: 20px 60px;       /* ZVÝŠENÝ PADDING – víc místa okolo textu */
  text-align: center;
  z-index: 1;
}

.leto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(244, 143, 177, 0.3);
  border-radius: 16px;       /* jemně větší zakulacení */
  z-index: -1;
  box-shadow: 0 2px 8px rgba(244, 143, 177, 0.2);
}


