html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f0ede2;
  color: #2c2c2c;
}

header {
  background-color: rgba(30, 63, 60, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 70px;
}

.logo a img {
  height: 55px;
}

.menu {kde
  display: flex;
  gap: 2rem;
  align-items: center;
  padding-right: 4rem;
}

.nav-btn {
  background: #b9a268;
  padding: 0.4rem 0.8rem;
  border-radius: 25px;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: #a38d57;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.hero {
  height: 100vh;
  background: url('images/Rezidence-Plansky-jez_2.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  position: relative;
}

.hero-logo {
  width: 260px;
  margin-bottom: 2rem;
  margin-top: -180px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(30, 63, 60, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.btn {
  background-color: #b9a268;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #a38d57;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

h2 {
  color: #1e3f3c;
  text-align: center;
  margin-bottom: 1rem;
}

.content-section {
  background-color: #f0ede2;
  padding: 3rem 2rem 1rem;
}

.content-wrapper,
.content-wrapper.reverse {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.content-wrapper.reverse {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1 1 500px;
  color: #1e3f3c;
  text-align: left;
}

.content-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #b9a268;
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-image {
  flex: 1 1 500px;
  text-align: center;
}

.content-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

.map-container img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
}

.contact-info {
  background-color: #1e3f3c;
  color: #fff;
  padding: 2rem;
  border-radius: 30px;
  text-align: center;
  margin-top: 2rem;
}

footer {
  background: #1e3f3c;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
  background-color: #1e3f3c;
  border-radius: 30px 30px 0 0;
  color: #fff;
}

.contact-col {
  flex: 1 1 300px;
  max-width: 500px;
}

.contact-col p {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.contact-footer {
  background-color: #1e3f3c;
  color: #fff;
  padding: 1.5rem 1rem;
  border-radius: 0 0 30px 30px;
  text-align: center;
}

.contact-footer p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

a {
  color: #fff;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

.contact-block-full {
  background-color: #1e3f3c;
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
}

.contact-block-full p {
  margin: 0.4rem 0;
  line-height: 1.6;
  font-size: 1rem;
}

.contact-block-full a {
  color: #fff;
  text-decoration: underline;
}

.contact-top {
  border-radius: 30px 30px 0 0;
}

@media (max-width: 768px) {

  .container {
    padding-top: 1rem;
  }

  .content-wrapper,
  .content-wrapper.reverse {
    background: #f0ede3;
    border-radius: 20px;
    padding: 0.6rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin: 1.5rem 0;
  }
  .menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 60px;
    background: #1e3f3c;
    flex-direction: column;
    padding: 1rem;
    border-radius: 10px;
  }

  .menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 1001;
  }

  header {
    padding: 0.5rem 1rem;
  }

  .logo a img {
    height: 50px;
  }

  .content-wrapper,
  .content-wrapper.reverse {
    display: block;
    margin-bottom: 2rem;
    
  }

  .content-text {
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .content-text h2 {
    margin: 0.3rem 0 0.2rem;
    font-size: 1.5rem;
  }

  .content-text p {
    margin: 0.2rem 0;
    font-size: 1rem;
    line-height: 1.4;
  }

  .content-image img {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
