@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900;1000&display=swap');

:root{
  --bg: #ffffff;
  --card-bg: #f0ede3;
  --white: #ffffff;
  --accent: #ffd078;
  --bg-light-gray: #f9f9f9;
  --text: #2a2a2a;
  --text2: #343434;
  --radius: 14px;
  --radius-btn: 20px;
  --shadow: 0 18px 40px rgba(0,0,0,.12);
  --shadow-card: 0 10px 25px rgba(0,0,0,.15);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; }

.container{
  width: 100%;
  padding-inline: 5%;
  margin-inline: auto;
}

.site-header{
  background: var(--white);
  padding: 18px 0;
  position: relative;
  z-index: 50;
}

.header-grid{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.brand{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.brand__img{
  display: block;
  height: 56px;
  width: auto;
}

.brand__slogan{
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.75px;
  font-weight: 400;
  color: var(--text2);
}

.top-nav{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 26px);
}

.top-nav__link{
  font-size: 17px;
  font-weight: 500;
  color: var(--text2);
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .15s ease, transform .15s ease;
}

.top-nav__link:hover{
  background: rgba(0,0,0,.05);
}

.top-nav__link--active{
  background: var(--accent);
  color: var(--text);
  padding: 12px 18px;
}

.header-actions{
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: end;
  gap: 14px;
}

.cabinet{
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  font-size: 17px;
  white-space: nowrap;
  font-weight: 500;
}

.cabinet:hover {
  border-bottom: 1px solid var(--text2) !important;
}

.cabinet__icon{
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
}

.menu-btn{
  border: 0;
  background: var(--accent);
  border-radius: 999px;
  padding: 12px 16px;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.menu-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(0,0,0,.12);
}

.menu-btn__icon{
  display: grid;
  place-items: center;
}

.menu-btn__text{
  font-size: 17px;
  font-weight: 500;
}

.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 2000;
}

.menu-panel{
  position: fixed;
  top: 64px;
  right: 16px;
  width: min(360px, calc(100vw - 32px));
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: var(--white);
  overflow: hidden;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 2001;
}

.menu-panel__head{
  background: var(--accent);
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.menu-panel__title{
  font-size: 20px;
  font-weight: 500;
}

.menu-panel__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menu-panel__body{
  padding: 14px 18px 18px;
  display: grid;
  gap: 10px;
}

.menu-item{
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 12px;
  padding: 6px 4px;
  color: var(--text2);
  border-radius: 12px;
  transition: background .12s ease;
}

.menu-item:hover{
  background: rgba(240,237,227,.7);
}

.menu-item__icon{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.menu-item__text{
  font-size: 15px;
  line-height: 1.2;
}

.is-menu-open .menu-overlay{
  opacity: 1;
  pointer-events: auto;
}

.is-menu-open .menu-panel{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.page{
  padding: 0 0 80px;
}

.hero-strip{
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
  color: var(--white);
  min-height: clamp(160px, 16vw, 260px);
  display: grid;
  align-items: center;
}

.hero-strip__bg{
  position: absolute;
  inset: -14% 0;
  background-image: url("../img/fon1.webp");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  will-change: transform;
}

.hero-strip::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, .52);
}

.hero-strip__inner{
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.hero-strip__title{
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(34px, 5vw, 72px);
  color: var(--white);
  text-align: center;
  max-width: 24ch;
}

.reviews-head{
  padding: 34px 0 18px;
  display: grid;
  justify-items: end;
}

.btn-accent{
  border: 0;
  background: var(--accent);
  color: var(--text);
  border-radius: 999px;
  padding: 16px 22px;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  font-weight: 500;
}

.btn-accent:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(0,0,0,.12);
}

.btn-accent__icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.75);
  display: grid;
  place-items: center;
  line-height: 0;
}

.btn-accent__icon svg{
  width: 16px;
  height: 16px;
}

.reviews-list{
  display: grid;
  gap: 24px;
  padding: 16px 0 0;
}

.review-card{
  background: var(--card-bg);
  border-radius: 22px;
  padding: clamp(18px, 2.4vw, 28px);
  display: grid;
  gap: 18px;
}

.review-card__head{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
}

.review-meta{
  display: grid;
  gap: 10px;
  min-width: 0;
}

.review-date{
  font-weight: 500;
  color: var(--text2);
}

.review-name{
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
}

.review-source{
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 14px;
  justify-content: start;
}

.review-google{
  display: block;
  height: 26px;
  width: auto;
}

.stars{
  display: grid;
  grid-auto-flow: column;
  gap: 4px;
  align-items: center;
  justify-content: start;
}

.star{
  width: 30px;
  height: 30px;
  display: block;
}

.star svg{
  width: 100%;
  height: 100%;
  display: block;
}

.star.is-on svg use{
  fill: #2a2a2a;
}

.star.is-off svg use{
  fill: transparent;
  stroke: #2a2a2a;
  stroke-width: 1.6;
}

.review-text{
  margin: 0;
  color: var(--text2);
  line-height: 1.55;
  max-width: 100%;
}

.review-text.is-collapsed{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__foot{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.review-more{
  width: max-content;
  color: var(--text2);
  border-bottom: 1px solid var(--text2)!important;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  justify-self: start;
}

.btn-pill{
  border: 0;
  background: var(--accent);
  color: var(--text);
  border-radius: 999px;
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 500;
  width: max-content;
}

.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 3000;
}

.modal.is-open{
  display: block;
}

.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
}

.modal__dialog{
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(980px, calc(100vw - 32px));
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal__inner{
  padding: clamp(18px, 2.4vw, 32px);
  display: grid;
  gap: 22px;
}

.modal__head{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px;
}

.modal__title{
  margin: 0;
  font-size: clamp(23px, 3.4vw, 44px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.modal__close{
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.modal__close svg{
  width: 22px;
  height: 22px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.field{
  display: grid;
  gap: 8px;
}

.label{
  font-weight: 700;
  font-size: 18px;
}

.req{
  color: #d91515;
  padding-left: 4px;
}

.input, .textarea{
  width: 100%;
  border: 1px solid rgba(42,42,42,.22);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
  outline: none;
  background: #fff;
  font-family: inherit;
}

.textarea{
  min-height: 100px;
  resize: vertical;
}

.rating{
  display: grid;
  gap: 10px;
  justify-content: start;
}

.rating-row{
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 10px;
  align-items: center;
  direction: rtl;
}

.rating-row label{
  direction: ltr;
}

.rating input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating label{
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.rating label svg{
  width: 28px;
  height: 28px;
  display: block;
}

.rating label svg use{
  fill: transparent;
  stroke: #2a2a2a;
  stroke-width: 1.6;
}

.rating-row input:checked ~ label svg use,
.rating-row label:hover ~ label svg use,
.rating-row label:hover svg use{
  fill: #2a2a2a;
  stroke: #2a2a2a;
}

.checks{
  display: grid;
  gap: 10px;
}

.check{
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text2);
}

.check input{
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.check a{
    border-bottom: 1px solid;
  text-underline-offset: 5px;
}

.modal__actions{
  display: grid;
  justify-items: start;
  padding-top: 16px;
}

.btn-submit{
  border: 0;
  background: var(--accent);
  color: var(--text);
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 22px;
  font-weight: 500;
  width: min(520px, 100%);
  cursor: pointer;
}

.section-block {
  padding: 40px 0;
  overflow: hidden;
}

.section-title {
  font-size: 60px;
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 60px;
  text-align: center;
}

.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-wrapper {
  overflow: hidden;
  width: calc(100% - 10%);
  margin: 0 5%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  width: max-content;
}

.carousel-slide {
  flex-shrink: 0;
  width: calc((81vw - 60px) / 3);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s, transform 0.15s;
  display: block;
}

.carousel-nav img {
  display: block;
  width: 50px;
  height: 50px;
}

.carousel-nav:hover { opacity: 0.8; }
.carousel-nav:active { transform: translateY(-50%) scale(0.95); }

.carousel-nav.prev { left: 0px; }
.carousel-nav.next { right: 0px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(42, 42, 42, 0.2);
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: var(--accent);
  transform: scale(1.2);
}

.card-route, .card-camp {
  display: flex;
  flex-direction: column;
  background-color: var(--card-bg);
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  box-shadow: none;
}

.card-img-area, .camp-img-area {
  height: 292px;
  width: 100%;
  position: relative;
  background-color: #ddd;
}

.card-img-area img, .camp-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge-days {
  position: absolute;
  bottom: -30px;
  left: 20px;
  width: 69px;
  height: 78px;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
  z-index: 2;
  border-radius: 8px;
}

.badge-text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

.badge-num {
  font-weight: 700;
  display: block;
  font-size: 30px;
}

.card-body, .camp-body {
  padding: 40px 30px 30px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.camp-body { padding: 30px; }

.card-title, .camp-title {
  font-size: 18px;
  color: var(--text2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  margin-bottom: 15px;
  display: block;
  font-weight: 700;
}

.card-desc {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 10px;
  flex-grow: 1;
  color: var(--text2);
}

.camp-location {
  font-size: 12px;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-grow: 1;
  color: var(--text2);
  line-height: 1.4;
  font-weight: 500;
}

.camp-location svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--text);
}

.camp-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.camp-icons img {
  width: 24px;
  height: 24px;
  display: block;
  opacity: 0.8;
}

.btn-card {
  background-color: var(--accent);
  border-radius: 20px;
  height: 61px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  border: none;
  cursor: pointer;
  gap: 10px;
  width: fit-content;
  transition: transform 0.2s;
  text-decoration: none;
}

.btn-card:hover {
  transform: translateX(5px);
}

.btn-card img {
  width: 24px;
  height: auto;
}

@media (max-width: 1400px) {
  .carousel-nav.prev { left: 10px; background: rgba(255,255,255,0.7); border-radius: 50%; }
  .carousel-nav.next { right: 10px; background: rgba(255,255,255,0.7); border-radius: 50%; }
}

@media (max-width: 980px){
  .header-grid{
    grid-template-columns: 1fr auto;
  }

  .carousel-nav {
    display: none;
  }

  .carousel-wrapper {
    width: 100% !important;
    margin: 0 !important;
    padding-bottom: 0px;
  }
  .carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
  .carousel-track {
    width: max-content;
    padding-inline: 0;
  }

  .dot {
    width: 14px;
    height: 14px;
    margin: 0 4px;
  }

  .top-nav{
    display: none;
  }

  .cabinet__text{
    display: none;
  }

  .menu-panel{
    top: 58px;
    right: 16px;
  }

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

  .footer-meta{
    justify-self: start;
  }

  .btn-submit{
    width: 100%;
  }

  .review-card__head{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .review-card__foot{
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: start;
  }

  .reviews-head{
    justify-items: start;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

@media (max-width: 640px){
  .carousel-track {
    gap: 16px;
    padding-inline: 0px;
  }
}

@media (max-width: 520px){
  .btn-accent {
    width: 100%;
    justify-content: center;
  }
  .container{
    padding-inline: 16px;
  }

  .site-header{
    padding: 14px 0;
  }

  .brand__slogan{
    display: none;
  }

  .brand__img{
    height: 48px;
  }

  .menu-btn{
    padding: 10px 14px;
    gap: 8px;
  }

  .menu-panel{
    width: calc(100vw - 32px);
    right: 16px;
    top: 54px;
  }

  .hero-strip{
    min-height: 160px;
  }

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

  .footer-meta{
    justify-self: start;
  }

  .site-footer {
    padding: 20px 0 10px;
  }

  .footer {
    gap: 20px;
  }

  .footer__brand {
    gap: 12px;
  }

  .footer__logo {
    height: 40px;
  }

  .footer__contacts {
    gap: 12px;
  }

  .footer__socials {
    gap: 12px;
  }

  .footer__legal {
    gap: 8px;
  }
}

.site-footer{
  background: #343434;
  color: #ffffff;
  padding: 26px 0;
}

.footer{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
}

.footer__brand{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.footer__logo{
  display: block;
  height: 56px;
  width: auto;
}

.footer__slogan{
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.75px;
  font-weight: 400;
  color: #ffffff;
  opacity: 1;
}

.footer__right{
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer__contacts{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer__phone,
.footer__email{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.footer__email{
  white-space: normal;
}

.footer__email-text{
  word-break: break-word;
}

.footer__phone-ico,
.footer__email-ico{
  display: flex;
  align-items: center;
  opacity: .95;
}

.footer__phone-ico img,
.footer__email-ico img {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__socials{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 18px;
  align-items: center;
}

.footer__social{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.footer__social-ico{
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.footer__social-text{
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.footer__legal{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 36px;
  align-items: center;
}

.footer__legal-link{
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  opacity: .92;
}

.footer__phone:hover,
.footer__email:hover,
.footer__social:hover,
.footer__legal-link:hover{
  opacity: .85;
}

@media (max-width: 980px){
  .footer{
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer__right{
    justify-items: start;
  }

  .footer__contacts{
    justify-content: flex-start;
  }

  .footer__socials{
    grid-auto-flow: row;
    justify-items: start;
    gap: 10px;
  }

  .footer__legal{
    grid-auto-flow: row;
    gap: 10px;
    justify-items: start;
  }
}

@media (max-width: 520px){
  .footer__logo{ height: 48px; }
  .footer__slogan{ font-size: 16px; line-height: 18px; }

  .footer__social-text{ display: none; }
  .footer__social{ gap: 0; }
  .footer__socials{ grid-auto-flow: column; gap: 14px; }

  .footer__legal-link{ font-size: 16px; }
}

@media (max-width: 1480px) and (min-width: 1301px){
  .top-nav__link{
    font-size: 17px;
    padding: 10px 10px !important;
  }
}

@media (max-width: 1300px) and (min-width: 1201px){
  .top-nav__link{
    font-size: 15px;
    padding: 8px 0px;
  }
}

@media (max-width: 1480px) and (min-width: 1201px){
  .top-nav{
    gap: 12px;
  }

  .brand__slogan {
    font-size: 16px;
  }
  .container {
    padding-inline: 2%;
  }

  .top-nav__link--active{
    padding: 10px 14px;
  }

  .header-grid{
    gap: 16px;
  }

  .header-actions{
    gap: 10px;
  }
}

@media (max-width: 1200px){
  .top-nav{
    display: none;
  }
}

.routes-hub {
  padding: clamp(40px, 5vw, 80px) 0;
  background-color: var(--bg);
}

.routes-hub__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.routes-hub__title {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 20px;
}

.routes-hub__desc {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text2);
  line-height: 1.5;
  margin: 0;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.route-grid-item {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.route-grid-item:hover .btn-card {
  transform: translateX(5px);
}

.route-grid-item:hover {
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .routes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .routes-hub__header {
    margin-bottom: 30px;
  }
}

.campings-hub {
  padding: clamp(40px, 5vw, 80px) 0;
  background-color: var(--bg);
}

.campings-hub__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.campings-hub__title {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 20px;
}

.campings-hub__desc {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text2);
  line-height: 1.5;
  margin: 0;
}

.campings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.camping-grid-item {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.camping-grid-item:hover .btn-card {
  transform: translateX(5px);
}

.camping-grid-item:hover {
  transform: translateY(-4px);
}

.camp-btn-margin {
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .campings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .campings-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .campings-hub__header {
    margin-bottom: 30px;
  }
}

.menu-panel__selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 4px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 6px;
}

.custom-dropdown {
  position: relative;
}

.custom-dropdown__toggle {
  background: transparent;
  border: 1px solid rgba(42, 42, 42, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 6px;
  transition: background 0.15s, border-color 0.15s;
}

.custom-dropdown__toggle:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(42, 42, 42, 0.4);
}

.custom-dropdown__menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 6px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 2005;
}

.custom-dropdown.is-open .custom-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown__item {
  background: transparent;
  border: none;
  padding: 8px 12px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.custom-dropdown__item:hover {
  background: rgba(0,0,0,0.04);
}

.custom-dropdown__item.is-active {
  background: var(--accent);
  color: var(--text);
}

.blog-hub {
  padding: clamp(40px, 5vw, 80px) 0;
  background-color: var(--bg);
}

.blog-hub__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.blog-hub__title {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 20px;
}

.blog-hub__desc {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text2);
  line-height: 1.5;
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-grid-item {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-blog {
  display: flex;
  flex-direction: column;
  background-color: var(--card-bg);
  border-radius: 0;
  overflow: hidden;
  height: 100%;
}

.card-blog .card-img-area {
  height: 260px;
  width: 100%;
  position: relative;
  background-color: #ddd;
}

.card-blog .card-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  opacity: 0.75;
  margin-bottom: 12px;
}

.card-views {
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-views svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


.card-blog .card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-grid-item:hover .btn-card {
  transform: translateX(5px);
}

.blog-grid-item:hover {
  transform: translateY(-4px);
}
.section-camping .btn-card {
    margin-top: 16px;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-hub__header {
    margin-bottom: 30px;
  }
}
.ql-align-justify {
    text-align: justify !important;
}
.ql-align-center {
    text-align: center !important;
}
.ql-align-right {
    text-align: right !important;
}
.ql-align-left {
    text-align: left !important;
}
