body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f7;
  color: #1e1e1e;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #014A52;
  color: white;
}

.logo img {
  height: 90px;
}

.main-nav ul {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #A2822E;
}

.hero {
  background: url('../images/kakabeka.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px #000;
}

.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #A2822E;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #d3a83f;
}

section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #014A52;
}

.highlight-card,
.activity-card,
.about-image-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}


.highlight-card img,
.activity-card img {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.highlight-card img:hover,
.activity-card img:hover {
  transform: scale(1.05);
}

.featured-cabin {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cabin-image {
  flex: 1 1 300px;
}

.cabin-info {
  flex: 2 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq h3 {
  background-color: #d4c6a2;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.faq-answer {
  background-color: #f1efe9;
  padding: 10px 15px;
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border: 5px solid white;
}

.site-footer {
  text-align: center;
  padding: 20px;
  background-color: #014A52;
  color: white;
}

@media (max-width: 1024px) {
  .main-nav ul {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .featured-cabin {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    height: 50vh;
    padding: 10px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .cta-button {
    width: 100%;
  }

  .activity-card,
  .highlight-card {
    margin-bottom: 30px;
  }

  .cabin-info {
    text-align: center;
  }
}
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.accommodation-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.accommodation-card:hover {
  transform: scale(1.02);
}

.accommodation-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.accommodation-card h3 {
  font-size: 1.3rem;
  margin: 10px 15px 0;
  color: #014A52;
}

.accommodation-card p {
  font-size: 0.95rem;
  margin: 5px 15px;
  color: #333;
}
