/* Lodging Vista "creative_artistic" comprehensive CSS */
/* 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,
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 {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F7FA;
  color: #282828;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #222C73;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2B53D;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fonts (display-creative mix) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #222C73;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* Spacing & Section Layouts */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px 0 rgba(34,44,115,0.08);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  margin-bottom: 24px;
  color: #2e2e2e;
  font-size: 1.06rem;
}

/* Flex Pattern Containers (all enforced) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(34,44,115,0.11);
  margin-bottom: 20px;
  position: relative;
  min-width: 290px;
  padding: 28px;
  transition: box-shadow 0.22s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 12px 40px 0 rgba(242,181,61,0.14);
  transform: translateY(-6px) scale(1.015);
}
.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;
  margin-bottom: 20px;
  background: #F7F7FA;
  border-left: 6px solid #F2B53D;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(34,44,115,0.07);
  color: #212224;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: border-left-color 0.18s, box-shadow 0.15s;
}
.testimonial-card p {
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 6px;
  line-height: 1.45;
}
.testimonial-card div {
  font-size: 0.98rem;
  color: #222C73;
  font-weight: 600;
  font-style: normal;
}
.testimonial-card:hover {
  border-left-color: #222C73;
  box-shadow: 0 6px 24px 0 rgba(34,44,115,0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Hero Section Fun Artistic Style */
.hero {
  background: linear-gradient(118deg, #F2B53D 0%, #fffbe8 73%, #88CCF2 120%);
  border-radius: 0 0 36px 36px;
  min-height: 300px;
  padding: 48px 0 64px 0;
  display: flex;
  align-items: center;
  box-shadow: 0px 8px 24px 0 rgba(34,44,115,0.08);
  position: relative;
  z-index: 3;
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.2rem;
  background: linear-gradient(90deg, #222C73 20%, #F2B53D 90%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.hero p {
  color: #222C73;
  font-size: 1.18rem;
  margin-bottom: 12px;
}
.hero .cta-button {
  margin-top: 10px;
}

/* Buttons & CTA */
.cta-button, .btn, button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  background: #222C73;
  color: #fff;
  border: none;
  border-radius: 36px;
  padding: 13px 38px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.24s, color 0.18s, box-shadow 0.19s, transform 0.12s;
  box-shadow: 0 2px 12px 0 rgba(34,44,115,0.08);
  display: inline-block;
  outline: none;
}
.cta-button:hover, .btn:hover, button:hover, .cta-button:focus, .btn:focus, button:focus {
  background: #F2B53D;
  color: #222C73;
  box-shadow: 0 4px 32px 0 rgba(242,181,61,0.14);
  transform: translateY(-2px) scale(1.04);
}

button {
  outline: none;
}

/* Icon Lists and Artistic List Styles */
ul {
  list-style: none;
  padding-left: 0;
}
ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #353535;
}
ul li img {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 0;
  filter: drop-shadow(0 1px 2px rgba(34,44,115,0.09));
}
ul li strong {
  color: #222C73;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.07em;
}
ul li em {
  color: #F2B53D;
  margin-left: 7px;
}

ol li {
  list-style: decimal inside;
  margin-bottom: 12px;
  padding-left: 0;
}

/* Table Artistic (for Porownania) */
.comparison-table {
  margin-top: 12px;
  margin-bottom: 32px;
  width: 100%;
  overflow-x: auto;
}
.comparison-table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(34,44,115,0.08);
  font-size: 1rem;
  overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 16px 14px;
  border-bottom: 1px solid #ebebeb;
}
.comparison-table th {
  background: #F2B53D;
  color: #222C73;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Review summaries on recenzje-hoteli */
.review-summary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.review-summary-list > div {
  background: #fff;
  border-left: 6px solid #222C73;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(34,44,115,0.07);
  padding: 20px 24px;
  min-width: 260px;
  flex: 1 1 310px;
  transition: border-color 0.15s, box-shadow 0.14s;
}
.review-summary-list > div:hover {
  border-left: 6px solid #F2B53D;
  box-shadow: 0 6px 24px 0 rgba(242,181,61,0.12);
}
.review-summary-list h3 {
  font-size: 1.18rem;
  margin-bottom: 9px;
}

/* Footer & Nav Artistic Styling */
footer {
  background: #222C73;
  color: #fff;
  padding: 38px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 32px 32px 0 0;
  margin-top: 64px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 9px;
}
footer nav a {
  color: #F2B53D;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.17s;
}
footer nav a:hover {
  color: #fff;
}
footer .text-section {
  text-align: center;
  font-size: 0.98rem;
  color: #fff;
}

/* Header & Navigation Artistic */
header {
  background: #fff;
  box-shadow: 0 4px 28px 0 rgba(34,44,115,0.08);
  border-radius: 0 0 32px 32px;
  min-height: 70px;
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 0 0 0 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
header nav img {
  height: 44px;
  margin-right: 14px;
  border-radius: 16px;
  box-shadow: 0 0 0px 3px #F2B53D40;
}
header nav a {
  color: #222C73;
  padding: 4px 12px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
header nav .cta-button {
  margin-left: 9px;
}
header nav a:hover, header nav a:focus {
  background: #F2B53D30;
  color: #222C73;
}
header .cta-button {
  background: #F2B53D;
  color: #222C73;
}
header .cta-button:hover {
  background: #222C73;
  color: #fff;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.2rem;
  background: #222C73;
  color: #fff;
  border: none;
  border-radius: 14px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2B53D;
  color: #222C73;
  box-shadow: 0 2px 16px 0 rgba(242,181,61,0.18);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: #222C73;
  z-index: 1500;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.5,1.7,.27,1), opacity 0.17s;
  box-shadow: 0 8px 68px 0 #222C73c0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 32px 0 0;
  font-size: 2.2rem;
  background: #fff;
  color: #222C73;
  border: none;
  border-radius: 11px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.11s;
  z-index: 1600;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2B53D;
  color: #222C73;
  box-shadow: 0 2px 12px 0 #F2B53D80;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  padding: 44px 24px 0 48px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.38rem;
  padding: 12px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-bottom 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F2B53D;
  border-bottom: 2px solid #F2B53D;
}

/* Responsive - Mobile First */
@media (max-width: 1200px) {
  .container {
    max-width: 940px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 13px;
    font-size: 0.93rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 850px) {
  .review-summary-list,
  .card-container,
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .review-summary-list > div,
  .card {
    min-width: 220px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .hero {
    padding: 32px 0 36px 0;
    border-radius: 0 0 22px 22px;
    min-height: 180px;
  }
  .hero h1 {
    font-size: 1.35rem;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
  .card,
  .review-summary-list > div {
    padding: 14px 9px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 13px;
    gap: 7px;
  }
  .footer nav {
    flex-direction: column;
    gap: 11px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.13rem; }
  h2 { font-size: 1rem; }
  .testimonial-card p {
    font-size: 1rem;
  }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 5100;
  background: #222C73;
  color: #fff;
  padding: 22px 12px 25px 12px;
  box-shadow: 0 -5px 38px 0 rgba(34,44,115,0.13);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.41s cubic-bezier(.6,1.85,.56,1.22), opacity 0.23s;
}
.cookie-consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent-banner .btn {
  margin-left: 8px;
  margin-right: 6px;
  background: #F2B53D;
  color: #222C73;
  font-size: 1rem;
  border-radius: 22px;
  padding: 9px 24px;
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 7px 0 rgba(245,210,28,0.15);
}
.cookie-consent-banner .btn.reject {
  background: #fff;
  color: #222C73;
  border: 1px solid #F2B53D;
}
.cookie-consent-banner .btn.settings {
  background: #222C73;
  color: #F2B53D;
  border: 1px solid #F2B53D;
}
.cookie-consent-banner .btn:hover, .cookie-consent-banner .btn:focus {
  background: #222C73;
  color: #F2B53D;
  outline: none;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%);
  opacity: 0;
  min-width: 320px;
  width: 96vw;
  max-width: 450px;
  background: #fffbe8;
  color: #222C73;
  border-radius: 22px;
  box-shadow: 0 12px 56px 0 #222C73a0;
  z-index: 5555;
  padding: 42px 36px 28px 36px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 23px;
  transition: transform 0.37s cubic-bezier(.6,1.85,.56,1.22), opacity 0.21s;
  pointer-events: none;
}
.cookie-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 9px;
  color: #222C73;
  text-align: left;
}
.cookie-modal ul {
  margin-bottom: 9px;
}
.cookie-modal li {
  margin-bottom: 8px;
  font-size: 0.99rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #2e2e2e;
}
.cookie-modal .btn {
  margin-top: 16px;
  background: #F2B53D;
  color: #222C73;
  font-size: 1rem;
  border-radius: 16px;
  padding: 8px 24px;
  font-weight: 600;
}
.cookie-modal .btn:last-child {
  margin-left: 12px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #222C73;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: #F2B53D;
}

/* Artistic Details & Micro-interactions */
.cta-button,
.btn,
button,
.mobile-menu-toggle,
.mobile-menu-close {
  box-shadow: 0 2px 12px 0 rgba(34,44,115,0.07);
  transition: background 0.15s, color 0.14s, box-shadow 0.14s, transform 0.12s;
}
.card::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 48px;
  height: 48px;
  background: #F2B53D33;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(6px);
  opacity: 0.35;
}
.card:hover::before {
  opacity: 0.58;
}

/* Artistic Typography blends */
h2, h3 {
  background: linear-gradient(90deg, #F2B53D 0%, #222C73 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Icon inline accent */
li img, .feature-item img {
  filter: drop-shadow(0 1px 5px #F2B53D33);
  margin-right: 7px;
}

/* Misc */
::-webkit-input-placeholder { color: #b0b4da; }
::-moz-placeholder { color: #b0b4da; }
:-ms-input-placeholder { color: #b0b4da; }
input::placeholder, textarea::placeholder { color: #b0b4da; }

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }

/** Accessibility & Contrast fixes **/
.testimonial-card, .testimonial-card p, .testimonial-card div {
  color: #212224!important;
  background: none!important;
}

/* Remove outline on non-keyboard clicks but keep for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #F2B53D;
  outline-offset: 2px;
}

/* Artistic Responsive Section Wrapping */
@media (max-width: 600px) {
  .hero { padding: 19px 0 24px 0; border-radius: 0 0 14px 14px; }
  .footer { border-radius: 18px 18px 0 0; padding: 20px 0 11px 0; }
  .section { margin-bottom: 24px; padding: 18px 4px; }
}

/* Artistic Border Animations (for artistic vibe) */
.card, .testimonial-card, .review-summary-list > div {
  border: 2px solid transparent;
  transition: border-color 0.22s;
}
.card:hover, .review-summary-list > div:hover, .testimonial-card:hover {
  border-color: #F2B53D;
}

/* Hide mobile menu by default on desktop */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none!important; }
  header nav { display: flex!important; }
}

/* End Lodging Vista CSS */