/* -------------------------------------------------
   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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #254466;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #254466;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ECA241;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
}
input, textarea {
  font-family: inherit;
  border-radius: 4px;
  border: 1px solid #cfd7df;
  padding: 10px 14px;
  transition: box-shadow 0.2s, border 0.2s;
  font-size: 1rem;
  background: #F8F6F1;
}
input:disabled, button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
::selection {
  background: #ECA241;
  color: #254466;
}

/* -------------------------------------------------
   Brand Typography
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #254466;
}
h1 { font-size: 2.2rem; line-height: 1.18; margin-bottom: 24px; }
h2 { font-size: 1.6rem; line-height: 1.22; margin-bottom: 20px; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }
p, li {
  color: #254466;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong, b {
  font-weight: bold;
}
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #254466;
  background: #F8F6F1;
  border-left: 4px solid #ECA241;
  padding: 20px 22px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(37,68,102,0.06);
}

/* -------------------------------------------------
   Main Layout Containers
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(37,68,102,0.04);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
  padding: 28px 22px;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(37,68,102,0.10);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #F8F6F1;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(37,68,102,0.06);
  margin-bottom: 24px;
  border-left: 4px solid #ECA241;
  max-width: 560px;
}
.testimonial-card p {
  color: #254466;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #254466;
  font-size: 0.97rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  opacity: 0.86;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*---------------------------------------
   Header & Navigation
-----------------------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid #F1F2F4;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #254466;
  opacity: 0.80;
  padding: 7px 4px;
  border-radius: 7px;
  transition: color 0.22s, background 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #ECA241;
  opacity: 1;
  background: #F8F6F1;
}
.cta-button, .cta-button:visited {
  display: inline-block;
  background: #254466;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 7px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  box-shadow: 0 1px 4px rgba(37,68,102,0.08);
  border: none;
  margin-left: 16px;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #ECA241;
  color: #254466;
  box-shadow: 0 2px 16px rgba(236,162,65, 0.15);
}

/* Hamburger Mobile Menu */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #254466;
  border: none;
  padding: 8px 12px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F8F6F1;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.29s cubic-bezier(.95,-0.14,.52,1.13);
  box-shadow: -10px 0 32px rgba(37,68,102,.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 40px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #F8F6F1;
  border-radius: 50%;
  border: none;
  color: #254466;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ECA241;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 32px 0 32px;
  width: 100%;
  margin-top: 24px;
}
.mobile-nav a {
  font-size: 1.16rem;
  padding: 16px 0;
  color: #254466;
  border-radius: 7px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  transition: background 0.18s, color 0.17s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ECA241;
  color: #fff;
}

/* Only on mobile: show hamburger, hide nav */
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

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

/* -------------------------------------------------
   HERO, Feature & Section Styles
-------------------------------------------------- */
.hero, .about-hero, .offers-hero, .city-list-hero, .inspirations-hero, .blog-hero, .contact-hero, .thank-you {
  background: #F8F6F1;
  border-radius: 0 0 24px 24px;
  padding: 56px 0 64px 0;
  margin-bottom: 60px;
}
.hero .container, .about-hero .container, .offers-hero .container, .city-list-hero .container,
.inspirations-hero .container, .blog-hero .container, .contact-hero .container, .thank-you .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper, .about-hero .content-wrapper, .offers-hero .content-wrapper, .city-list-hero .content-wrapper,
.inspirations-hero .content-wrapper, .blog-hero .content-wrapper, .contact-hero .content-wrapper, .thank-you .content-wrapper {
  align-items: center;
  max-width: 740px;
  text-align: center;
}
.hero h1, .about-hero h1, .offers-hero h1, .city-list-hero h1, .inspirations-hero h1, .blog-hero h1, .contact-hero h1, .thank-you h1 {
  color: #254466;
  font-size: 2.4rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

.features {
  background: #fff;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 12px;
  justify-content: flex-start;
}
.features .feature-grid > div {
  flex: 1 1 210px;
  min-width: 190px;
  background: #F8F6F1;
  border-radius: 12px;
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(37,68,102,0.04);
  transition: box-shadow 0.18s, background 0.17s;
}
.features .feature-grid > div:hover {
  box-shadow: 0 8px 28px rgba(37,68,102,0.13);
  background: #fff;
}
.features img {
  width: 38px;
  margin-bottom: 12px;
}
.features h3, .features p {
  margin-bottom: 0;
}

.city-list, .city-cards, .offer-cards, .theme-tiles, .story-list, .post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.city-list > div, .city-cards > div, .offer-cards > div, .theme-tiles > div, .story-list > div, .post-list > article {
  flex: 1 1 220px;
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(37,68,102,0.04);
  padding: 22px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.city-list > div:hover, .city-cards > div:hover, .offer-cards > div:hover,
.theme-tiles > div:hover, .story-list > div:hover, .post-list > article:hover {
  box-shadow: 0 2px 16px rgba(37,68,102,0.09);
}
.city-cards .cta-button, .offer-cards .cta-button, .theme-tiles .cta-button {
  margin-top: 16px;
}

.story-list, .post-list {
  gap: 28px;
}

/* City Filter & Search Bar */
.city-filter .search-bar, .city-filter .category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}
.city-filter label {
  font-weight: 500;
  color: #254466;
  margin-right: 5px;
}
.city-filter input {
  max-width: 260px;
}
.category-filters button,
.filters button {
  background: #F8F6F1;
  color: #254466;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.98rem;
  margin-right: 0px;
  border: none;
  cursor: not-allowed;
  opacity: 0.75;
}
.category-filters button:disabled,
.filters button:disabled {
  opacity: 0.5;
}
.category-filters span, .filters span {
  font-weight: 600;
  color: #254466;
  margin-right: 8px;
}

/* Inspiration Themes Grid */
.theme-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.theme-tiles > div {
  flex: 1 1 230px;
  min-width: 210px;
}

/* Newsletter Signup */
.signup-form {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin: 18px 0 12px 0;
}
.signup-form input {
  min-width: 200px;
}
.signup-form button {
  background: #254466;
  color: #fff;
  border-radius: 8px;
  padding: 11px 26px;
  border: none;
  font-size: 1rem;
  transition: background 0.22s;
}
.signup-form button:hover {
  background: #ECA241;
  color: #254466;
}

/* Filters */
.filters {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
}

/* Trust Signals */
.trust-signal .content-wrapper, .rodo-trust .content-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F8F6F1;
  border-radius: 7px;
  padding: 20px;
  margin: 30px 0 0 0;
}
.trust-signal img, .rodo-trust img {
  width: 28px;
  margin-right: 8px;
}
.trust-signal span, .rodo-trust span {
  font-size: 1.02rem;
  color: #254466;
  font-weight: 500;
}

/* In-page Callouts & CTA */
.inspiration-callout, .inspiration-cta, .offers-cta, .contact-cta {
  background: #F8F6F1;
  border-radius: 14px;
  margin-bottom: 44px;
}
.inspiration-callout {
  padding: 40px 0;
  text-align: center;
}
.inspiration-callout blockquote {
  text-align: center;
  margin-bottom: 18px;
  font-size: 1.15rem;
}
.contact-cta, .offers-cta, .inspiration-cta {
  text-align: center;
  padding: 40px 0;
}
.contact-cta h2, .offers-cta h2, .inspiration-cta h2 {
  margin-bottom: 12px;
}
.contact-cta .cta-button, .offers-cta .cta-button, .inspiration-cta .cta-button {
  margin-top: 14px;
}

/* -------------------------------------------------
   Footer
-------------------------------------------------- */
footer {
  background: #fff;
  border-top: 1px solid #F1F2F4;
  padding: 40px 0 14px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 1rem;
  color: #254466;
  opacity: 0.7;
}
.footer-menu a {
  color: #254466;
  opacity: 0.8;
  padding: 0 5px;
  font-size: 0.98rem;
}
.footer-menu a:hover {
  color: #ECA241;
}
.contact-details {
  font-size: 0.96rem;
  color: #254466;
  opacity: 0.94;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-details img {
  vertical-align: middle;
  margin-right: 4px;
  position: relative;
  top: -2px;
  width: 16px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  opacity: 0.7;
  margin-top: 20px;
}
.footer-branding img {
  width: 38px;
}

/* -------------------------------------------------
   Cookie Consent Banner (Fixed)
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  background: #F8F6F1;
  box-shadow: 0 -2px 16px rgba(37,68,102,0.13);
  padding: 18px 8px 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.38s cubic-bezier(.93,.14,.31,.97);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  color: #254466;
  font-size: 1rem;
  margin: 0 0 5px 0;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
}
.cookie-banner button {
  background: #254466;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  min-width: 120px;
  font-weight: 500;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ECA241;
  color: #254466;
}
.cookie-banner .cookie-settings-btn {
  background: #F8F6F1;
  color: #254466;
  border: 1px solid #254466;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #254466;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(37,68,102,0.29);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: fadeIn 0.19s;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.cookie-modal {
  background: #fff;
  padding: 32px 22px 26px 22px;
  border-radius: 16px;
  max-width: 400px;
  width: 96vw;
  box-shadow: 0 4px 32px rgba(37,68,102,0.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .category label {
  font-weight: 500;
  font-size: 1rem;
  margin-left: 3px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #F8F6F1;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  color: #254466;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #ECA241;
  color: #fff;
}

/* Category toggles (fake switches) */
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.cookie-modal .switch input {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  background: #ECA241;
  border-radius: 16px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background .16s;
}
.cookie-modal .switch input:checked + .slider {
  background: #254466;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  transition: .2s;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0,0,0,0.09);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(18px);
}
/* Always enabled - disabled switch */
.cookie-modal .switch input:disabled + .slider {
  background: #B6C0CC;
  cursor: not-allowed;
}
.cookie-modal .category input[disabled] + .slider:before {
  background: #e3e5e8;
}

/* -------------------------------------------------
   Policy page styles
-------------------------------------------------- */
.policy-text, .rodo-trust {
  padding-top: 44px;
  padding-bottom: 36px;
}
.policy-text ul {
  margin: 18px 0 16px 0;
  padding-left: 20px;
  list-style: disc inside;
  color: #254466;
}
.policy-text li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* -------------------------------------------------
   Lists and Miscellaneous
-------------------------------------------------- */
ul, .content-wrapper ul {
  margin: 12px 0 12px 24px;
  padding: 0 0 0 0;
  list-style: disc inside;
  color: #254466;
}

li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* -------------------------------------------------
   Responsive
-------------------------------------------------- */
@media (max-width: 1120px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .features .feature-grid, .card-container, .city-list, .offer-cards, .theme-tiles, .city-cards, .story-list, .post-list {
    gap: 16px;
  }
  .hero h1, .about-hero h1, .offers-hero h1, .city-list-hero h1, .inspirations-hero h1, .blog-hero h1, .contact-hero h1, .thank-you h1 {
    font-size: 1.55rem;
  }
  .content-wrapper {
    gap: 12px;
  }
  .section, .inspiration-callout, .inspiration-cta, .offers-cta, .contact-cta {
    padding: 26px 8px;
    margin-bottom: 30px;
  }
  .hero, .about-hero, .offers-hero, .city-list-hero, .inspirations-hero, .blog-hero, .contact-hero, .thank-you {
    padding: 38px 0 40px 0;
    margin-bottom: 36px;
    border-radius: 0 0 18px 18px;
  }
  .testimonial-card {
    padding: 14px 9px 16px 14px;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  /* Flex layouts become column */
  .features .feature-grid, .card-container, .city-list, .offer-cards, .theme-tiles, .city-cards, .story-list, .post-list {
    flex-direction: column;
    align-items: stretch;
  }
  .content-grid, .footer-branding, .signup-form, .trust-signal .content-wrapper, .rodo-trust .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-branding {
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 6px;
  }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  .cta-button, .cookie-banner button, .signup-form button {
    padding: 10px 16px;
    font-size: 0.97rem;
  }
  .policy-text, .rodo-trust {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .hero, .about-hero, .offers-hero, .city-list-hero, .inspirations-hero, .blog-hero, .contact-hero, .thank-you {
    padding: 22px 0 22px 0;
    border-radius: 0;
  }
}

/* -------------------------------------------------
   Utilities and Effects
-------------------------------------------------- */
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.rounded { border-radius: 10px !important; }
.shadow {
  box-shadow: 0 2px 8px rgba(37,68,102,0.08);
}

/* Microinteractions & transitions */
.cta-button, .card, .testimonial-card, .offer-cards > div, .city-cards > div, .theme-tiles > div, .filters button, .category-filters button, .signup-form button, .cookie-banner button {
  transition: box-shadow 0.22s, background 0.19s, color 0.19s, transform 0.15s;
}
.cta-button:active, .signup-form button:active, .cookie-banner button:active {
  transform: scale(0.96);
}



/* -------------------------------------------------
   END OF STYLESHEET
-------------------------------------------------- */
