/* --- Ogólne --- */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f8f8f8;
  color: #1c1c1c;
}

/* --- Navbar --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-left img {
  height: 38px;
  cursor: pointer;
}

.menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.28s, transform 0.18s;
}

.menu li a:hover,
.menu li a.active {
  color: #c9a34f;
  transform: translateY(-2px);
}

.flags {
  display: flex;
  gap: 10px;
  align-items: center;
}

.flag {
  width: 22px;
  height: auto;
  border-radius: 3px;
  cursor: pointer;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(rgba(10,30,15,0.6), rgba(10,30,15,0.8)),
              url('img/hero_glamping.jpg') no-repeat center/cover;
  color: #fff;
  text-align: center;
  min-height: 35vh; /* laptop 1/3 wysokości */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 14px;
}

.hero p {
  font-size: 20px;
  font-weight: 300;
}

/* --- Sekcje --- */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-family: 'Playfair Display', serif;
  color: #0b2e23;
  margin-bottom: 30px;
  text-align: center;
}

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.features-grid div {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-left: 4px solid #c9a34f;
  padding: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s;
}

.features-grid div:hover {
  transform: translateY(-5px);
}

/* --- Opinie --- */
.opinions {
  display: grid;
  gap: 20px;
}

.opinion {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.stars {
  color: #c9a34f;
  font-size: 18px;
  margin-top: 10px;
}

/* --- Galeria --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* --- Newsletter --- */
.newsletter {
  background: #f4f4f4;
  text-align: center;
  padding: 50px 20px;
  border-top: 2px solid #c9a34f;
  border-bottom: 2px solid #c9a34f;
}

.newsletter h2 {
  color: #0b2e23;
  margin-bottom: 10px;
}

.newsletter p {
  margin-bottom: 20px;
  font-size: 16px;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  min-width: 250px;
}

.newsletter button {
  background: #c9a34f;
  border: none;
  padding: 10px 18px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter button:hover {
  background: #b28f3d;
}

/* --- Kontakt --- */
.contact {
  background: #0b2e23;
  color: #fff;
  text-align: center;
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 20px;
  color: #fff; /* biały nagłówek */
}

.contact a {
  color: #c9a34f; /* złote linki */
  text-decoration: none;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.contact a:hover {
  text-decoration: underline;
}

/* --- Footer --- */
footer {
  background: #111;
  color: #bbb;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* --- Responsywność --- */
@media (max-width: 1024px) {
  .hero {
    min-height: 50vh; /* krótsze zdjęcie na mobile */
  }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }

  .nav-left img {
    height: 34px;
  }

  .menu {
    gap: 12px;
    font-size: 14px;
  }
  .flag {
    width: 20px;
  }
}

@media (max-width: 400px) {
  .menu {
    gap: 8px;
    font-size: 13px;
  }
  .nav-left img {
    height: 30px;
  }
}

