/* ============================================
   FOOTER — simple copyright bar
   (full footer layout kept for future use)
   ============================================ */

/* ── Simple footer — black bar, copyright only ── */
.footer-simple {
  background: var(--c-bg-dark);
  padding: var(--s-4) 0;
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Full footer (for future use) ── */
.site-footer {
  background: var(--c-bg-dark);
  color: rgba(255,255,255,0.65);
  padding: var(--s-12) 0 var(--s-6);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  padding-bottom: var(--s-10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-nav__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--s-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer-nav__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}

.footer-nav__link:hover { color: var(--c-green); }

.footer-social {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.footer-social__link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: background var(--ease), color var(--ease);
  text-decoration: none;
}

.footer-social__link:hover {
  background: var(--c-green);
  color: var(--c-white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-6);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

/* ── Responsive ── */
@media (min-width: 640px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--s-10);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================
   FOOTER V2 вЂ” reference layout, our styles
   Resort page only for now.
   ============================================ */

.footer-v2 {
  background: #F7FAFC; /* same light blue-gray tint as the header top bar */
  padding: var(--s-10) 0 0;
}

.fv2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  padding-bottom: var(--s-10);
}

/* в”Ђв”Ђ Brand block в”Ђв”Ђ */
.fv2-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.fv2-brand__logo-img {
  height: 60px;
  width: auto;
  display: block;
  transition: opacity var(--ease);
}

.fv2-brand a:hover .fv2-brand__logo-img {
  opacity: 0.9;
}

/* в”Ђв”Ђ Nav lists в”Ђв”Ђ */
.fv2-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.fv2-nav__link {
  font-size: var(--text-sm);
  color: var(--c-text-primary);
  transition: color var(--ease);
}

.fv2-nav__link:hover { color: var(--c-blue); }

.fv2-nav__list--muted .fv2-nav__link {
  color: var(--c-text-body);
  font-weight: 400;
}

.fv2-nav__list--muted .fv2-nav__link:hover { color: var(--c-blue); }

.fv2-nav__list--bold .fv2-nav__link {
  font-weight: 700;
}

/* в”Ђв”Ђ Social icons в”Ђв”Ђ */
.fv2-social {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: fit-content;
}

.fv2-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-green);
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.fv2-social__link:hover {
  background: var(--c-green-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.28);
  transform: scale(1.12);
}

.fv2-social__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

/* LinkedIn glyph is bottom-heavy (dot sits above the wider "in" body) вЂ”
   nudge it up slightly so its visual weight centers in the circle. */
.fv2-social__icon--linkedin {
  transform: translateY(-1px);
}

/* в”Ђв”Ђ Address в”Ђв”Ђ */
.fv2-address {
  font-size: var(--text-sm);
  color: #9199a3;
  line-height: 1.5;
}

.fv2-address strong {
  display: block;
  color: #8e98a5;
}

/* в”Ђв”Ђ Contact в”Ђв”Ђ */
.fv2-contact {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--s-6);
}

.fv2-contact-bar {
  width: 100%;
  padding: var(--s-6) 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
}

.fv2-contact__item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-text-primary);
  white-space: nowrap;
  transition: color var(--ease);
}

.fv2-contact__item:hover {
  color: var(--c-blue);
}

.fv2-contact__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

/* в”Ђв”Ђ Ukraine bar в”Ђв”Ђ */
.fv2-ukraine {
  background: var(--c-white);
  padding: var(--s-3) 0;
  text-align: center;
}

.fv2-ukraine__img {
  height: 32px;
  width: auto;
  display: inline-block;
}

/* в”Ђв”Ђ Responsive в”Ђв”Ђ */
@media (min-width: 640px) {
  .fv2-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .fv2-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: var(--s-8);
  }
}
