/* ==========================================================================  
   PULSE SHORE TRAVEL – NATURE ORGANIC THEME CSS
   Mobile-first | Flexbox only | Earthy palette | Montserrat & Roboto
   ========================================================================== */
   
/* ===== CSS RESET + BASELINES ===== */
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, 
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: #F5F8FA;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #283618;
  line-height: 1.66;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #386641;
  text-decoration: none;
  transition: color .15s linear;
}
a:focus, a:hover {
  color: #1F355B;
  outline: none;
}
ul, ol {
  margin: 0 0 16px 20px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  color: #254420;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.5rem; margin-bottom: 18px;}
h2 {font-size: 2rem; margin-bottom: 16px;}
h3 {font-size: 1.375rem; margin-bottom: 12px;}
h4 {font-size: 1.125rem;}
p {margin-bottom: 16px;}
strong {font-weight: bold; color: #254420;}

/* ===== BRAND COLOR PALETTE  "nature_organic" EARTHY TONES ===== */
:root {
  --pst-primary: #1F355B;
  --pst-secondary: #FFD166;
  --pst-accent: #F5F8FA;
  --pst-green: #386641;
  --pst-earth: #BC8B4B;
  --pst-leaf: #A9C27A;
  --pst-lightbg: #F7FAED;
  --pst-darktext: #283618;
  --pst-muted: #B7B7A4;
  --pst-cardbg: #fff;
  --pst-shadow: 0 6px 20px rgba(60,70,65,0.06);
  --pst-radius-lg: 24px;
  --pst-radius-md: 16px;
  --pst-radius-sm: 8px;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pst-lightbg);
  border-radius: var(--pst-radius-lg);
  box-shadow: var(--pst-shadow);
  position: relative;
  /* decorative organic blob effect */
  overflow: hidden;
}

/* ===== HEADER & MAIN NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(60,70,65,0.07);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
}
.logo img {height: 35px; width: auto;}
/* Main Nav */
.main-nav {
  display: none;
}
@media (min-width: 990px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .mobile-menu-toggle {
    display: none;
  }
}
.main-nav a, .footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #254420;
  padding: 8px 14px;
  border-radius: var(--pst-radius-sm);
  font-size: 1rem;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pst-leaf);
  color: #fff;
}
.main-nav .cta-primary {
  background: var(--pst-green);
  color: #fff;
  border-radius: 100px;
  padding: 8px 28px;
  margin-left: 18px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(56,102,65,0.08);
  display: inline-block;
  border: none;
  transition: background 0.15s, box-shadow 0.18s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #254420;
  color: #FFD166;
  box-shadow: 0 8px 35px rgba(56,102,65,0.14);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pst-green);
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background .13s;
  z-index: 4002;
  position: relative;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #254420;
  color: var(--pst-secondary);
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(247,250,237,0.97);
  z-index: 4001;
  box-shadow: 0 4px 48px rgba(44,66,35,.11);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .34s cubic-bezier(.8,.2,.2,1), opacity .28s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--pst-earth);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 54px;
  height: 54px;
  align-self: flex-end;
  margin: 24px 18px 12px 0;
  cursor: pointer;
  z-index: 4010;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pst-green);
  color: var(--pst-secondary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 18px 40px;
  gap: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #254420;
  border-radius: var(--pst-radius-md);
  padding: 14px 20px;
  width: 100%;
  display: block;
  transition: background .13s, color .13s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--pst-leaf);
  color: #fff;
}

@media (min-width: 990px) {
  .mobile-menu {display:none;}
}

/* ===== HERO SECTIONS ===== */
.hero {
  background: linear-gradient(120deg, #F5F8FA 75%, #A9C27A 100%);
  border-radius: 0 0 var(--pst-radius-md) var(--pst-radius-md);
  box-shadow: 0 4px 24px rgba(56,102,65,0.065);
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 38px 0 22px 0;
  min-height: 195px;
}
.hero h1 {
  font-size: 2.35rem;
  color: #254420;
  text-shadow: 0 1px 0 #fff7, 0 6px 30px rgba(41,129,63,0.18);
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.23rem;
  color: #254420;
  margin-bottom: 22px;
  max-width: 600px;
}
.hero .cta-primary {
  margin-top: 10px;
}

/* ===== CTA BUTTONS ===== */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 64px;
  font-size: 1.16rem;
  line-height: 1.2;
  font-weight: 700;
  transition: background 0.16s, color 0.16s, box-shadow .17s;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(60,70,65,0.09);
}
.cta-primary {
  background: var(--pst-green);
  color: #fff;
  border: 2px solid #386641;
}
.cta-primary:hover, .cta-primary:focus {
  background: #254420;
  color: #FFD166;
  box-shadow: 0 4px 28px rgba(40,54,24,0.14);
  text-decoration: none;
}
.cta-secondary {
  background: #FFD166;
  color: #254420;
  border: 2px solid #FFD166;
  margin-left: 18px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--pst-earth);
  color: #fff;
  border-color: var(--pst-earth);
}

/* ===== FLEX PATTERNS ========= */
/* Feature Grid (Index) */
.feature-grid, .about-grid, .usp-grid, .benefits-grid, .team-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .feature-grid, .about-grid, .usp-grid, .benefits-grid, .team-block {
    flex-direction: row;
    gap: 32px;
    justify-content: space-between;
  }
}
.feature-grid > div, .about-grid > div, .usp-grid > div, .benefits-grid > div, .team-block > div {
  background: #fff;
  border-radius: var(--pst-radius-md);
  box-shadow: var(--pst-shadow);
  padding: 24px 18px 20px 18px;
  flex: 1 1 0;
  min-width: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 0 0;
}
.feature-grid img, .about-grid img, .usp-grid img, .benefits-grid img {
  width: 48px; height: 48px; object-fit: contain; margin-bottom: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 700px) {
  .testimonial-slider {
    flex-direction: row;
    gap: 32px;
  }
}
.testimonial-card {
  background: #fff;
  border-radius: var(--pst-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 28px 24px 28px;
  min-width: 220px;
  box-shadow: 0 8px 40px rgba(138,150,111,0.14);
  margin-bottom: 20px;
  overflow: hidden;
  border: 1.5px solid #A9C27A33;
}
.testimonial-card p {
  color: #254420;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  color: #386641;
  margin-top: 8px;
}
.testimonial-meta img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #A9C27A55;
}
.rating-overview {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff9ed;
  border-radius: 18px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 10px 20px;
  color: #BC8B4B;
  box-shadow: var(--pst-shadow);
}
.rating-overview img {
  width: 20px; height: 20px;
}

/* ===== LISTS, FAQ / DL ===== */
ul, ol {
  padding-left: 20px;
  font-size: 1rem;
  color: #254420;
}
dt {
  font-family: 'Montserrat';
  font-weight: 700;
  color: #386641;
  margin-top: 18px;
  margin-bottom: 4px;
}
dd {
  padding-left: 16px;
  margin-bottom: 10px;
  color: #283618;
}

/* ===== PURCHASE PROCESS / STEPS (JAK-REZERWOWAC) ===== */
ol {
  list-style-type: decimal;
  margin-bottom: 18px;
}
ol li::marker {
  color: #BC8B4B;
  font-size: 1.01em;
}

/* ===== CARDS, INFO BLOCKS, ELEMENTARY FLEX LAYOUTS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--pst-radius-md);
  box-shadow: var(--pst-shadow);
  padding: 24px 24px 18px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 225px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* ===== ADDRESS, CONTACT, MAP BLOCKS ===== */
.address-text {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.09rem;
  color: #254420;
  background: #F7FAED;
  padding: 12px 18px;
  border-radius: var(--pst-radius-md);
  margin: 8px 0 16px 0;
}
.static-map {
  background: linear-gradient(112deg, #F5F8FA, #A9C27A33);
  border-radius: var(--pst-radius-lg);
  box-shadow: 0 0 0 2px #A9C27A22;
  padding: 26px 14px;
  margin-top: 8px;
  margin-bottom: 14px;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== FOOTER ===== */
footer {
  background: #254420;
  color: #fff;
  padding: 40px 0 24px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.footer-logo img {
  height: 44px; width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 25px 5px 0;
}
@media (min-width: 700px) {
  .footer-nav {
    flex-direction: row;
    gap: 24px;
  } 
}
.footer-nav a {
  color: #FFD166;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 6px 10px;
  border-radius: var(--pst-radius-sm);
  transition: background 0.12s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--pst-green);
  color: #fff;
}
.footer-contact {
  color: #FFD166;
  font-size: 0.99rem;
  margin-top: 8px;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 5px;
}

/* ===== SPACING: SECTION GAP FOR MAIN ===== */
main {
  margin-top: 34px;
}
section {
  margin-bottom: 40px;
}
@media (min-width: 700px) {
  main {
    margin-top: 44px;
  }
  section {
    margin-bottom: 60px;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 5002;
  background: #fffbe3;
  box-shadow: 0 -2px 24px #0001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 30px 16px 18px 16px;
  border-top-left-radius: var(--pst-radius-lg);
  border-top-right-radius: var(--pst-radius-lg);
  font-size: 1rem;
  color: #283618;
  animation: banner-in 0.6s cubic-bezier(.55,.24,.3,1);
}
@keyframes banner-in {
  0%{transform: translateY(100%); opacity: 0;}
  80%{transform: translateY(-20px); opacity: 1;}
  100%{transform: translateY(0); opacity: 1;}
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  margin-top: 7px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 9px 20px;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.15s, color 0.13s;
}
.cookie-banner .accept {
  background: #386641;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #254420;
  color: #FFD166;
}
.cookie-banner .reject {
  background: #F0E1BC;
  color: #386641;
}
.cookie-banner .reject:hover {
  background: #FFD166;
  color: #254420;
}
.cookie-banner .settings {
  background: transparent;
  border: 1.5px solid #A9C27A;
  color: #254420;
}
.cookie-banner .settings:hover {
  background: #A9C27A33;
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left:0; top:0; width:100vw; height:100vh;
  background: rgba(40, 54, 24, 0.34);
  z-index: 5010;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .28s;
  animation: fade-in .35s linear;
}
.cookie-modal-overlay.open {display: flex;}
@keyframes fade-in {
  from{opacity:0;}
  to{opacity:1;}
}
.cookie-modal {
  background: #F7FAED;
  border-radius: var(--pst-radius-lg);
  box-shadow: 0 8px 40px #38664118;
  padding: 40px 30px 30px 30px;
  max-width: 420px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modal-in .38s cubic-bezier(.8,.26,.2,1);
  position: relative;
}
@keyframes modal-in {
  0%{transform: scale(.9) translateY(50px);}
  100%{transform: scale(1) translateY(0);}
}
.cookie-modal h3 {
  color: #254420;
  font-size: 1.34rem;
}
.cookie-modal label {
  font-size: 1.08rem;
  color: #254420;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #386641;
  width: 20px; height: 20px;
  border-radius: 5px;
  margin-right: 8px;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 1.45rem;
  background: transparent;
  border: none;
  color: #254420;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {color: #386641;}

/* ===== MEDIA QUERIES (DESKTOP, TABLET, MOBILE) ===== */
@media (min-width: 700px) {
  h1 {font-size: 2.95rem;}
  h2 {font-size: 2.3rem;}
  .hero {padding: 60px 0 42px 0;}
}
@media (min-width: 990px) {
  .container {padding: 0 30px;}
  .hero h1 {font-size: 3.3rem;}
  .section {padding: 62px 40px; margin-bottom: 80px;}
  .content-wrapper {gap: 36px;}
}

/* ====== MICRO-INTERACTIONS & DECORATIVE EFFECTS ====== */
.section::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  top: -40px; left: -40px;
  width: 120px; height: 95px;
  background: #A9C27A33;
  border-radius: 80% 60% 75% 50%;
  pointer-events: none;
  filter: blur(18px);
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  right: -34px; bottom: -28px;
  width: 84px; height: 54px;
  background: #FFD16633;
  border-radius: 70% 70% 60% 80%;
  pointer-events: none;
  filter: blur(12px);
}

/* ==== ORGANIC BOX SHADOW (Global) ==== */
.card, .testimonial-card, .section, .feature-grid > div, .team-block > div, .about-grid > div, .usp-grid > div, .benefits-grid > div {
  box-shadow: var(--pst-shadow);
  transition: box-shadow .15s, transform .18s;
}
.card:hover, .testimonial-card:hover, .feature-grid > div:hover, .team-block > div:hover, .about-grid > div:hover, .usp-grid > div:hover, .benefits-grid > div:hover {
  box-shadow: 0 8px 38px #A9C27A27;
  transform: translateY(-5px) scale(1.044);
  z-index: 4;
}

/* ====== FORMS (future use) ====== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: #254420;
  background: #F5F8FA;
  border: 1.2px solid #A9C27A;
  border-radius: var(--pst-radius-sm);
  padding: 11px 14px;
  margin-bottom: 14px;
  outline: none;
  transition: border .14s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #386641;
  box-shadow: 0 2px 18px #A9C27A33;
}

/* ====== ACCESSIBILITY ====== */
:focus-visible {
  outline: 2px dotted #386641;
  outline-offset: .15em;
}

/* ====== PRINT (minimize background for print) ====== */
@media print {
  body, .section, .card, .testimonial-card {
    background: #fff !important;
    color: #222!important;
    box-shadow: none !important;
  }
  nav, .cta-primary, .cta-secondary, .mobile-menu, .cookie-banner {display: none !important;}
}
