/* ==================== 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;
}

body {
  line-height: 1.5;
  background: #fff;
  color: #1E4065;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img, svg {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

ul, ol {
  list-style-position: inside;
  margin-left: 0;
}

a {
  color: #23613B;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1E4065;
}

button, input, select, textarea {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #1E4065;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.22;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.22;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

p, li, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1E4065;
}
strong {
  font-weight: 900;
  color: #23613B;
}

small {
  font-size: 0.92rem;
  color: #8a9dab;
}

/* ==================== LAYOUT & CONTAINERS ==================== */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

main {
  width: 100%;
  margin-top: 80px;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.feature-grid > div {
  background: #E9F5D7;
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(30,64,101,0.06);
  padding: 32px 24px;
  flex: 1 1 210px;
  min-width: 210px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.24s, transform 0.15s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(30,64,101,0.11);
  transform: translateY(-3px) scale(1.03);
  background: #fff;
}

.text-section, .destination-list, .eco-facts, .privacy-overview, .gdpr-overview, .terms-overview, .cookie-overview, .confirmation-message, .tip-overview, .local-partnerships, .partnerships, .impact-numbers, .sustainability-principles, .faq-list {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(30,64,101,0.07);
  padding: 28px 22px;
  margin-bottom: 28px;
}

ul, ol {
  margin: 10px 0 16px 0;
  padding: 0 0 0 20px;
  line-height: 1.6;
}
/* ============== HERO/CTA SECTIONS ============== */
.hero {
  background: linear-gradient(90deg, #E9F5D7 60%, #fff 100%);
  padding: 48px 0 54px 0;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #23613B;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #1E4065;
  font-weight: 600;
}

.cta {
  background: #23613B;
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 6px 32px rgba(35,97,59,0.14);
  margin: 48px 0 0 0;
  padding: 40px 20px 30px 20px;
}
.cta h2 {
  color: #fff;
}
.cta .cta-button {
  background: #E9F5D7;
  color: #23613B;
  border-radius: 12px;
}

/* ============= BUTTONS & INTERACTIVE ============= */
.cta-button, button, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-settings-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  border-radius: 18px;
  padding: 14px 34px;
  border: none;
  cursor: pointer;
  background: #23613B;
  color: #fff;
  box-shadow: 0 2px 8px rgba(35,97,59,0.11);
  transition: background 0.18s, color 0.18s, box-shadow 0.20s, transform 0.14s;
  letter-spacing: 0.06em;
}
.cookie-banner span, footer span {
  color: white !important;
}
.cta-button:hover, .cta-button:focus,
button:hover, button:focus {
  background: #1E4065;
  color: #E9F5D7;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(35,97,59,0.18);
}

input[type="search"], select {
  border-radius: 14px;
  border: 2px solid #23613B;
  background: #fff;
  padding: 13px 16px;
  font-size: 1rem;
  min-width: 180px;
  color: #1E4065;
  margin-right: 14px;
  outline: none;
  box-shadow: 0 1px 4px rgba(30,64,101,0.08);
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  transition: border 0.17s, box-shadow 0.18s;
}
input[type="search"]:focus, select:focus {
  border-color: #1E4065;
  box-shadow: 0 3px 12px rgba(35,97,59,0.13);
}

/* ============== NAVIGATION ============== */
header {
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 1010;
  background: #fff;
  border-bottom: 3px solid #23613B;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 0;
}
header > img {
  height: 50px;
  margin: 0 32px 0 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: 8px;
  color: #23613B;
  transition: background 0.11s, color 0.11s;
}
header nav a:hover, header nav a:focus {
  background: #23613B;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  margin-left: auto;
  background: #23613B;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 1021;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(30,64,101,0.94);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.77,0,0.175,1);
  z-index: 1020;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #E9F5D7;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 24px 28px 0 0;
  width: 46px;
  height: 46px;
  padding: 0;
  overflow: visible;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 34px 0 0 38px;
}
.mobile-nav a {
  color: #E9F5D7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 8px;
  padding: 13px 22px 13px 10px;
  transition: background 0.11s, color 0.11s;
  min-width: 140px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E9F5D7;
  color: #23613B;
  margin-left: 7px;
}

/* Hide nav, show burger on mobile */
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==================== CARDS, LISTS, TESTIMONIALS ==================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #E9F5D7;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(30,64,101,0.09);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(35,97,59,0.10);
  transform: scale(1.025);
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(30,64,101,0.09);
  border-left: 6px solid #23613B;
  transition: box-shadow 0.14s, border-color 0.13s;
}
.testimonial-card p {
  color: #1E4065;
  font-size: 1.14rem;
  font-style: italic;
  font-weight: 600;
  margin-right: 16px;
}
.testimonial-card span {
  min-width: 100px;
  color: #23613B;
  font-weight: 900;
  font-size: 0.99rem;
}
.testimonial-card:hover {
  border-left: 6px solid #1E4065;
  box-shadow: 0 8px 28px rgba(30,64,101,0.13);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============= OTHER REPEATED BLOCKS ============= */
.popular-destinations, .eco-facts, .local-partnerships, .partnerships, .impact-numbers, .cookie-preferences {
  background: #E9F5D7;
  border-radius: 12px;
  padding: 14px 20px;
  color: #23613B;
  font-weight: 700;
  margin-top: 14px;
}

.destination-filters, .destination-list, .featured-destinations {
  margin-top: 16px;
  margin-bottom: 22px;
}
.destination-filters label {
  margin-right: 6px;
  font-weight: 700;
  color: #23613B;
}

.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  margin: 30px 0 16px 0;
}
.contact-footer img {
  width: 18px;
  margin-right: 10px;
  vertical-align: bottom;
}
.contact-footer span {
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  color: #1E4065;
}

/* =============== FOOTER =============== */
footer {
  background: #1E4065;
  color: #E9F5D7;
  padding: 38px 0 18px 0;
  margin-top: 60px;
  border-top: 6px solid #23613B;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
footer nav a {
  color: #E9F5D7;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 16px;
  transition: background 0.13s, color 0.1s;
}
footer nav a:hover, footer nav a:focus {
  color: #23613B;
  background: #E9F5D7;
}
footer small {
  color: #E9F5D7;
  margin-top: 13px;
}

/* =================== FORMS =================== */
input, select {
  margin-bottom: 10px;
}

input[type="search"] {
  max-width: 275px;
  display: inline-block;
  margin-right: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}
input[type="search"]::placeholder {
  color: #8a9dab;
  font-weight: 400;
}

/* =================== MODALS & OVERLAYS =================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #1E4065;
  color: #E9F5D7;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px;
  box-shadow: 0 -6px 28px rgba(30,64,101,0.17);
  z-index: 9999;
  gap: 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: banner-slidein 0.5s;
}
@keyframes banner-slidein {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  background: #23613B;
  color: #fff;
  border-radius: 13px;
  padding: 9px 26px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.16s, color 0.17s;
  box-shadow: 0 2px 6px rgba(35,97,59,0.07);
}
.cookie-banner button.accept {
  background: #23613B;
}
.cookie-banner button.reject {
  background: #fff;
  color: #23613B;
  border: 2px solid #23613B;
}
.cookie-banner button.settings {
  background: #E9F5D7;
  color: #1E4065;
  border: 2px solid #1E4065;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #1E4065;
  color: #E9F5D7;
}

.cookie-settings-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30,64,101,0.74);
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modal-fade 0.4s;
}
@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-settings-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 44px rgba(30,64,101,0.15);
  max-width: 370px;
  width: 94vw;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-settings-content h2 {
  color: #23613B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0;
}
.cookie-category label {
  font-weight: 700;
  color: #1E4065;
}
.cookie-category input[type="checkbox"] {
  width: 32px; height: 32px;
  accent-color: #23613B;
}
.cookie-settings-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-settings-modal button {
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px 22px;
  background: #23613B;
  color: #fff;
}
.cookie-settings-modal button.cancel {
  background: #E9F5D7;
  color: #1E4065;
  border: 1.5px solid #1E4065;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
  }
  .cookie-banner-buttons {
    margin-top: 8px;
  }
}

/* ============= FAQs and Misc Cards ============= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-list > div {
  background: #E9F5D7;
  border-radius: 14px;
  padding: 22px 16px 14px 16px;
  box-shadow: 0 2px 8px rgba(35,97,59,0.06);
}
.faq-list h3 {
  color: #23613B;
  font-size: 1.16rem;
  margin-bottom: 8px;
}
.faq-list p {
  color: #1E4065;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1200px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-grid > div {
    min-width: 170px;
    padding: 24px 10px;
  }
}
@media (max-width: 768px) {
  main { margin-top: 62px; }
  .section {
    padding: 24px 7px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div {
    min-width: 140px;
    border-radius: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px;
  }
  header {
    height: 62px;
  }
  header > img {
    height: 34px;
    margin-right: 11px;
    margin-left: 6px;
  }
  .contact-footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 550px) {
  .hero {
    padding: 11px 0 32px 0;
    min-height: unset;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .cta {
    padding: 21px 5px 18px 5px;
    font-size: 1rem;
    border-radius: 14px;
  }
}

/* ============== VISUAL, EFFECTS ============= */
.feature-grid > div img, .feature-grid > div svg {
  width: 48px; height: 48px;
  margin-bottom: 7px;
  display: block;
}
.card strong, .feature-grid strong {
  color: #1E4065;
}

hr {
  border: none;
  border-bottom: 2px solid #E9F5D7;
  margin: 22px 0;
}

/* ============= SPECIALS ============= */
.map, .opening-hours, .contact-details {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(30,64,101,0.07);
  padding: 18px 17px 13px 17px;
  margin-bottom: 24px;
}
.map img {
  border-radius: 8px;
  margin-top: 13px;
}

/* Subtle entry animation for sections */
.section, .feature-grid > div, .testimonial-card, .card {
  animation: fadein-entry 0.4s;
}
@keyframes fadein-entry {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* Accessibility: focus outlines */
a:focus-visible, button:focus-visible {
  outline: 3px solid #E9F5D7;
  outline-offset: 2px;
}

/* =========== UTILITIES =========== */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

/* ============= Z-INDEXING ============= */
header { z-index: 1010; }
.mobile-menu { z-index: 1020; }
.cookie-settings-modal { z-index: 10001; }
.cookie-banner { z-index: 9999; }

/**************************************
 RESPONSIVE FLEXBOX ONLY (NO GRID)
**************************************/
/* All .grid, .grid-* classes are not used; all layouts are flexbox-based and respect prescribed gap/margin rules. */
