* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f0f0f0;
  color: #333;
}

header {
  background-color: #d4c59e;
  color: #fff;
  padding: 2em 1em;
  text-align: center;
}

.logo {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto 1em;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 1em;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
}
/*zdjecie głowne */
.hero {
  text-align: center;
  background-color: #f0f0f0;
  color: black;
  padding: 4em 2em;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.4em;
  margin-bottom: 2em;
}

.hero-img {
  width: 90%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.content {
  padding: 3em 2em;
  background-color: #f0f0f0;
  max-width: 1000px;
  margin: 0 auto;
}

.content h2 {
  margin-bottom: 1em;
  color: #444;
  font-size: 2em;
}

footer {
  background-color: #d4c59e;
  text-align: center;
  padding: 1em;
  margin-top: 2em;
}

/* Animacja pojawienia się */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Styl sekcji "O nas" dopasowany do reszty */
#about {
  background-color: #f0f0f0; 
  text-align: center; 
  padding: 3em 2em;
  max-width: 100%;
  margin: 0 10% auto;
}

#about h2 {
  font-size: 2.5em;
  color: #111;
  margin-bottom: 1em;
}

#about p {
  font-size: 1.3em;
  line-height: 1.8;
  color: #444;
}

.our-services {
  text-align: center;
  padding: 40px 20px;
  background-color: #f5f1e3;
}

.our-services h2{
  font-size: 2.5em;
  color: #111;
  margin-bottom: 1em;

}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #d4c59e;
  border-radius: 50%;
  margin: 0 auto 15px auto;
}

.service-box h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #333;
}

.service-box p {
  font-size: 16px;
  color: #555;
}


/* to jest ten napis o zaufaniu nam */
.slogan {
  text-align: center;
  padding: 4em 2em;
  background-color: #fff;
  max-width: 1500px;
  margin: 4em auto;
}

.slogan p {
  font-size: 3em; /* jak .hero h1, tylko trochę mniejsze */
  font-weight: bold;
  color: #111;
  line-height: 1.6;
  margin: 0 auto;
}

/* lokalizacja */

.location {
  background-color: #f9f9f9;
  padding: 4em 2em;
  text-align: center;
  max-width: 1000px;
  margin: 4em auto;
  border-top: 2px solid #ddd;
}

.location h2 {
  font-size: 2.5em;
  color: #111;
  margin-bottom: 0.5em;
}

.location h3 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 1em;
}

.location p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 2em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}