/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* OGÓLNE */
body {
  font-family: 'Montserrat', sans-serif;
  background: #f4f1ea;
  color: #2b2b2b;
  line-height: 1.7;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

p {
  max-width: 800px;
  margin: 0 auto;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('images/dom2.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: #1e3d2f;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  background: #163025;
  transform: translateY(-2px);
}

/* NAV */
nav {
  background: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav ul li {
  margin: 0 20px;
}

nav a {
  text-decoration: none;
  color: #1e3d2f;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  opacity: 0.7;
}

/* SEKCJE */
.section {
  padding: 100px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.dark {
  background: #1e3d2f;
  color: white;
}

.light {
  background: #eae6de;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.feature {
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 1.05rem;
  transition: 0.3s;
}

.dark .feature {
  background: rgba(255,255,255,0.08);
}

.feature:hover {
  transform: translateY(-5px);
}

/* GALERIA */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* MAPA */
.map {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: 0.3s;
  z-index: 1000;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/* FOOTER */
footer {
  background: #1e3d2f;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 60px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 2.2rem;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }

  .section {
    padding: 70px 20px;
  }

}