@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

 html {
scroll-behavior: smooth;
}

body {
   font-family: 'Segoe UI', sans-serif;
  background-color: #f9fafb;
  color: #333;
  line-height: 1.6;
  padding-top: 80px; /* kvůli fixnímu headeru */
}
header {
  background: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header .logo {
  font-size: 28px;
  font-weight: bold;
  color: #f97316;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 20px;
}
nav a:hover {
  color: #f97316;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 2rem;
  margin-top: 2rem;
}

.hero-text {
  flex: 1 1 500px;
  padding: 20px;
  text-align: left;
  margin: 2rem;
}

.hero-image {
  
  border-radius: 30px;
  padding: 20px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}
.button {
  background: #f97316;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}
.button:hover {
  background: #fb923c;
}
.services {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}
.services h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card .icon {
  font-size: 48px;
  margin-bottom: 15px;
  color: #f97316;
}
.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}
.card a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}
.card a:hover {
  text-decoration: underline;
}
.about {
  background: #f3f4f6;
  padding: 80px 20px;
  text-align: center;
}
.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.about p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: #555;
}
footer {
  background: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #777;
  margin-top: 50px;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    margin-top: 10px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .services h2, .about h2 {
    font-size: 28px;
  }
}

.content-box4 {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f2f2f2;
  color: #000;
}

.container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

h1 {
  margin-bottom: 30px;
}

.content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px; 
  margin-left: 8rem;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

form input,
form textarea {
  width: 400px;
  padding: 15px;
  margin: 10px 0;
  border: 2px solid #000;
  border-radius: 30px;
  font-size: 16px;
  box-sizing: border-box;
}

form textarea {
  height: 130px;
  resize: vertical;
  border-radius: 20px;
}

button {
  width: 400px;
  padding: 15px;
  margin-top: 15px;
  border: 2px solid #000;
  border-radius: 30px;
  background: #ff6600;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background: #d15b0c;
}

.contact-info {
  margin-top: 20px;
  text-align: center;
}

.contact-info a {
  color: black;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a img {
  width: 50px;
  height: 50px;
  padding: 5px;
  transition: 0.3s ease;
}

.social-icons a img:hover {
  background: #ddd;
}
.story-section {
  margin: 60px auto;
  max-width: 900px;
  text-align: center;
}

#toggleStoryBtn {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

#toggleStoryBtn:hover {
  background-color: #e65500;
}

#storyContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, padding 0.5s ease;
  text-align: left;
  margin-top: 20px;
  padding: 0 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#storyContent.show {
  padding: 30px 20px;
  max-height: 3000px;
}

#storyContent h2 {
  margin-top: 0;
  color: #333;
}

#storyContent p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Responzivita pro telefony */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
  }

  nav a {
    margin: 10px 0;
    font-size: 18px;
  }
  

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-image img {
    max-width: 90%;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  form input,
  form textarea,
  button {
    width: 100%;
  }

  .content {
    flex-direction: column;
    margin-left: 0;
    align-items: center;
    gap: 20px;
  }

  .social-icons {
    flex-direction: row;
    justify-content: center;
  }
  



}

