/* RESET & NORMALIZE */
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;
  vertical-align: baseline;
  box-sizing: border-box;
  font-family: inherit;
}
html {box-sizing: border-box; font-size: 16px; scroll-behavior: smooth;}
*, *:before, *:after {box-sizing: inherit;}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #f8fafc;
  color: #2D3E50;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, picture {max-width: 100%; display: block; height: auto;}
a {text-decoration: none; color: inherit; transition: color 0.2s;}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button:focus, a:focus {outline: 2px solid #D1B180; outline-offset: 2px;}

/* BRAND FONTS */
h1, h2, h3, h4, h5, .display, .subheadline {
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

h1 {font-size: 2.8rem; margin-bottom: 24px; font-weight: 700;}
h2 {font-size: 2rem; margin-bottom: 20px; font-weight: 600;}
h3 {font-size: 1.3rem; margin-bottom: 12px; font-weight: 500;}
h4, h5 {font-size: 1.1rem; font-weight: 500;}
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #2D3E50;
  font-style: italic;
  padding-left: 18px;
  border-left: 4px solid #D1B180;
  margin-bottom: 16px;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #34495e;
  margin-bottom: 16px;
}
ul, ol {list-style: disc; padding-left: 28px; margin-bottom: 24px;}
b, strong {font-weight: 700;}
.subheadline {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #5B6A7D;
}

/* CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(45, 62, 80, 0.05);
}
@media (max-width: 900px) {
  .section {padding: 32px 8px;}
  .container {padding-left: 10px; padding-right: 10px;}
}

.card-container, .card-grid, .feature-grid, .services-list, .category-cards, .travel-highlights, .usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.card-container, .card-grid {gap: 24px;}

.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, .feature-grid, .services-list, .content-grid, .category-cards {
    flex-direction: column;
    gap: 16px;
  }
}

.card, .category-card, .service-highlight {
  background: #f6f7f9;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(45,62,80,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  min-width: 240px;
  flex: 1 1 270px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f8fafc;
  border-radius: 14px;
  padding: 20px 18px;
  min-width: 210px;
  flex: 1 1 210px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {width: 48px; height: 48px;}
.feature-item:hover {
  box-shadow: 0 4px 20px rgba(45,62,80,0.10);
  transform: translateY(-4px);
}

.category-card {
  background: #fff6e3;
  border: 1px solid #e7cfa9;
}

.service-highlight{
  background: #eaf1f7;
  border-left: 5px solid #2D3E50;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-highlight .price {
  display: block;
  margin-top: 16px;
  font-weight: bold;
  color: #2D3E50;
  background: #D1B180;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 1rem;
}
.service-highlight:hover {
  box-shadow: 0 4px 16px rgba(45,62,80,0.11);
  border-color: #D1B180;
}

.benefit-highlights ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 10px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 6px solid #2D3E50;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(45,62,80,0.07);
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 320px;
}
.testimonial-card blockquote {
  padding-left: 8px;
  margin-bottom: 4px;
  font-size: 1.07rem;
  color: #243142;
  border-left: 3px solid #D1B180;
}
.testimonial-card span {
  font-size: 0.97rem;
  font-weight: 500;
  color: #48637b;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 1.08rem;
}
.rating-summary img {width: 26px; height: 26px;}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info, .contact-map {
  background: #f2f5f9;
  border-radius: 12px;
  padding: 22px 20px;
  flex: 1 1 290px;
  min-width: 220px;
}
.contact-info h3, .contact-map h3 {margin-top: 0;}
.contact-info ul, .contact-map ul {margin-bottom: 10px;}
.contact-info a {
  color: #2D3E50;
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.2s;
}
.contact-info a:hover {color: #D1B180;}

.contact-cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 44px;
  padding: 0 28px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(45,62,80,0.05);
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  font-weight: 600;
  margin: 6px 8px 6px 0;
  text-align: center;
}
.btn-primary {
  background: #2D3E50;
  color: #fff;
  border: 2px solid #2D3E50;
}
.btn-primary:hover, .btn-primary:focus {
  background: #D1B180;
  color: #2D3E50;
  border-color: #D1B180;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #D1B180;
  color: #2D3E50;
  border: 2px solid #D1B180;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #2D3E50;
  color: #fff;
  border-color: #2D3E50;
  transform: translateY(-2px) scale(1.03);
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 4px 20px rgba(45,62,80,0.04);
  position: sticky;
  top: 0; left: 0; right: 0; z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}
header img[alt="Eleganckie Szlaki"] {
  width: 168px;
  height: auto;
  margin-right: 36px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
nav a {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #2D3E50;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
nav a:hover, nav a:focus {
  background: #D1B180;
  color: #fff;
}

/* Hide burger and mobile menu on desktop */
.mobile-menu-toggle, .mobile-menu, .mobile-menu-close {
  display: none;
}

@media (max-width: 1020px) {
  header .container {flex-direction: row;}
  nav {gap: 8px;}
}
@media (max-width: 900px) {
  header img[alt="Eleganckie Szlaki"] {width: 128px;}
  nav a {padding: 8px 7px; font-size: 0.98rem;}
  .btn {font-size: 0.96rem; min-width: 112px;}
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  nav {
    display: none;
  }
  .btn.btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    font-size: 2rem;
    background: #fff;
    color: #2D3E50;
    border-radius: 6px;
    border: 2px solid #e4e7ed;
    padding: 5px 14px;
    align-items: center;
    cursor: pointer;
    margin-left: auto;
    transition: background 0.17s, color 0.17s;
    z-index: 1101;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #D1B180;
    color: #fff;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: #f8fafc;
    z-index: 1200;
    transform: translateX(100vw);
    transition: transform 0.34s cubic-bezier(.68,-0.55,.27,1.55);
    box-shadow: 0 6px 32px rgba(45,62,80,0.08);
    padding-top: 44px;
  }
  .mobile-menu.open {transform: translateX(0);}
  .mobile-menu-close {
    display: flex;
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    color: #2D3E50;
    font-size: 2.5rem;
    border: none;
    z-index: 1203;
    padding: 5px 10px;
    cursor: pointer;
    transition: color 0.16s, background 0.16s;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #D1B180;
    color: #fff;
    border-radius: 5px;
  }
  .mobile-menu nav.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 36px 10px 36px;
    gap: 18px;
    margin-top: 32px;
  }
  .mobile-nav a {
    font-size: 1.16rem;
    font-weight: 500;
    color: #2D3E50;
    padding: 13px 0 13px 2px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 4px;
    background: transparent;
    transition: background 0.14s, color 0.14s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #D1B180;
    color: #fff!important;
  }
}
@media (max-width: 520px) {
  .mobile-menu nav.mobile-nav {padding-left:18px; padding-right: 18px;}
  .mobile-nav a {font-size: 1.02rem;}
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #eaeaea;
  padding: 28px 0 18px 0;
  font-size: 0.99rem;
  color: #3a4f66;
  box-shadow: 0 -2px 12px rgba(45,62,80,0.03);
}
footer .container {flex-direction: column; align-items: center; gap: 20px;}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
footer nav a {
  color: #2D3E50;
  padding: 3px 7px;
  border-radius: 6px;
  background: transparent;
  transition: background 0.15s, color 0.15s;
  font-size: 0.97rem;
}
footer nav a:hover {
  background: #D1B180;
  color: #fff;
}
footer p {font-size: 0.97rem; text-align: center; color: #8b97a4; margin-top:5px;}

/* TEXT SECTION, HIGHLIGHTS, MISC */
.text-section {margin-bottom: 24px;}
.travel-highlights, .usp-list, .benefit-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0;
}
.category-card {
  flex: 1 1 240px;
  max-width: 325px;
}

/* Utility Classes */
.mt-0 {margin-top:0;}
.mb-0 {margin-bottom:0;}
.mx-auto {margin-left:auto; margin-right:auto;}
.w-100 {width:100%;}

/* Animations & Transitions */
.fade-in {
  animation: fade-in 0.55s cubic-bezier(.84,0,.16,1);
}
@keyframes fade-in {
  from {opacity: 0; transform: translateY(15px);}
  to {opacity: 1; transform: none;}
}

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 900px) {
  .feature-item, .service-highlight, .testimonial-card, .category-card, .card {
    min-width: 160px;
    padding: 16px 10px;
  }
}
@media (max-width: 600px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.3rem;}
  .container, .section {padding-left: 4px; padding-right: 4px;}
  .section {padding:20px 4px;}
}

/* ------------- COOKIE CONSENT BANNER ------------- */
.cookie-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0; bottom: 0; right: 0;
  z-index: 3000;
  background: #fff;
  border-top: 2px solid #2D3E50;
  box-shadow: 0 -2px 16px rgba(45,62,80,0.09);
  padding: 24px 12px;
  min-height: 99px;
  width: 100vw;
  font-size: 0.97rem;
  gap: 16px;
  animation: fade-in 0.45s;
}
.cookie-banner p {
  margin-bottom: 6px;
  color: #2D3E50;
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button, .cookie-banner .btn {
  min-width: 122px;
  font-size: 0.96rem;
  padding: 7px 18px;
  border-radius: 18px;
  font-family: 'Roboto', sans-serif;
  margin: 0 5px 0 0;
  background: #e6ebf1;
  color: #2D3E50;
  border: 2px solid transparent;
  transition: background 0.16s, color 0.18s, border 0.16s;
  cursor: pointer;
}
.cookie-banner .btn-primary {
  background: #2D3E50;
  color: #fff;
  border: 2px solid #2D3E50;
}
.cookie-banner .btn-primary:hover, .cookie-banner .btn-primary:focus {
  background: #D1B180;
  color: #2D3E50;
  border-color: #D1B180;
}
.cookie-banner .btn-secondary {
  background: #D1B180;
  color: #2D3E50;
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: #fff;
  color: #D1B180;
  border-color: #D1B180;
}

/* ----- COOKIE SETTINGS MODAL ----- */
.cookie-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(45,62,80,0.58);
  z-index: 3300;
  animation: fade-in 0.38s;
}
.cookie-modal.open {display: flex;}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 34px 26px 26px 26px;
  box-shadow: 0 8px 36px rgba(45,62,80,0.15);
  max-width: 480px;
  width: 98%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-close {
  position: absolute; top: 16px; right: 18px; border: none;
  background: none; color: #2D3E50; font-size: 2rem;
  cursor: pointer; transition: color 0.16s, background 0.16s; border-radius: 4px;
  padding: 4px;
  z-index: 2;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #fff; background: #D1B180;
}
.cookie-modal-content h2 {margin-bottom:6px;font-size:1.3rem;}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 0 20px 0;
  border-bottom: 1px solid #eaeaea;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #2D3E50;
}
.cookie-category .category-label {
  flex: 1 1 70%;
  color: #2D3E50;
}
.cookie-category .always-on {
  font-size: 0.91rem;
  color: #b3bcc8;
  margin-left: 4px;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top:15px;
}
.cookie-modal-content button {
  font-size: 1rem;
  padding: 7px 18px;
  border-radius: 18px;
  font-family: 'Roboto', sans-serif;
  background: #e6ebf1;
  color: #2D3E50;
  border: 2px solid transparent;
  transition: background 0.16s, color 0.18s, border 0.16s;
  cursor: pointer;
}
.cookie-modal-content .btn-primary {
  background: #2D3E50; color: #fff; border-color: #2D3E50;}
.cookie-modal-content .btn-primary:hover,.cookie-modal-content .btn-primary:focus{
  background: #D1B180; color: #2D3E50; border-color: #D1B180;
}

/* ------------- END COOKIE BANNER ------------- */

/* MICRO-INTERACTIONS */
a, button, .btn {
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.19s, transform 0.15s;
  outline: none;
}
a:focus, .btn:focus {box-shadow: 0 0 0 2px #D1B18033;
  border-radius: 6px;
}

/* COLOR FIXES FOR CONTRAST */
.testimonial-card, .testimonial-slider .testimonial-card {
  background: #fff;
  color: #222f3e;
  border-left: 5px solid #2D3E50;
}
.testimonial-card blockquote, .testimonial-card span {color: #222f3e;}
.rating-summary strong {color: #2D3E50;}
.rating-summary span {color: #7d909e;}

/* CARD/BLOCK ADORNMENTS */
.card, .feature-item, .service-highlight, .category-card, .testimonial-card {
  box-shadow: 0 2px 8px rgba(45,62,80,0.07);
  border-radius: 12px;
}

/* SCROLLBAR (for desktops) */
@media (min-width: 890px) and (hover: hover) {
  ::-webkit-scrollbar { width: 13px; background: #e6ebf1; }
  ::-webkit-scrollbar-thumb { background: #2D3E50; border-radius: 6px; }
}

/* PRINT & SELECTION */
::selection {background:#D1B180;color:#fff;}

/* END */
