/* RESET & BASELINE --------------------------- */
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,
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  /* Responsive font-size base; overwritten at breakpoints if needed */
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #26342C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #19506D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #25634F;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
}
ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

/* TYPOGRAPHY --------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #25634F;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  text-transform: uppercase;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  text-transform: none;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 1.2em;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #25634F;
  padding-left: 16px;
  margin-bottom: 1em;
  color: #19506D;
  background:#F1DFB2;
  border-radius: 8px;
  font-size:1.15rem;
}
strong,b {
  font-weight: 700;
}
/* STRUCTURE & LAYOUT --------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(25,80,109,.07), 0 1.2px 3px rgba(43,70,74,.06);
  margin-bottom: 20px;
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 270px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 7px 32px rgba(37,99,79,.28), 0 2px 6px rgba(25,80,109,.07);
  transform: translateY(-4px) scale(1.012);
  z-index: 5;
}

/* HERO ---------------------------------- */
.hero {
  background: linear-gradient(120deg, #E6F4F0 80%, #F1DFB2 100%);
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  padding-top: 3.2em;
  padding-bottom: 2em;
  min-height: 330px;
  margin-bottom: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}

/* FEATURE GRID & CARDS --------------------------- */
.features {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border: 2px solid #E6F4F0;
  border-radius: 18px;
  min-width: 220px;
  flex: 1 1 220px;
  padding: 26px 18px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.16s;
  box-shadow: 0 1px 5px rgba(37, 99, 79, 0.06),0 0.5px 2px rgba(25,80,109,0.04);
}
.feature-item img {
  width: 48px; height: 48px;
  padding: 5px;
  background: #E6F4F0;
  border-radius: 10px;
  margin-bottom: 8px;
}
.feature-item h3 {
  color: #19506D;
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-family: 'Merriweather', Georgia, serif;
  letter-spacing: 0.2px;
  font-weight: 600;
}
.feature-item:hover, .feature-item:focus {
  border-color: #25634F;
  box-shadow: 0 8px 30px rgba(25,80,109,0.14),0 1.2px 4px rgba(37,99,79,0.13);
  z-index: 4;
}

/* BUTTONS & CALLS TO ACTION --------------------------- */
.cta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  outline: none;
  border-radius: 12px;
  padding: 13px 32px;
  font-size: 1.07rem;
  letter-spacing: 2px;
  cursor: pointer;
  gap: 8px;
  transition: background 0.2s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  display: inline-block;
  box-shadow: 0 1.5px 7px rgba(25,80,109,.08);
}
.cta.primary {
  background: #25634F;
  color: #fff;
  border: 2px solid #25634F;
}
.cta.primary:hover, .cta.primary:focus {
  background: #fff;
  color: #25634F;
  border-color: #25634F;
  box-shadow: 0 7px 26px #25634f23;
}
.cta.secondary {
  background: #F1DFB2;
  color: #25634F;
  border: 2px solid #F1DFB2;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #25634F;
  color: #F1DFB2;
  border: 2px solid #25634F;
}

button,
.mobile-menu-toggle,
.mobile-menu-close {
  font-family: inherit;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: #25634F;
  cursor: pointer;
  transition: color 0.17s, background 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus,
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #19506D;
}

/* HEADER ------------------------------------- */
header {
  background: #fff;
  border-bottom: 2.5px solid #E6F4F0;
  position: sticky; top: 0; z-index: 98;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 20px;
}
.logo img {
  width: 156px;
  height: auto;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #26342C;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2.2px solid transparent;
  position: relative;
  transition: border 0.16s, color 0.18s;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #25634F;
  border-bottom: 2.2px solid #25634F;
}
.main-nav .cta.primary {
  margin-left: 20px;
}
.mobile-menu-toggle {
  display: none;
  background: #25634F;
  color: #fff;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border: none;
  position: relative;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #19506D;
}

/* MOBILE NAVIGATION MENU -------------*/
.mobile-menu {
  position: fixed;
  background: #fff;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  max-width: 375px;
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(.65,.1,.6,1);
  box-shadow: 2px 0 24px #25634f1a;
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #19506D;
  background: #F1DFB2;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 1001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 42px;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: #25634F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  padding: 10px 0;
  border-radius: 8px;
  transition: background .16s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #25634F;
}

/* Hide main-nav and show burger button on mobile */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1101px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* TESTIMONIALS --------------------------- */
.testimonials {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F1DFB2;
  border-radius: 14px;
  margin-bottom: 20px;
  margin-top: 18px;
  box-shadow: 0 0.7px 8px #19506d0f;
  border: 2px solid #E6F4F0;
}
.testimonial-card blockquote {
  color: #19506D;
  background: none;
  border-left: 3.5px solid #25634F;
  padding-left: 12px;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.testimonial-user {
  color: #25634F;
  font-weight: 700;
  font-size: .97rem;
  padding-left: 8px;
  margin-left: 8px;
  border-left: 2px solid #25634F;
}

/* ABOUT CARDS, SERVICE LISTS, FAQ, LEGAL -------------- */
.about,
.about-team,
.about-local-life,
.about-sustainability,
.about-planning,
.about-visit,
.contact-info,
.services-list,
.legal {
  background: #F8FAF8;
  border-radius: 18px;
  border: 2px solid #E6F4F0;
}
.services-list ul,
.about-team ul,
.about-planning ul,
.about-sustainability ul,
.legal ul, .contact-info ul, .about-visit ul{
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.services-list ul li, .about-team ul li, .about-planning ul li, .about-sustainability ul li, .about-local-life ul li, .legal ul li, .contact-info ul li, .about-visit ul li {
  padding: 8px 0 8px 35px;
  margin-bottom: 8px;
  background: url('../assets/icons/icon-check.svg') 8px 11px no-repeat;
  background-size: 18px 18px;
  font-size: 1.01rem;
  color: #25634F;
}
.services-list ul li .price {
  color: #19506D;
  background: #F1DFB2;
  font-weight: 700;
  border-radius: 7px;
  padding: 2px 8px;
  margin-left: 8px;
  font-size: .99rem;
}
.faq {
  margin-top: 28px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px #19506d08;
  padding: 24px 16px;
}
.faq h3 {
  margin-bottom: 12px;
  color: #19506D;
  font-size: 1.09rem;
}
.faq ul {
  margin-bottom: 0;
}
.faq ul li {
  background: none;
  font-size: .99rem;
  color: #25634F;
  font-weight: 400;
  padding-left: 0;
  margin-bottom: 10px;
  border-left: 2px solid #25634F;
  padding-left: 12px;
}
.map-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #19506D;
}

/* FOOTER -------------------------------------- */
footer {
  background: #25634F;
  color: #fff;
  padding: 32px 0 24px 0;
  border-top: 4.5px solid #F1DFB2;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.96rem;
}
.footer-nav a {
  color: #fff;
  text-transform: uppercase;
  transition: color 0.16s;
  font-weight: 600;
  letter-spacing: 1.2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F1DFB2;
}
#geo-colico {
  color: #F1DFB2;
  font-size: 0.94rem;
  margin-top: 8px;
  letter-spacing: .2px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 240px;
  gap: 12px;
}
.footer-contact img {
  width: 42px; height: 42px;
}
.footer-contact p {
  font-size: 0.94rem;
  color: #fff;
  opacity: 0.97;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.35;
}
.footer-contact a {
  color: #F1DFB2;
  text-decoration: underline;
}

/* LEGAL PAGE CONTENT (POLICY, TERMS, ETC.) --------- */
.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.legal ul li {
  background: none;
  border-left: 2px solid #25634F;
  padding-left: 12px;
  color: #19506D;
  margin-bottom: 10px;
}

/* COOKIE CONSENT BANNER ------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #19506D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 22px 24px 20px 24px;
  gap: 22px;
  box-shadow: 0 -2px 24px #25634f20;
  border-top: 5px solid #25634F;
  font-size: 1rem;
  transition: transform 0.25s cubic-bezier(.65,.1,.6,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner strong {
  color: #F1DFB2;
  font-weight: 700;
}
.cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-actions button {
  padding: 11px 23px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  color: #25634F;
  transition: background 0.14s, color 0.16s;
}
.cookie-actions .accept {
  background: #25634F;
  color: #fff;
  border: 2px solid #25634F;
}
.cookie-actions .accept:hover, .cookie-actions .accept:focus {
  background: #F1DFB2;
  color: #19506D;
  border: 2px solid #F1DFB2;
}
.cookie-actions .settings {
  background: #F1DFB2;
  color: #19506D;
  border: 2px solid #F1DFB2;
}
.cookie-actions .settings:hover, .cookie-actions .settings:focus {
  background: #fff;
  color: #25634F;
  border: 2px solid #25634F;
}
.cookie-actions .reject {
  background: #fff;
  color: #25634F;
  border: 2px solid #25634F;
}
.cookie-actions .reject:hover, .cookie-actions .reject:focus {
  background: #f9e9c9;
  color: #19506D;
  border: 2px solid #19506D;
}

/* COOKIE MODAL -------------------------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 4000;
  background: rgba(25,80,109,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.23s cubic-bezier(.65,.1,.6,1);
  pointer-events: auto;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #19506D;
  border-radius: 18px;
  box-shadow: 0 8px 40px #315d7f33;
  width: 94vw;
  max-width: 420px;
  padding: 32px 26px 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 4010;
}
.cookie-modal h2 {
  color: #25634F;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #E6F4F0;
  font-size: 1.07rem;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .category-label {
  flex: 1 1 auto;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #F1DFB2;
  border-radius: 15px;
  transition: .3s;
}
.cookie-modal .toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #25634F;
  border-radius: 50%;
  transition: .3s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  background: #25634F;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider:before {
  background: #F1DFB2;
  transform: translateX(20px);
}
.cookie-modal .toggle-switch input:disabled + .toggle-slider {
  background: #e0e0e0;
}
.cookie-modal .toggle-switch input:disabled + .toggle-slider:before {
  background: #b5b5b5;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 8px;
  padding: 11px 20px;
  border: 2px solid #25634F;
  background: #25634F;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, border 0.13s;
}
.cookie-modal button.secondary {
  background: #fff;
  color: #25634F;
  border: 2px solid #25634F;
}
.cookie-modal button.secondary:hover, .cookie-modal button.secondary:focus {
  background: #25634F;
  color: #fff;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: #F1DFB2;
  color: #19506D;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1.2rem;
}

/* RESPONSIVE BREAKPOINTS --------------------------- */
@media (max-width: 1000px) {
  .main-nav {
    gap: 14px;
  }
  header .container {
    min-height: 60px;
  }
  h1 {
    font-size: 2.1rem;
  }
  .hero {
    padding-top: 2em;
    min-height: 200px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .card {
    min-width: 210px;
    padding: 23px 10px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .footer-contact {
    align-items: flex-start;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.20rem;
  }
  .section, .legal, .about, .about-team, .about-local-life, .about-sustainability, .about-planning, .about-visit, .contact-info, .services-list {
    padding: 24px 8px;
  }
  .hero {
    padding: 16px 0 16px 0;
    min-height: 120px;
    clip-path: none;
    background: #E6F4F0;
  }
  .content-grid, .feature-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .testimonial-card, .feature-item {
    min-width: 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width:600px) {
  .hero .content-wrapper, .content-wrapper {
    padding: 0 0.5em;
  }
  .card, .feature-item {
    padding: 14px 6px;
  }
  .cookie-modal {
    max-width: 99vw;
    padding: 14px 6px;
  }
}

/* MICRO-INTERACTIONS, TRANSITIONS --------------------------- */
a, button, .cta, .feature-item, .card, .testimonial-card, .cookie-actions button {
  transition: box-shadow 0.17s, color 0.14s, background 0.13s, border 0.13s, transform 0.13s;
}
.cta:active { transform: scale(.97); }
.card:active { transform: scale(.98); }
.feature-item:active { transform: scale(.99); }

/* GEOMETRIC/STRUCTURED THEME --- DECORATIVE ELEMENTS ------------- */
.section:before {
  content: "";
  display: block;
  width: 80px;
  height: 10px;
  border-radius: 6px;
  background: #F1DFB2;
  position: absolute;
  left: 25px;
  top: 10px;
  z-index: 1;
}
.section h2 {
  position: relative;
  z-index: 2;
}
@media (max-width:600px) { 
  .section:before {
    width: 36px;
    left: 9px;
  }
}

/* MISC. ------------------------------------- */
::-webkit-scrollbar {
  width: 11px;
  background: #e9ece9;
}
::-webkit-scrollbar-thumb {
  background: #25634F;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #19506D;
}

/* Accessibility focus -------------------------------- */
:focus-visible {
  outline: 2.5px solid #19506D;
  outline-offset: 1px;
}
