/* ====================== CSS RESET & NORMALIZATION ====================== */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #191f2e;
  color: #fafbfc;
  /* tech_futuristic background, will upgrade using ::before overlay for gradients */
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #B0C779;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #ffffff;
  text-shadow: 0 0 4px #255C99, 0 0 10px #B0C779;
}
input, button, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
}
/* ====================== BASE TYPOGRAPHY ====================== */
h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-shadow: 0 0 12px #255C99, 0 0 18px #22264a;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #B0C779;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px #255C99;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #B0C779;
}
p, li, blockquote {
  font-size: 1rem;
  color: #d0d5e4;
  margin-bottom: 12px;
  line-height: 1.7;
}
strong { color: #fff; font-weight: 700; }
blockquote {
  font-style: italic;
  color: #191f2e;
  background: #fff;
  border-left: 5px solid #B0C779;
  padding: 16px 20px;
  border-radius: 14px;
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0 0 10px 0;
}
.section ul, .section ol, ul, ol { margin-bottom: 16px; }
ul li, ol li { margin-bottom: 8px; }
fieldset {
  border: 1px solid #255C99;
  border-radius: 12px;
  padding: 16px 12px;
  margin-top: 20px;
}
legend {
  color: #B0C779;
  padding: 0 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
/* =============== TECH FUTURISTIC BACKGROUND OVERLAY ================ */
body::before {
  content: '';
  display: block;
  position: fixed;
  z-index: -2;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #255C99 0%, #191f2e 80%, #22264a 100%);
  opacity: 0.82;
}
body::after {
  content: '';
  display: block;
  position: fixed;
  z-index: -1;
  left: 0; right: 0; top: 45%; bottom: 0;
  background: radial-gradient(circle at 80% 70%, #B0C779 0%, rgba(176,199,121, 0.06) 60%, transparent 90%),
    radial-gradient(circle at 0% 90%, #255C99 0%, rgba(37,92,153, 0.06) 70%, transparent 95%);
  opacity: 0.8;
}
/* =============== CONTAINER & GLOBAL LAYOUT =================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .container { max-width: 990px; }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .content-wrapper { max-width: 100%; }
}
/* =============== HEADER & MAIN NAVIGATION =================== */
header {
  background: #202648aa;
  box-shadow: 0 2px 20px 0 #255c9980;
  position: sticky;
  top: 0; z-index: 10;
  border-bottom: 2px solid #B0C77960;
  width: 100vw;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 82px;
}
header img[alt="Odkryj Polskę"] {
  width: 140px;
  height: auto;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #B0C779;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 8px;
  position: relative;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: #255C99;
  color: #fff;
  box-shadow: 0 0 14px #255C99, 0 0 8px #B0C77960 inset;
}
.btn-primary {
  background: linear-gradient(90deg,#255C99 60%,#B0C779 120%);
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  padding: 12px 32px;
  border-radius: 24px;
  box-shadow: 0 2px 16px #255C9988, 0 0 16px #B0C77920;
  margin-left: 18px;
  margin-right: 6px;
  transition: background 0.22s, color 0.18s, transform 0.21s;
  border: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg,#B0C779 0%,#255C99 80%);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 8px 24px #191f2ecc, 0 0 10px #B0C77990;
}
header .btn-primary{
  margin-left: 8px; margin-right:0;
}
/* =============== BURGER MENU =============== */
.mobile-menu-toggle {
  display: none;
  background: #255C99;
  color: #fff;
  border-radius: 14px;
  width: 48px; height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px #255C997a;
  transition: background 0.18s, box-shadow 0.18s;
  z-index: 50;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #B0C779;
  color: #191f2e;
  box-shadow: 0 0 18px #B0C779cc, 0 0 6px #255C99cc;
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 1001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1d2036fa;
  backdrop-filter: blur(6px);
  transform: translateX(-100vw);
  transition: transform .33s cubic-bezier(.48,0,.25,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #255C99;
  color: #fff;
  width: 48px; height: 48px;
  font-size: 1.7rem;
  margin:32px 24px 4px 0;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 16px #255C9977;
  transition: background 0.19s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #B0C779;
  color:#191f2e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin: 48px 0 0 36px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat',sans-serif;
  color: #fff;
  font-weight: 600;
  background: none;
  border-radius: 8px;
  padding:10px 24px;
  transition: color 0.18s, background 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B0C779;
  background: #255C99;
}
/* Responsive Nav */
@media (max-width: 990px) {
  header nav { display: none; }
  header .btn-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}
/* =============== HERO SECTION / MAIN =================== */
main .section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(25,31,46,0.84);
  border-radius: 32px;
  backdrop-filter: blur(2px);
  box-shadow: 0 12px 48px #255C9928;
}
main .section:last-child, section:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  main .section, section {
    padding: 24px 7px;
    border-radius: 14px;
    margin-bottom: 36px;
  }
}
/* =============== FLEX LAYOUTS & FEATURED GRIDS =================== */
.feature-grid, .region-grid, .service-grid, .post-teasers, .inspiration-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.feature-grid > div, .region-grid > div, .service-grid > div, .inspiration-cards > div, .post-teasers > div {
  background: #202648;
  border-radius: 19px;
  box-shadow: 0 2px 18px #255C9922, 0 0 8px #B0C77922;
  padding: 28px 22px 20px 22px;
  flex: 1 1 220px;
  min-width: 150px;
  max-width: 197px;
  transition: transform .17s, box-shadow .19s;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-grid > div:hover, .region-grid > div:hover, .service-grid > div:hover, .inspiration-cards > div:hover, .post-teasers > div:hover {
  transform: translateY(-6px) scale(1.035);
  box-shadow:0 8px 40px #255C9960,0 0 18px #B0C77930;
}
/* =============== TESTIMONIAL CARDS =============== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #191f2e;
  border-radius: 22px;
  box-shadow: 0 2px 24px #22264a40, 0 0 6px #B0C77918;
  margin-bottom: 20px;
  border-left: 5px solid #255C99;
  font-size: 1.08rem;
  flex-wrap: wrap;
  z-index: 1;
}
.testimonial-card strong {
  color: #255C99;
  font-size: 0.99rem;
  margin-left: auto;
  font-family: 'Montserrat',sans-serif;
}
.testimonial-card blockquote {
  background: none;
  color: #191f2e;
  padding: 0;
  border: none;
  box-shadow: none;
  font-style: italic;
  margin-right: 18px;
}
@media (max-width: 768px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; padding:18px; }
  .testimonial-card strong { margin-left: 0; margin-top:8px; }
}
/* ================ MOBILE FLEX GRIDS =============== */
@media (max-width: 800px) {
  .feature-grid, .region-grid, .service-grid, .inspiration-cards, .post-teasers {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .region-grid > div, .service-grid > div,
  .inspiration-cards > div, .post-teasers > div {
    min-width: 0;
    max-width: 100%;
  }
}
/* ================ SPACING UTILITIES =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #202648;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 16px #255C9931;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}
.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) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ================ FOOTER =============== */
footer {
  background: #22264a;
  border-top: 2px solid #255C995a;
  color: #d0d5e4;
  margin-top: 60px;
  padding: 0 0 20px 0;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 12px 0;
  gap: 32px;
  border-bottom: 1px solid #255C9967;
}
.footer-top img[alt="Odkryj Polskę"] {
  width: 130px;
  margin-right: 14px;
}
.footer-top nav {
  display: flex;
  gap: 22px;
}
.footer-top nav a {
  color: #B0C779;
  font-family: 'Montserrat',sans-serif;
  font-size: 0.99rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background .17s, color .16s;
}
.footer-top nav a:hover { color:#fff; background: #255C99; }
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons img {
  width: 29px;
  filter: brightness(1.1) drop-shadow(0 0 6px #B0C77944);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 19px;
  font-size: 0.95rem;
}
.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color:#d0d5e4;
}
.footer-bottom img {
  width:20px;
  vertical-align: middle;
  opacity: 0.82;
}
@media (max-width: 800px) {
  .footer-top { flex-direction: column; align-items: flex-start; gap:18px; }
  .footer-bottom { flex-direction: column; gap:14px; }
}
/* =========== COOKIE CONSENT BANNER =============== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #22264ae6;
  color: #fff;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 20px #191f2e88;
  gap: 14px;
  animation: bannerIn .44s;
}
@keyframes bannerIn {
  from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 7px;
}
.cookie-btn {
  background: #255C99;
  color: #fff;
  padding: 9px 22px;
  font-size: 1rem;
  border-radius: 16px;
  font-family: 'Montserrat', sans-serif;
  border: none;
  margin: 0 2px;
  transition: background .19s, color .17s, box-shadow .22s;
  box-shadow: 0 2px 10px #255C9920;
  letter-spacing: 0.01em;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #B0C779;
  color: #22264a;
  box-shadow: 0 0 20px #B0C77960;
}
.cookie-btn.cookie-settings {
  background: #202648;
  color: #B0C779;
  border: 1.5px solid #B0C779;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #B0C779;
  color: #202648;
}
/* COOKIE CONSENT MODAL */
.cookie-modal {
  position: fixed;
  z-index: 2001;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(25, 31, 46, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn .23s;
  pointer-events: auto;
}
@keyframes modalIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-inner {
  background: #fff;
  color: #191f2e;
  border-radius: 20px;
  max-width: 420px;
  width: 92vw;
  padding: 36px 30px 28px 30px;
  box-shadow: 0 6px 48px #255C9980;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  font-size: 1rem;
}
.cookie-modal-title {
  color: #255C99;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: #B0C779;
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 36px; height: 36px;
  font-size: 1.3rem;
  transition: background .16s, color .16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #255C99;
  color: #fff;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px 0;
}
.cookie-cat input[type="checkbox"] {
  accent-color: #255C99;
  width: 20px;
  height: 20px;
}
.cookie-cat label {
  color: #191f2e;
  font-weight: 500;
  font-family: 'Montserrat',sans-serif;
}
.cookie-cat .cookie-essential {
  font-weight: 700;
  color: #255C99;
}
.cookie-modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cookie-modal-inner { padding: 18px 7px; font-size: .98rem; }
  .cookie-modal-title { font-size: 1.13rem; }
}
/* =============== MISC FLEXBOX LAYOUT UTILS FOR HTML CLASSES =========== */
.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;
}
/* =================== SCROLLBAR & SELECTION UI ===================== */
body::-webkit-scrollbar {
  width: 12px;
  background: #22264a;
}
::-webkit-scrollbar-thumb {
  background: #255C99;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover { background: #B0C779; }
::selection {
  background: #255C99;
  color: #fff;
}
/* =================== TRANSITIONS & INTERACTIONS ================== */
a, .btn-primary, .cookie-btn, .mobile-menu-toggle,
.feature-grid > div, .region-grid > div, .service-grid > div, .inspiration-cards > div, .post-teasers > div {
  transition-timing-function: cubic-bezier(.7,0,.21,1);
}
/* ===== Animations for loading / micro-interactions ===== */
.section, .content-wrapper, .feature-grid>div, .testimonial-card {
  animation: fadein 0.5s cubic-bezier(.7,0,.21,1) both;
}
@keyframes fadein { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }
/* ===================== RESPONSIVE HEADINGS ================== */
@media (max-width:500px) { h1{font-size:1.5rem;} h2{ font-size:1.15rem;} }
/* ========== FORMS, INPUTS, FIELDSETS ========== */
input, textarea, select {
  border-radius: 8px;
  border: 1.5px solid #255C99;
  min-height: 42px;
  background: #202648;
  color: #fff;
  padding: 7px 14px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #B0C779;
  border-color: #B0C779;
  background: #191f2e;
}
label {
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-size: 0.98rem;
}
/* ================ ICONS ================== */
img[alt*="icon-"], img[alt*="Adres"], img[alt*="Telefon"], img[alt*="E-mail"], img[alt*="Facebook"], img[alt*="Instagram"], img[alt*="Godziny"] {
  filter: brightness(1.3) drop-shadow(0 0 3px #B0C77977);
  margin-right: 7px;
  vertical-align: middle;
}
/* =============== BRAND COLORS (fallbacks for variables) =============== */
:root {
  --primary: #255C99;
  --secondary: #B0C779;
  --accent: #fff;
}
/* =================== UTILITIES ===================== */
.mt-0 { margin-top:0 !important; }
.mb-0 { margin-bottom:0 !important; }
.mt-2 { margin-top:2px !important; }
.mt-4 { margin-top:4px !important; }
.mt-8 { margin-top:8px !important; }
.mt-16 { margin-top:16px !important; }
.mt-32 { margin-top:32px !important; }
/* ================= END ================== */
