/* ===== БАЗА ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f7fb;
  color: #222;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 15px;
}

/* ===== ЗАГОЛОВКИ ===== */
h1 {
  text-align: center;
}

h2 {
  margin-top: 0;
  color: #2b5cff;
}

h3 {
  margin-top: 15px;
}

/* ===== БЛОКИ ===== */
.tour,
.card,
.gallery,
.info {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ===== ЦЕНА ===== */
.price {
  font-weight: bold;
  color: #1a7f37;
  margin: 10px 0;
}

/* ===== СПИСКИ ===== */
ul {
  padding-left: 20px;
}

/* ===== КНОПКИ ===== */
.btn,
.call-btn {
  display: inline-block;
  padding: 12px 16px;
  background: #1a7f37;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  margin-top: 10px;
}

.btn:hover,
.call-btn:hover {
  background: #14632a;
}

/* фикс кнопка */
.call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* ===== ГАЛЕРЕЯ ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

/* ===== ТЕКСТ ===== */
.contact {
  margin-top: 15px;
  font-weight: bold;
}

.note {
  margin-top: 10px;
  color: #555;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .call-btn {
    left: 20px;
    right: 20px;
    text-align: center;
    border-radius: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}