/* ==== CSS RESET & BASE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background-color: #fff;
  color: #192422;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
a {
  color: #024856;
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: #efa428;
  outline: none;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #0c242a;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.18; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

small { font-size: 0.88rem; }
strong { font-weight: 700; color: #024856; }

button, input[type="button"], input[type="submit"], input[type="reset"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  background: none;
  cursor: pointer;
}

/* ==== LAYOUT UTILITIES ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #f7fafc;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(2, 72, 86, 0.05);
  padding: 32px 22px;
  transition: box-shadow .21s;
}
.card:hover { box-shadow: 0 6px 24px rgba(2, 72, 86, 0.11); }
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f7fafc;
  box-shadow: 0 1px 8px rgba(2, 72, 86, 0.07);
  border-radius: 16px;
  margin-bottom: 20px;
  min-width: 0;
  color: #192422;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/****** HERO SECTION ******/
.hero {
  background: #f7fafc;
  padding: 58px 0 48px 0;
  margin-bottom: 48px;
}
.hero h1 {
  color: #024856;
}
.hero p {
  font-size: 1.125rem;
  color: #0c242a;
  margin-bottom: 32px;
}

/****** NAVIGATION HEADER ******/
header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 46px;
}
header nav {
  display: flex;
  gap: 14px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #024856;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .23s, color .21s;
  position: relative;
}
header nav a.cta {
  background: #024856;
  color: #fff;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 32px;
  margin-left: 12px;
  box-shadow: 0 1px 6px rgba(2,72,86, 0.07);
  transition: background .21s, color .19s, box-shadow .21s;
}
header nav a.cta:hover,
header nav a.cta:focus {
  background: #efa428;
  color: #024856;
  box-shadow: 0 2px 12px rgba(2,72,86,0.13);
}
header nav a:hover, header nav a:focus {
  background: #f7fafc;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #024856;
  cursor: pointer;
  padding: 8px;
  border-radius: 7px;
  margin-left: 20px;
  transition: background .19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f7fafc;
}

/***** MOBILE NAVIGATION (SLIDE-IN) *****/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1005;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,0,.3,1);
  box-shadow: -2px 0px 28px rgba(2,72,86,.12);
  display: flex;
  flex-direction: column;
  padding-top: 28px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #024856;
  cursor: pointer;
  border-radius: 6px;
  padding: 8px 10px;
  transition: background .14s;
  z-index: 1010;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #f7fafc;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 54px;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.11rem;
  color: #024856;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color .21s, background .19s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a.cta {
  background: #024856;
  color: #fff;
  border-radius: 22px;
  padding: 10px 22px;
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(2,72,86,0.09);
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f7fafc;
  color: #efa428;
}
.mobile-nav a.cta:hover, .mobile-nav a.cta:focus {
  background: #efa428;
  color: #024856;
}

/****** CTA BUTTONS ******/
.cta {
  display: inline-block;
  background: #024856;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  border-radius: 32px;
  padding: 10px 30px;
  margin-top: 18px;
  box-shadow: 0 1px 8px rgba(2,72,86,0.09);
  transition: background .19s, color .18s, box-shadow .19s, transform .09s;
  text-align: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.cta:hover, .cta:focus {
  background: #efa428;
  color: #024856;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 3px 16px rgba(239,164,40,0.13);
}

/****** FEATURE/INSPIRATION/TEAM GRID STYLES ******/
.feature-grid, .inspiration-grid, .team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 12px;
  margin-bottom: 20px;
}
.feature-grid > div,
.inspiration-grid > div,
.team-profiles > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(2,72,86,0.06);
  padding: 24px 22px 24px 22px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 260px;
  transition: box-shadow .21s, transform .18s;
}
.feature-grid > div:hover,
.inspiration-grid > div:hover,
.team-profiles > div:hover {
  box-shadow: 0 6px 18px rgba(2,72,86,0.10);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img, .inspiration-grid img {
  margin-bottom: 14px;
  width: 44px;
  height: 44px;
}

/****** TABS, ACCORDION, LISTS ******/
.feature-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.feature-tabs button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  background: #f7fafc;
  color: #024856;
  border-radius: 12px;
  padding: 8px 26px;
  cursor: pointer;
  transition: background .16s, color .19s;
  font-weight: 500;
}
.feature-tabs button:hover, .feature-tabs button.active {
  background: #efa428;
  color: #024856;
}
.feature-descriptions > div {
  margin-bottom: 8px;
}

.faq-accordion > div {
  margin-bottom: 18px;
  background: #f7fafc;
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 1px 6px rgba(2,72,86,0.06);
}
.faq-accordion h3 {
  font-size: 1.1rem;
  color: #024856;
  margin-bottom: 6px;
}
.tips-list, .feature-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}

/****** ROUTE LIST (ON trasy-turystyczne) ******/
.route-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.route-list li {
  background: #f7fafc;
  border-radius: 13px;
  padding: 24px 20px;
  box-shadow: 0 1px 6px rgba(2,72,86,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.route-list a {
  align-self: flex-start;
  background: #024856;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 7px 22px;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 500;
  transition: background .17s, color .16s;
  margin-top: 6px;
}
.route-list a:hover, .route-list a:focus { background: #efa428; color: #024856; }

/***** CTA SECTION *****/
section.cta {
  background: #024856;
  color: #fff;
  text-align: center;
  padding: 52px 19px;
  border-radius: 26px;
  box-shadow: 0 1px 18px rgba(2,72,86,0.10);
  margin-bottom: 44px;
}
section.cta h2, section.cta p {
  color: #fff;
}
section.cta a.cta {
  background: #efa428;
  color: #024856;
  font-weight: 700;
  font-size: 1.10rem;
  margin-top: 25px;
  box-shadow: 0 3px 18px rgba(239,164,40,0.16);
}
section.cta a.cta:hover, section.cta a.cta:focus {
  background: #fff;
  color: #024856;
}

/***** TESTIMONIALS, SLIDERS *****/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #f7fafc;
  color: #1b2830;
  box-shadow: 0 1px 8px rgba(2,72,86,0.09);
  padding: 24px 20px;
  border-radius: 15px;
  min-width: 230px;
  flex: 1 1 220px;
  font-size: 1.09rem;
  align-items: flex-start;
  margin-bottom: 0;
}
.testimonial-card p {
  font-style: italic;
  color: #024856;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: 500;
  color: #192422;
}
.star-rating-summary {
  margin-top: 18px;
  color: #efa428;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/****** INSPIRATIONS & TAGS ******/
.topic-tags {
  display: flex;
  gap: 12px;
  margin: 20px 0 10px 0;
  flex-wrap: wrap;
}
.topic-tags span {
  background: #f7fafc;
  color: #024856;
  border-radius: 9px;
  padding: 5px 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
}
.quick-links {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.quick-links a {
  background: #efa428;
  color: #024856;
  border-radius: 9px;
  padding: 8px 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  transition: background .17s, color .14s;
}
.quick-links a:hover, .quick-links a:focus {
  background: #024856;
  color: #fff;
}

/****** GALLERY & USER STORIES ******/
.moment-highlights {
  background: #f7fafc;
  box-shadow: 0 1px 7px rgba(2,72,86,0.06);
  border-radius: 13px;
  padding: 22px 18px 18px 18px;
  margin-bottom: 22px;
}
.user-stories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 16px 0 20px 0;
}
.user-stories blockquote {
  background: #f7fafc;
  border-left: 4px solid #efa428;
  padding: 20px 20px 14px 14px;
  border-radius: 12px;
  color: #192422;
  font-style: italic;
  margin: 0;
}
.user-stories blockquote span {
  display: block;
  font-size: 0.97rem;
  color: #024856;
  margin-top: 8px;
  font-style: normal;
}

/****** FOOTER ******/
footer {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  margin-top: 40px;
  padding-top: 28px;
  padding-bottom: 18px;
  font-size: 0.97rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer nav a {
  color: #728189;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 0 8px;
  transition: color .18s;
}
footer nav a:hover, footer nav a:focus {
  color: #efa428;
}
.footer-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #929ba7;
  font-size: 0.96rem;
}
.footer-contact img {
  width: 17px; height: 17px;
  display: inline-block;
}
footer small { color: #aeb2b4; margin-top: 4px; }

/***** FORMS (Generic styling) *****/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f7fafc;
  margin-bottom: 16px;
  width: 100%;
  outline: none;
  transition: border .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #efa428;
}
label { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 0.97rem; margin-bottom: 4px; color: #024856; display: block; }

/***** UTILITIES *****/
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(2,72,86,0.09);
  z-index: 2100;
  padding: 22px 10vw 22px 10vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  border-top: 2px solid #f7fafc;
  animation: fadeInUpCookie .5s cubic-bezier(.34,1.3,.64,1) both;
}
@keyframes fadeInUpCookie {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-text {
  color: #024856;
  max-width: 520px;
}
.cookie-banner-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  border: none;
  border-radius: 9px;
  padding: 7px 17px;
  margin: 0;
  background: #f7fafc;
  color: #024856;
  transition: background .17s, color .16s, box-shadow .12s;
  cursor: pointer;
}
.cookie-banner button.accept {
  background: #efa428;
  color: #024856;
  font-weight: 600;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #024856;
  color: #fff;
}
.cookie-banner button.settings {
  background: #024856;
  color: #fff;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #efa428;
  color: #024856;
}
.cookie-banner button.reject {
  background: #f7fafc;
  color: #024856;
  border: 1px solid #e2e8f0;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #f0f0f0;
}

/***** COOKIE SETTINGS MODAL *****/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(2,72,86,0.28);
  align-items: center;
  justify-content: center;
  animation: fadeInModal .3s both;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; } 
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(2,72,86,0.14);
  max-width: 430px;
  width: 95vw;
  padding: 36px 28px 24px 28px;
  position: relative;
  animation: popInModal .25s cubic-bezier(.22,.71,.4,1.01) both;
}
@keyframes popInModal {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: #024856;
  margin-bottom: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 1.45rem;
  background: none;
  border: none;
  color: #024856;
  cursor: pointer;
  border-radius: 7px;
  padding: 5px 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 1.02rem;
}
.cookie-category-toggle {
  appearance: none;
  width: 34px;
  height: 20px;
  background: #f7fafc;
  border: 1px solid #bfd0d6;
  border-radius: 11px;
  position: relative;
  outline: none;
  transition: background .14s, border-color .13s;
  cursor: pointer;
}
.cookie-category-toggle:checked {
  background: #efa428;
  border-color: #efa428;
}
.cookie-category-toggle:disabled {
  background: #e2e8f0; opacity: .65; cursor: not-allowed;
}
.cookie-category-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left .15s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.cookie-category-toggle:checked::before {
  left: 17px;
}
.cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

/***** RESPONSIVE DESIGN *****/
@media (max-width: 1080px) {
  .container { max-width: 95vw; }
  .content-wrapper { max-width: 97vw; }
}
@media (max-width: 900px) {
  .feature-grid > div, .inspiration-grid > div, .team-profiles > div {
    min-width: 180px;
    max-width: 100%;
    flex-basis: 45%;
  }
}
@media (max-width: 800px) {
  .feature-grid, .inspiration-grid, .team-profiles {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container { flex-direction: row; gap: 2vw; }
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .feature-grid, .inspiration-grid, .team-profiles, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid, .footer-contact {
    flex-direction: column;
    gap: 15px;
  }
  .user-stories, .testimonials {
    flex-direction: column;
    gap: 15px;
  }
  .quick-links {
    flex-direction: column;
    gap: 11px;
  }
  .section { padding: 32px 7vw; margin-bottom: 40px; }
  section.cta {
    padding: 34px 7vw;
    border-radius: 19px;
    margin-bottom: 32px;
  }
  .hero { padding: 36px 0 28px 0; margin-bottom: 28px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 5vw; }
  .cookie-banner-actions {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 8px;
  }
}
@media (max-width: 700px) {
  .feature-grid > div, .inspiration-grid > div, .team-profiles > div {
    flex-basis: 100%;
  }
}
@media (max-width: 550px) {
  html { font-size: 14px; }
  .container, .content-wrapper { padding-left: 8px; padding-right: 8px; }
  .hero { padding: 20px 0 16px 0; }
  .section { padding: 19px 5vw; margin-bottom: 26px; }
  .cookie-modal {
    padding: 16px 8px 14px 8px;
    max-width: 99vw;
  }
}

/***** ANIMATIONS, TRANSITIONS & MICRO-INTERACTIONS *****/
.cta, .card, .feature-grid > div, .inspiration-grid > div, .team-profiles > div,
.testimonial-card, .route-list a, .quick-links a, .feature-tabs button {
  transition: background .20s, color .18s, box-shadow .18s, transform .13s;
}
.card:active, .feature-grid > div:active, .inspiration-grid > div:active, .team-profiles > div:active {
  transform: scale(.985);
}

/***** MISCELLANEOUS ELEMENTS *****/
.opening-hours, .trust-elements, .travel-advice-highlights,
.captioned-descriptions, .team-photo-caption, .star-rating-summary,
.user-feedback-highlights, .terms-text, .cookie-policy-text {
  font-size: 1.05rem;
  color: #465450;
  margin-bottom: 16px;
}

/***** FLEX LAYOUTS FOR DEFINED PATTERNS (MANDATORY) *****/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/***** Z-INDEX LAYERS FOR INTERACTIVES *****/
header { z-index: 100; position: relative; }
.mobile-menu { z-index: 1005; }
.cookie-modal-overlay { z-index: 2200; }
.cookie-banner { z-index: 2100; }

/* ==== END OF CSS ==== */
