
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  background: #0b0f17;
  color: #fff;
}

/* ===== LOGO ===== */
.logo {
  height: 30px;          /* можно менять: 32–44 */
  display: block;
}


/* ===== HEADER ===== */
.header {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 34px;
}

/* right side */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #131a2b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-icon svg {
  width: 18px;
  height: 18px;
  stroke: #8fa3ff;
  fill: none;
  stroke-width: 1.8;
}

.header-phone {
  font-size: 13px;
  color: #8fa3ff;
  text-decoration: none;
}


/* ===== LAYOUT ===== */
.container {
  padding: 16px;
  padding-bottom: 100px; /* место под bottom bar */
}

/* ===== TOUR LIST ===== */
.tour-list {
  display: grid;
  gap: 16px;
}

/* ===== TOUR CARD (ROW STYLE) ===== */
.tour-card {
  background: #131a2b;
  border-radius: 18px;
  padding: 12px;
  cursor: pointer;
}

.tour-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tour-thumb {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  object-fit: cover;
  flex-shrink: 0;
}

.tour-meta {
  flex: 1;
}

.tour-meta h3 {
  font-size: 15px;
  margin: 0;
}

.tour-location {
  font-size: 12px;
  color: #8fa3ff;
  margin-top: 2px;
}

.tour-rating {
  font-size: 12px;
  color: #ffd166;
  margin-top: 4px;
}

.tour-price {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #4da3ff;
}

.tour-arrow {
  font-size: 28px;        /* ⬅️ больше */
  color: #8fa3ff;
  margin-top: 18px;      /* ⬅️ ниже */
  flex-shrink: 0;
}


/* ===== BOTTOM NAV ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: #0f1629;
  border-top: 1px solid #1f2a44;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 100;
}

.nav-item {
  background: none;
  border: none;
  color: #8fa3ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  cursor: pointer;
}

.nav-item svg {
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.nav-item.active {
  color: #4da3ff;
}

.hidden {
  display: none !important;
}

/* ===== HOME PAGE ===== */
.home {
  padding-bottom: 100px;
}

.home-card {
  background: #0f1629;
  border-radius: 26px;
  overflow: hidden;
}

/* image */
.home-image {
  position: relative;
  height: 360px;
}

.home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(11,15,23,0.95)
  );
}

/* icons */
.home-top-icons {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 14px;
  font-size: 18px;
  color: white;
  z-index: 2;
}

/* text on image */
.home-text {
  position: absolute;
  bottom: 24px;
  left: 16px;
  z-index: 2;
}

.home-text h2 {
  font-size: 26px;
  line-height: 1.1;
}

.home-text p {
  font-size: 13px;
  color: #cdd3f2;
  margin-top: 6px;
}

/* content */
.home-content {
  padding: 20px;
}

.home-rating {
  color: #ffd166;
  font-size: 14px;
  margin-bottom: 12px;
}

.home-rating span {
  color: #8fa3ff;
}

.home-content h3 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #8fa3ff;
  margin-bottom: 10px;
}

.home-description {
  font-size: 14px;
  line-height: 1.6;
  color: #cdd3f2;
}

/* button */
.read-more {
  margin-top: 18px;
  background: none;
  border: none;
  color: #4da3ff;
  font-weight: 600;
  cursor: pointer;
}

/* ===== MOTORBIKE CAROUSEL ===== */
.moto-section {
  margin-top: 28px;
}

.moto-title {
  font-size: 16px;
  margin-bottom: 12px;
}

.moto-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.moto-carousel::-webkit-scrollbar {
  display: none;
}

.moto-card {
  min-width: 160px;
  background: #131a2b;
  border-radius: 18px;
  padding: 12px;
  flex-shrink: 0;
}

.moto-card img {
  width: 150px;
  height: 110px;
  border-radius: 14px;
  object-fit: cover;
}

.moto-card h4 {
  margin-top: 10px;
  font-size: 14px;
}

.moto-card span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #4da3ff;
}

/* ===== GEAR COLLAGE ===== */
.gear-section {
  margin-top: 30px;
}

.gear-title {
  font-size: 16px;
  margin-bottom: 14px;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gear-card {
  position: relative;
  height: 120px;
  border-radius: 18px;
  overflow: hidden;
  background: #131a2b;
}

.gear-card.big {
  grid-row: span 2;
  height: 252px;
}

.gear-card.wide {
  grid-column: span 2;
  height: 140px;
}

.gear-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.75)
  );
}

.gear-card span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}
/* ===== KIDS ENDURO ===== */
.kids-section {
  margin-top: 28px;
}

.kids-title {
  font-size: 16px;
  margin-bottom: 14px;
}

.kids-list {
  display: grid;
  gap: 14px;
}

.kids-card {
  display: flex;
  gap: 14px;
  background: #131a2b;
  border-radius: 20px;
  padding: 12px;
  cursor: pointer;
}

.kids-card img {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

.kids-info h4 {
  font-size: 15px;
  margin: 0;
}

.kids-info p {
  font-size: 12px;
  color: #8fa3ff;
  margin-top: 4px;
}

.kids-info span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4da3ff;
}

/* ===== HEADER ===== */
.header {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 34px;
}

/* right side */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #131a2b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-icon svg {
  width: 18px;
  height: 18px;
  stroke: #8fa3ff;
  fill: none;
  stroke-width: 1.8;
}

.header-phone {
  font-size: 13px;
  color: #8fa3ff;
  text-decoration: none;
}

.kids-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


