/**
 * Park Rekreacji Prugar
 * Cleaned stylesheet based on the Instant BootstrapMade template.
 * Original template: https://bootstrapmade.com/newtemplate-bootstrap-website-template/
 */

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Raleway", sans-serif;

  --background-color: #1e3821;
  --default-color: #f8f8f8;
  --heading-color: #ffffff;
  --accent-color: #ede05a;
  --surface-color: #324f37;
  --contrast-color: #ffffff;

  --nav-color: #f8f8f8;
  --nav-hover-color: #ede05a;
  --nav-mobile-background-color: #1e3821;
  --nav-dropdown-background-color: #1e3821;
  --nav-dropdown-color: #f8f8f8;
  --nav-dropdown-hover-color: #ede05a;

  scroll-behavior: smooth;
}

.light-background {
  --background-color: #1e3821;
  --surface-color: #324f37;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.index-page .main > section:first-child {
  padding-top: 130px;
}

@media (max-width: 1199px) {
  .index-page .main > section:first-child {
    padding-top: 100px;
  }
}

/*--------------------------------------------------------------
# Section titles
--------------------------------------------------------------*/
.section-title {
  position: relative;
  padding-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  position: relative;
  font-size: 32px;
  font-weight: 700;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.section-title h2::before {
  margin: 0 15px 10px 0;
}

.section-title h2::after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);

  z-index: 997;
  padding: 15px 0;
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
}

.header .logo {
  line-height: 1;
}

.scrolled .header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 15px;
    color: var(--nav-color);
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    margin-left: 5px;
    font-size: 12px;
    line-height: 0;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    position: absolute;
    z-index: 99;
    top: 130%;
    left: 14px;
    display: block;
    visibility: hidden;
    min-width: 200px;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    background: var(--nav-dropdown-background-color);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    text-transform: none;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  .header .logo {
    order: 1;
  }

  .header .header-actions {
    order: 2;
    margin-left: auto;
  }

  .header .navmenu {
    order: 3;
  }

  .mobile-nav-toggle {
    margin-right: 10px;
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    z-index: 9997;
    padding: 0;
  }

  .navmenu ul {
    position: absolute;
    z-index: 9998;
    inset: 60px 20px 20px;
    display: none;
    padding: 10px 0;
    margin: 0;
    overflow-y: auto;
    list-style: none;
    background-color: var(--nav-mobile-background-color);
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: var(--nav-dropdown-color);
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: 5px;
    color: inherit;
    font-size: 12px;
    line-height: 0;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    transition: 0.3s;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover,
  .navmenu .active i,
  .navmenu .active:focus i {
    color: var(--contrast-color);
    background-color: var(--accent-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown ul {
    position: static;
    z-index: 99;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: absolute;
    z-index: 9999;
    top: 15px;
    right: 15px;
    margin-right: 0;
    color: #ffffff;
    font-size: 32px;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Language dropdown
--------------------------------------------------------------*/
.header .header-actions {
  display: flex;
  align-items: center;
  margin-left: 24px;
}

.header .language-dropdown {
  position: relative;
}

.header .language-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 5px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.18);
  border: 4px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.header .language-toggle::after {
  display: none;
}

.header .language-toggle:hover,
.header .language-toggle[aria-expanded="true"] {
  background-color: rgba(255, 255, 255, 0.28);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.header .current-language-flag {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.header .language-dropdown .dropdown-menu {
  z-index: 1000;
  min-width: 175px;
  padding: 8px;
  margin-top: 10px;
  background-color: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header .language-option {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 9px 10px;
  color: #343841;
  font-size: 15px;
  background-color: transparent;
  border: 0;
  border-radius: 5px;
  transition: 0.2s ease;
}

.header .language-option img {
  width: 25px;
  height: 17px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.header .language-option:hover,
.header .language-option:focus {
  color: #343841;
  background-color: #f1f1f1;
}

.header .language-option.active {
  color: #343841;
  background-color: color-mix(in srgb, var(--accent-color), transparent 82%);
}

@media (max-width: 1200px) {
  .header .language-toggle {
    width: 40px;
    height: 40px;
    padding: 4px;
  }
}

/*--------------------------------------------------------------
# About / main introduction
--------------------------------------------------------------*/
.about {
  position: relative;
}

.about .image-wrapper {
  position: relative;
  overflow: visible;
  border-radius: 22px;
  filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.16));
  transition: transform 0.35s ease;
}

.about .image-wrapper:hover {
  transform: translateY(-6px);
}

.about .image-wrapper img {
  display: block;
  width: 100%;
}

.about .about-location-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  color: #1e3821;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.about .about-location-badge i {
  color: #1e3821;
  font-size: 1.45rem;
}

.about .about-location-badge strong,
.about .about-location-badge span {
  display: block;
}

.about .about-location-badge strong {
  font-size: 0.95rem;
}

.about .about-location-badge span {
  margin-top: 1px;
  color: #526354;
  font-size: 0.78rem;
}

.about .about-content {
  padding-left: 12px;
}

.about .about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about .about-eyebrow i {
  font-size: 1rem;
}

.about .about-content h1 {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--heading-color);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.about .about-lead {
  max-width: 690px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about .about-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  padding: 16px 19px;
  margin-top: 24px;
  color: var(--default-color);
  background:
    color-mix(in srgb, var(--surface-color), transparent 4%);
  border: 1px solid
    color-mix(in srgb, var(--accent-color), transparent 68%);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.09);
  transition: 0.3s ease;
}

.about .about-rating:hover {
  color: var(--default-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.14);
}

.about .about-rating-score {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex: 0 0 auto;
  padding-right: 18px;
  border-right: 1px solid
    color-mix(in srgb, var(--default-color), transparent 84%);
}

.about .about-rating-score strong {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.about .about-rating-score span {
  color:
    color-mix(in srgb, var(--default-color), transparent 38%);
  font-size: 0.8rem;
}

.about .about-rating-content {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.about .about-rating-stars {
  display: flex;
  gap: 2px;
  flex: 0 0 auto;
  color: #f5c542;
  font-size: 0.9rem;
}

.about .about-rating-content strong,
.about .about-rating-content span {
  display: block;
}

.about .about-rating-content strong {
  margin-bottom: 3px;
  color: var(--heading-color);
  font-size: 0.94rem;
  font-weight: 700;
}

.about .about-rating-content span {
  color:
    color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.78rem;
  line-height: 1.4;
}

.about .about-rating-arrow {
  margin-left: auto;
  flex: 0 0 auto;
  color: var(--accent-color);
  font-size: 1.05rem;
}

.about .about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.about .about-stat {
  padding: 17px 14px;
  text-align: center;
  background: color-mix(in srgb, var(--surface-color), transparent 6%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.about .about-stat strong,
.about .about-stat span {
  display: block;
}

.about .about-stat strong {
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: 750;
  line-height: 1.1;
}

.about .about-stat span {
  margin-top: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-size: 0.78rem;
  font-weight: 600;
}

.about .about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about .about-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 23px;
  font-weight: 650;
  border-radius: 50px;
}

.about .about-actions .btn-primary {
  color: #1e3821;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.about .about-actions .btn-primary:hover {
  color: #1e3821;
  background: color-mix(in srgb, var(--accent-color), white 12%);
  border-color: color-mix(in srgb, var(--accent-color), white 12%);
}

.about .about-actions .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.about .about-actions .btn-outline-primary:hover {
  color: #1e3821;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.about .about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.about .about-tags span {
  padding: 7px 11px;
  color: color-mix(in srgb, var(--default-color), transparent 14%);
  font-size: 0.76rem;
  font-weight: 600;
  background: color-mix(in srgb, var(--background-color), transparent 24%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 50px;
}

@media (max-width: 991px) {
  .about .image-wrapper {
    max-width: 680px;
    margin: 0 auto 38px;
  }

  .about .about-content {
    max-width: 760px;
    padding-left: 0;
    margin: 0 auto;
    text-align: center;
  }

  .about .about-content h1,
  .about .about-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .about .about-eyebrow,
  .about .about-actions,
  .about .about-tags {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .about .about-content h1 {
    font-size: 2.2rem;
  }

  .about .about-location-badge {
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }

  .about .about-stats {
    grid-template-columns: 1fr;
  }

  .about .about-actions {
    flex-direction: column;
  }

  .about .about-actions .btn {
    width: 100%;
  }

  .about .about-rating {
  align-items: flex-start;
  gap: 13px;
  padding: 15px;
  text-align: left;
}

.about .about-rating-score {
  padding-right: 13px;
}

.about .about-rating-score strong {
  font-size: 1.55rem;
}

.about .about-rating-content {
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
}

.about .about-rating-arrow {
  display: none;
}

}

/*--------------------------------------------------------------
# Offer
--------------------------------------------------------------*/
.offer {
  position: relative;
}

.offer .offer-intro {
  padding: 40px;
  margin-bottom: 45px;
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--surface-color), transparent 3%),
      color-mix(in srgb, var(--background-color), var(--surface-color) 55%));
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 76%);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.offer .offer-eyebrow,
.offer .offer-heading > span,
.offer .offer-extra span,
.offer .offer-cta-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-color);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.offer .offer-intro h3 {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 750;
}

.offer .offer-intro p {
  max-width: 800px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  font-size: 1rem;
  line-height: 1.78;
}

.offer .offer-badges {
  display: grid;
  gap: 12px;
}

.offer .offer-badges span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  font-weight: 650;
  background: color-mix(in srgb, var(--background-color), transparent 24%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
}

.offer .offer-badges i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.offer .offer-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.offer .offer-heading h3 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 750;
}

.offer .offer-heading p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  line-height: 1.7;
}

.offer .offer-activities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.offer .offer-activity {
  position: relative;
  display: flex;
  gap: 20px;
  min-height: 235px;
  padding: 28px;
  overflow: hidden;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.075);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.offer .offer-activity::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 135px;
  height: 135px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.offer .offer-activity:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 56%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.offer .offer-activity:hover::after {
  transform: scale(1.4);
}

.offer .offer-activity-icon {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 60px;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--accent-color);
  background: color-mix(
    in srgb,
    var(--accent-color),
    transparent 90%
  );
  border: 1px solid color-mix(
    in srgb,
    var(--accent-color),
    transparent 50%
  );
  border-radius: 50%;
  transition: 0.3s ease;
}

.offer .offer-icon-svg {
  width: 34px;
  height: 34px;
  color: inherit;
}

.offer .offer-activity:hover .offer-activity-icon {
  border-color: var(--accent-color);
  background: color-mix(
    in srgb,
    var(--accent-color),
    transparent 82%
  );
  transform: scale(1.06);
}

.offer .offer-activity-content {
  position: relative;
  z-index: 1;
}

.offer .offer-activity h4 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  font-weight: 750;
}

.offer .offer-activity p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 0.94rem;
  line-height: 1.72;
}

.offer .offer-meta {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-color);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.offer .offer-extras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.offer .offer-extra {
  display: flex;
  gap: 17px;
  min-height: 220px;
  padding: 28px;
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 16%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
}

.offer .offer-extra-featured {
  background:
    linear-gradient(145deg,
      color-mix(in srgb, var(--surface-color), var(--accent-color) 8%),
      var(--surface-color));
  border-color: color-mix(in srgb, var(--accent-color), transparent 56%);
}

.offer .offer-extra-icon {
  display: flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--accent-color);
  font-size: 1.25rem;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 14px;
}

.offer .offer-extra h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  font-weight: 750;
}

.offer .offer-extra p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 0.91rem;
  line-height: 1.68;
}

.offer .offer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 34px;
  margin-top: 34px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 62%);
  border-radius: 18px;
}

.offer .offer-cta h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 750;
}

.offer .offer-cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.offer .btn {
  padding: 11px 22px;
  font-weight: 650;
  border-radius: 50px;
}

.offer .btn-primary {
  color: #1e3821;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.offer .btn-primary:hover {
  color: #1e3821;
  background: color-mix(in srgb, var(--accent-color), white 12%);
  border-color: color-mix(in srgb, var(--accent-color), white 12%);
}

.offer .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.offer .btn-outline-primary:hover {
  color: #1e3821;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 991px) {
  .offer .offer-intro {
    padding: 32px;
  }

  .offer .offer-activities-grid {
    grid-template-columns: 1fr;
  }

  .offer .offer-extras-grid {
    grid-template-columns: 1fr;
  }

  .offer .offer-extra {
    min-height: auto;
  }

  .offer .offer-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .offer .offer-intro,
  .offer .offer-activity,
  .offer .offer-extra,
  .offer .offer-cta {
    padding: 24px 21px;
  }

  .offer .offer-activity {
    flex-direction: column;
    min-height: auto;
  }

  .offer .offer-extra {
    flex-direction: column;
  }

  .offer .offer-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .offer .offer-cta-actions .btn {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Price list
--------------------------------------------------------------*/
.pricing .pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
}

.pricing .pricing-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.pricing .price-list-card {
  max-width: 900px;
  padding: 0;
  margin: 0 auto;
}

.pricing .price-list-item {
  padding: 22px 30px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 88%);
}

.pricing .price-list-item:nth-child(even) {
  background-color: color-mix(
    in srgb,
    var(--surface-color),
    var(--background-color) 18%
  );
}

.pricing .price-list-item:last-child {
  border-bottom: 0;
}

.pricing .price-list-item h3 {
  margin: 0 0 12px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 700;
}

.pricing .price-list-item.single-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.pricing .price-list-item.single-price h3 {
  margin-bottom: 0;
}

.pricing .price-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 4px 0;
}

.pricing .price-line span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.pricing .price-line strong,
.pricing .single-price strong {
  color: var(--heading-color);
  font-weight: 600;
  white-space: nowrap;
}

.pricing .price-note {
  margin: 10px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
}

@media (max-width: 575px) {
  .pricing .price-list-item {
    padding: 20px;
  }

  .pricing .price-list-item.single-price {
    display: block;
  }

  .pricing .price-list-item.single-price h3 {
    margin-bottom: 8px;
  }

  .pricing .price-line {
    grid-template-columns: 1fr;
    gap: 2px;
    margin-bottom: 8px;
  }

  .pricing .price-line strong,
  .pricing .single-price strong {
    white-space: normal;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-2 {
  overflow: hidden;
}

.contact-2 .info-box {
  height: 100%;
  padding: 30px;
  color: var(--default-color);
  text-align: center;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-2 .info-box:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.contact-2 .info-box i {
  display: inline-block;
  padding: 15px;
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 32px;
  line-height: 1;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
}

.contact-2 .info-box h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.contact-2 .info-box p {
  padding: 0;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
}

.contact-2 .map-container {
  position: relative;
  height: 0;
  padding-bottom: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-2 .map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.contact-2 .php-email-form {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-2 .php-email-form .form-control {
  padding: 15px;
  font-size: 14px;
  border: 1px solid #ced4da;
  border-radius: 10px;
  transition: all 0.3s;
}

.contact-2 .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem
    color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact-2 .php-email-form .form-control::placeholder {
  color: #adb5bd;
}

.contact-2 .php-email-form textarea.form-control {
  min-height: 120px;
}

.contact-2 .php-email-form button[type="submit"] {
  padding: 12px 34px;
  color: var(--contrast-color);
  font-weight: 500;
  background: var(--accent-color);
  border: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.contact-2 .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.05);
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 500;
  text-align: center;
  border-radius: 10px;
}

.php-email-form .loading {
  color: var(--accent-color);
  background: #ffffff;
}

.php-email-form .loading::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: form-loading 1s linear infinite;
}

.php-email-form .error-message {
  color: #ffffff;
  background: #ed3c0d;
}

.php-email-form .sent-message {
  color: #ffffff;
  background: #18d26e;
}

@keyframes form-loading {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.contact-2 .social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact-2 .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--accent-color);
  font-size: 18px;
  background: var(--surface-color);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-2 .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .contact-2 .info-box {
    padding: 20px;
    margin-bottom: 20px;
  }

  .contact-2 .map-container {
    padding-bottom: 350px;
  }

  .contact-2 .php-email-form {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .contact-2 .info-box {
    padding: 15px;
  }

  .contact-2 .info-box i {
    padding: 12px;
    font-size: 28px;
  }

  .contact-2 .info-box h3 {
    font-size: 18px;
  }

  .contact-2 .map-container {
    padding-bottom: 300px;
  }

  .contact-2 .social-links {
    gap: 12px;
  }

  .contact-2 .social-links a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  position: relative;
  padding: 38px 0 0;
  color: var(--default-color);
  background:
    color-mix(in srgb, var(--background-color), black 7%);
  border-top: 3px solid var(--accent-color);
}

.footer .footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) auto minmax(240px, 0.9fr);
  align-items: center;
  gap: 50px;
  padding-bottom: 34px;
}

.footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--heading-color);
}

.footer .footer-brand img {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  object-fit: contain;
}

.footer .footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer .footer-brand strong {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer .footer-brand span {
  max-width: 290px;
  color:
    color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}

.footer .footer-nav a {
  position: relative;
  padding: 5px 0;
  color:
    color-mix(in srgb, var(--default-color), transparent 15%);
  font-weight: 500;
}

.footer .footer-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.footer .footer-nav a:hover {
  color: var(--accent-color);
}

.footer .footer-nav a:hover::after {
  transform: scaleX(1);
}

.footer .footer-quick-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer .footer-quick-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color:
    color-mix(in srgb, var(--default-color), transparent 12%);
  line-height: 1.45;
}

.footer .footer-quick-contact i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  color: var(--accent-color);
  background:
    color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
}

.footer .footer-quick-contact a:hover {
  color: var(--accent-color);
}

.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 86%);
  color:
    color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 0.85rem;
}

.footer .footer-bottom span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer .footer-bottom i {
  color: var(--accent-color);
}

@media (max-width: 991px) {

  .footer .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer .footer-brand {
    justify-content: center;
  }

  .footer .footer-brand span {
    margin: 0 auto;
  }

  .footer .footer-quick-contact {
    align-items: center;
  }

}

@media (max-width: 767px) {

  .footer {
    padding-top: 30px;
  }

  .footer .footer-brand {
    flex-direction: column;
  }

  .footer .footer-brand img {
    width: 82px;
    height: 82px;
  }

  .footer .footer-nav {
    gap: 8px 18px;
  }

  .footer .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

}

/*--------------------------------------------------------------
# Scroll-to-top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  z-index: 99999;
  right: 15px;
  bottom: -15px;
  display: flex;
  visibility: hidden;
  width: 44px;
  height: 44px;
  opacity: 0;
  background-color: var(--accent-color);
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  color: var(--contrast-color);
  font-size: 24px;
  line-height: 0;
}

.scroll-top:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.scroll-top.active {
  bottom: 15px;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Accessibility / reduced animation delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# PFR Information
--------------------------------------------------------------*/

.pfr-info {
  padding: 30px 0;
  color: #263129;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pfr-info .pfr-info-logo {
  display: block;
  width: 100%;
  max-width: 185px;
  height: auto;
  margin: 0 auto;
}

.pfr-info .pfr-info-text {
  max-width: 760px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 767px) {
  .pfr-info {
    padding: 26px 0;
  }

  .pfr-info .pfr-info-logo {
    max-width: 150px;
  }

  .pfr-info .pfr-info-text {
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}

.gallery {
  .gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;

    li {
      cursor: pointer;
      margin: 0 15px 10px;
      font-size: 16px;
      font-weight: 600;
      line-height: 1;
      color: var(--default-color);
      transition: 0.3s;

      &:hover,
      &.filter-active {
        color: var(--accent-color);
      }
    }
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 85%);
    height: 250px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    &:hover img {
      transform: scale(1.1);
    }

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 15px;
      background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 60%), transparent);
      color: var(--contrast-color);
      opacity: 0;
      transition: opacity 0.3s ease;

      h4 {
        font-size: 18px;
        margin: 0 0 5px;
        color: var(--contrast-color);
      }

      p {
        font-size: 20px;
        margin: 0;
      }
    }

    &:hover .gallery-caption {
      opacity: 1;
    }
  }
}