/* === CSS RESET & BASE === */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F5F7FA;
  color: #173D56;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 6px;
}
a {
  color: #2C8798;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #173D56;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #173D56;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}
@media (min-width: 550px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

p, ul li, ol li, .text-section p {
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #173D56;
}
strong, b {
  font-weight: 600;
}

/* === HEADER / NAVIGATION === */
header {
  width: 100%;
  background: #F5F7FA;
  box-shadow: 0 2px 10px rgba(23,61,86,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #173D56;
  padding: 7px 12px;
  border-radius: 6px;
  opacity: 0.8;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #e3edf6;
  color: #2C8798;
  opacity: 1;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #2C8798;
  padding: 11px 32px;
  border-radius: 24px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px rgba(44,135,152,0.06);
  border: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.12s;
  cursor: pointer;
  display: inline-block;
  margin-left: 12px;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #173D56;
  box-shadow: 0 4px 12px rgba(23,61,86,0.10);
  transform: translateY(-2px) scale(1.03);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #173D56;
  font-size: 2rem;
  border: none;
  outline: none;
  margin-left: 16px;
  cursor: pointer;
  z-index: 301;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #2C8798;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245,247,250, 0.96);
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.87,0,0.13,1);
  box-shadow: -8px 0 24px rgba(23,61,86,0.07);
  padding: 32px 26px 26px 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #173D56;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 410;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #2C8798;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-top: 16px;
}
.mobile-nav a {
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #173D56;
  padding: 10px 0;
  width: 100%;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e3edf6;
  color: #2C8798;
}

@media (min-width: 1020px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 1019px) {
  header nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  header .container {
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mobile-menu {
    padding: 24px 12px 12px 12px;
  }
}

/* === MAIN LAYOUT/ SECTIONS === */
main {
  width: 100%;
  padding-bottom: 40px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cta-block {
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
  .content-wrapper {
    gap: 20px;
  }
}

/* === FLEXBOX PATTERNS (MANDATORY) === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(23,61,86,0.06);
  padding: 24px;
  flex: 1 1 260px;
  min-width: 220px;
  transition: box-shadow 0.22s, transform 0.11s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(44,135,152,0.13);
  transform: translateY(-3px) scale(1.022);
}
.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;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 9px rgba(23,61,86,0.07);
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(44,135,152,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(23,61,86,0.07);
  padding: 22px 22px 18px 22px;
  min-width: 220px;
  max-width: 310px;
  min-height: 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.11s;
}
.feature-item:hover {
  box-shadow: 0 6px 20px rgba(44,135,152,0.13);
  transform: translateY(-2px) scale(1.027);
}

/* Additional mandatory spacing for flex containers */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 900px) {
  .card-container, .content-grid, .feature-grid, .inspiration-grid {
    gap: 16px !important;
  }
  .feature-item, .card {
    min-width: 160px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }
  .content-grid, .card-container, .feature-grid, .inspiration-grid {
    flex-direction: column;
    gap: 16px !important;
  }
}

/* === FEATURE GRID HOME === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
}

/* === INSPIRATION GRID (Home/Inspiracje) === */
.inspiration-teaser-grid, .inspiration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.inspiration-item, .themed-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 13px rgba(23,61,86,0.06);
  padding: 20px 22px 20px 22px;
  flex: 1 1 220px;
  min-width: 180px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.11s;
}
.inspiration-item:hover, .themed-box:hover {
  box-shadow: 0 6px 24px rgba(44,135,152,0.13);
  transform: translateY(-2px) scale(1.022);
}

@media (max-width: 700px) {
  .inspiration-teaser-grid, .inspiration-grid {
    flex-direction: column;
    gap: 13px;
  }
  .inspiration-item, .themed-box {
    padding: 16px 12px;
  }
}

/* === BUTTONS & UI ELEMENTS === */
button, .filters button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  background: #2C8798;
  color: #fff;
  padding: 10px 26px;
  cursor: pointer;
  margin: 0 5px;
  box-shadow: 0 2px 8px rgba(44,135,152,0.07);
  outline: none;
  transition: background 0.18s, transform 0.12s;
}
button:hover, button:focus, .filters button:hover, .filters button:focus {
  background: #173D56;
  transform: translateY(-2px) scale(1.06);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}
.filters span {
  color: #173D56;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 5px;
}

/* === TESTIMONIALS === */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #173D56;
  box-shadow: 0 2px 10px rgba(23,61,86,0.09);
  font-size: 1.06rem;
  min-width: 240px;
}
.testimonial-user {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: #2C8798;
}
.stars {
  color: #FCCB3D; /* warm gold */
  font-size: 1.12em;
  letter-spacing: 2px;
}

/* Ensure contrast in testimonials/reviews */
.testimonial-card p, .testimonial-card .testimonial-user {
  color: #173D56;
}

/* === FOOTER === */
footer {
  width: 100%;
  background: #F5F7FA;
  border-top: 1.5px solid #e6ecf2;
  font-size: 0.97rem;
  color: #173D56;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0 18px 0;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #173D56;
  opacity: 0.7;
  transition: color 0.2s, opacity 0.17s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #2C8798;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #173D56;
  font-size: 1rem;
}
.footer-contact img {
  margin-right: 10px;
  vertical-align: middle;
  width: 18px; height: 18px;
  display: inline-block;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social a {
  padding: 6px;
  display: flex;
  border-radius: 50%;
  background: #e3edf6;
  transition: background 0.16s;
}
.footer-social a:hover {
  background: #2C8798;
}
.footer-social img {
  width: 22px; height: 22px;
}
.footer-bottom {
  text-align: center;
  padding: 12px 0 4px 0;
  color: #7C8893;
  font-size: 0.95em;
}

@media (max-width: 850px) {
  .footer-main {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* === VALUES, CHECKLISTS, GUIDES === */
.values-list, .travel-checklist, .category-list, .inspiration-tips-list, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: flex-start;
}
.values-list li, .travel-checklist li, .category-list li, .inspiration-tips-list li, .contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44,135,152,0.07);
  padding: 14px 20px;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
.values-list img, .travel-checklist img, .category-list img, .inspiration-tips-list img, .contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 4px;
}
@media (max-width: 700px) {
  .values-list, .travel-checklist, .category-list, .inspiration-tips-list, .contact-details {
    flex-direction: column;
    gap: 11px;
  }
}

/* === BLOG === */
.blog-posts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 12px 0 18px 0;
}
.blog-posts-list article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44,135,152,0.09);
  padding: 20px 18px 16px 18px;
  flex: 1 1 260px;
  min-width: 180px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, transform 0.09s;
}
.blog-posts-list article:hover {
  box-shadow: 0 5px 16px rgba(23,61,86,0.14);
  transform: translateY(-2px) scale(1.022);
}
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0 12px 0;
}
.category-tags a {
  display: inline-block;
  padding: 7px 22px;
  border-radius: 20px;
  background: #e3edf6;
  color: #173D56;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.category-tags a:hover {
  background: #2C8798;
  color: #fff;
}

/* === FAQ ACCORDION === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44,135,152,0.07);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 9px;
}

/* === MAP EMBED === */
.map-embed {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  background: #e3edf6;
  border-radius: 14px;
  margin-top: 10px;
}
.map-placeholder {
  color: #75899d;
  font-size: 1.13rem;
  padding: 32px 8px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* === INFO BOX === */
.info-box {
  background: #e3edf6;
  color: #173D56;
  border-radius: 11px;
  padding: 18px 20px;
  margin-top: 20px;
  font-size: 1.08em;
}

/* === SUGGESTED DESTINATIONS / NEXT STEPS === */
.suggested-destinations, .next-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 15px;
  font-size: 1.05em;
  color: #173D56;
  text-align: center;
}
.confirmation-message {
  font-size: 1.18em;
  color: #2C8798;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.next-steps ul {
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  color: #173D56;
  border-top: 1.5px solid #e6ecf2;
  box-shadow: 0 -2px 16px rgba(44,135,152,0.09);
  z-index: 1001;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  gap: 28px;
  transition: transform 0.25s;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner.hide {
  transform: translateY(200%);
  pointer-events: none;
}
.cookie-banner-message {
  max-width: 450px;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  background: #2C8798;
  color: #fff;
  font-size: 1em;
  border-radius: 22px;
  border: none;
  padding: 10px 22px;
  margin: 0 2px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #173D56;
  transform: scale(1.04);
}

@media (max-width: 750px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 8px;
  }
  .cookie-banner-actions {
    align-self: flex-end;
    gap: 12px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(23,61,86,0.18);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.18s;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 36px rgba(23,61,86,0.13);
  padding: 34px 24px 26px 24px;
  min-width: 300px;
  max-width: 96vw;
  color: #173D56;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  animation: fadeInModal 0.33s;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(60px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.35em;
  margin-bottom: 18px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  font-weight: 500;
  color: #173D56;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #2C8798;
  margin-right: 4px;
}
.cookie-category input[disabled] {
  opacity: 0.6;
  accent-color: #173D56;
}
.cookie-modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}
.cookie-modal-btns button {
  border-radius: 19px;
  font-size: 1em;
  background: #2C8798;
  color: #fff;
  padding: 8px 20px;
}
.cookie-modal-btns button.secondary {
  background: #e3edf6;
  color: #173D56;
}
.cookie-modal-btns button.secondary:hover {
  background: #173D56;
  color: #fff;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 1.35em;
  color: #173D56;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: #2C8798;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 22px 8px 13px 8px;
    min-width: 0;
  }
}

/* === MICRO-INTERACTIONS === */
.cta-button, button, .filters button, .category-tags a, nav a, .mobile-nav a {
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, transform 0.12s;
}

/* === CUSTOM SCROLLBAR (Webkit) === */
::-webkit-scrollbar {
  width: 9px;
  background: #e3edf6;
}
::-webkit-scrollbar-thumb {
  background: #c7dbe4;
  border-radius: 4px;
}

/* === MISCELLANEOUS === */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.text-section h2 {
  margin-bottom: 7px;
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 14px 0 0 0;
}
.category-list li {
  min-width: 140px;
}
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}
.guides-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(23,61,86,0.06);
  padding: 16px 20px 9px 20px;
}
.featured-routes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.route-overview {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 11px rgba(44,135,152,0.08);
  padding: 20px 18px 20px 22px;
  min-width: 200px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.1s;
}
.route-overview:hover {
  box-shadow: 0 8px 26px rgba(44,135,152,0.13);
  transform: translateY(-2px) scale(1.021);
}

/* Section specific style if needed for inspirations, checklists, etc. */

/* === UTILITY CLASSES FOR SPACE === */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-20 { margin-top: 20px !important; }
@media (max-width: 500px) {
  .mb-20, .mb-32, .mt-20 { margin-bottom: 12px !important; margin-top: 10px !important; }
}

/* === RESPONSIVE - GENERAL === */
@media (max-width: 500px) {
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 10px;
  }
  .footer-main, .footer-links, .footer-contact, .footer-social {
    gap: 9px;
  }
}

/* === NO GRID, NO COLUMN PROPERTIES === */
/* All layout: only flexbox used everywhere */
