/* RESET & BASE TYPOGRAPHY ----------------------------------- */
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.6;
  background: #F7FFF7;
  color: #1a202c;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #134E6F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BFA046; /* Gold accent on hover */
  outline: none;
}
ul,li {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* BRAND TYPOGRAPHY ------------------ */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #232323;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p,li {
  font-family: 'Lato', Arial, sans-serif;
  color: #222;
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: #134E6F;
}

/* LUXURY PREMIUM EFFECTS -------------- */
.gold {
  color: #BFA046;
}

/* CONTAINER & LAYOUT --------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(31,40,61,0.06),0 1.5px 3.5px rgba(191,160,70,0.04);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* FLEX PATTERNS ------------------- */
.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;
}

/* HEADER NAVIGATION ------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(31,40,61,0.05);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header > a img {
  height: 48px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px 14px 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #134E6F;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7FFF7;
  color: #BFA046;
}

/* MOBILE HEADER & MENU ------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #134E6F;
  background: none;
  border: none;
  position: relative;
  z-index: 120;
  margin-left: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #EEE7D5;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 80px 10px rgba(31,40,61,0.15);
  z-index: 9999;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  transform: translateX(-100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #134E6F;
  margin: 18px 0 0 22px;
  background: none;
  border: none;
  align-self: flex-end;
  border-radius: 8px;
  padding: 4px 12px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F7FFF7;
  color: #BFA046;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 54px 0 0 40px;
  width: 70vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #134E6F;
  padding: 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.18s, color 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7FFF7;
  color: #BFA046;
}

/* HERO SECTION --------------------- */
.hero {
  background: linear-gradient(120deg, #FFFDF7 56%, #F7FFF7 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 11px 30px rgba(191,160,70,0.05);
  padding: 50px 0 60px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #134E6F;
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.hero p {
  color: #232323;
  font-size: 1.15rem;
  margin-bottom: 24px;
  max-width: 460px;
}
.cta.primary {
  display: inline-block;
  background: #BFA046;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.14rem;
  padding: 12px 38px;
  border-radius: 32px;
  border: none;
  text-shadow: 0 2px 8px rgba(191,160,70,0.06);
  box-shadow: 0 2px 12px rgba(191,160,70,0.09);
  margin: 8px 0;
  letter-spacing: 0.03em;
  transition: background 0.2s, box-shadow 0.18s, transform 0.18s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #a08a44;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(191,160,70,0.18);
}
.cta.secondary {
  background: #fff;
  color: #BFA046;
  border: 2px solid #BFA046;
  font-weight: 700;
  font-family: 'Montserrat';
  border-radius: 32px;
  padding: 12px 28px;
  margin-left: 0;
  transition: background 0.2s, color 0.2s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #BFA046;
  color: #fff;
}

.cta-section {
  background: #FFEFC7;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(191,160,70,0.06);
  text-align: left;
  margin-bottom: 60px;
}

/* FEATURES & CARDS ------------------- */
.features {
  background: #F7FFF7;
  border-radius: 24px;
  box-shadow: 0 3px 21px 0 rgba(31,40,61,0.05),0 1px 2.5px rgba(191,160,70,0.03);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  width: 100%;
}
.feature-item {
  background: #fff;
  border: 1px solid #EEE7D5;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(191,160,70,0.04);
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  padding: 24px 22px 22px 22px;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.17s, border 0.17s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 44px;
  height: 44px;
}
.feature-item h3 {
  color: #134E6F;
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.feature-item p {
  font-size: 1rem;
}
.feature-item:hover {
  border: 1px solid #BFA046;
  box-shadow: 0 7px 18px rgba(191,160,70,0.13);
  transform: translateY(-3px) scale(1.025);
}

.activity-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.activity-card {
  background: #fff;
  border: 1px solid #EEE7D5;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(191,160,70,0.04);
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 330px;
  padding: 22px 20px 20px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border 0.17s, transform 0.18s;
}
.activity-card h3 {
  color: #134E6F;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.activity-card:hover {
  border: 1px solid #BFA046;
  box-shadow: 0 7px 18px rgba(191,160,70,0.13);
  transform: translateY(-3px) scale(1.025);
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.event-item {
  background: #fff;
  border: 1px solid #EEE7D5;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(191,160,70,0.04);
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 340px;
  padding: 22px 22px 20px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border 0.17s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-item h3 {
  color: #134E6F;
}
.event-item span {
  color: #BFA046;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
}
.event-item:hover {
  border: 1px solid #BFA046;
  box-shadow: 0 7px 18px rgba(191,160,70,0.13);
  transform: translateY(-3px) scale(1.025);
}

/* ABOUT - VALUES --------------------- */
.about-values ul {
  padding-left: 1em;
}
.about-values li {
  margin-bottom: 10px;
}

/* TESTIMONIALS ----------------------- */
.testimonials {
  background: #fbf8f2;
  border-radius: 24px;
  padding: 40px 0;
}
.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #EEE7D5;
  box-shadow: 0 4px 16px rgba(191,160,70,0.06);
  flex: 1 1 280px;
  min-width: 262px;
  max-width: 360px;
  gap: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 24px 20px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border 0.13s, transform 0.14s;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.08rem;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #BFA046;
  font-size: 1.025rem;
  margin-top: 8px;
}
.testimonial-card:hover {
  border: 1.5px solid #BFA046;
  box-shadow: 0 12px 20px rgba(191,160,70,0.12);
  transform: scale(1.019);
}

/* MAP & CONTACT ---------------------- */
.map, .location-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}
.location-icon img {
  width: 52px;
  height: 52px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-form .contact-hint {
  background: #F7FFF7;
  border-left: 4px solid #BFA046;
  padding: 18px 22px;
  border-radius: 8px;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* LIST FILTERS ----------------------- */
.activity-filter, .event-filter {
  margin: 30px 0 18px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #134E6F;
  display: flex;
  align-items: center;
  gap: 20px;
}
.activity-filter ul, .event-filter ul {
  display: flex;
  gap: 14px;
  margin-left: 8px;
}
.activity-filter li, .event-filter li {
  color: #BFA046;
  background: #FFF7E3;
  padding: 4px 16px;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
}
.activity-map {
  background: #F7FFF7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-size: 1.1rem;
  color: #134E6F;
  margin-top: 18px;
}
.activity-map img {
  width: 22px;
  height: 22px;
}

/* FOOTER ----------------------------- */
footer {
  background: #134E6F;
  color: #fff;
  border-radius: 24px 24px 0 0;
  margin-top: 48px;
  padding: 38px 0 24px 0;
  box-shadow: 0 -4px 18px rgba(191,160,70,0.08);
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #BFA046;
  font-weight: 600;
  font-size: 1.06rem;
  transition: color 0.17s, text-decoration 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: #fff;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  filter: brightness(1) saturate(1.8);
}

/* LEGAL PAGES (privacy, gdpr, etc) ----- */
.legal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(191,160,70,0.04);
  padding: 36px 22px 34px 22px;
}

/* SUCCESS PAGE ------------------------ */
.success-message {
  background: #fffbe9;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(191,160,70,0.10);
  padding: 52px 20px 65px 20px;
  text-align: center;
}
.success-message h1 {
  color: #BFA046;
  font-size: 2.35rem;
  margin-bottom: 17px;
}
.success-message p {
  color: #134E6F;
  font-size: 1.13rem;
  margin-bottom: 36px;
}

/* WEATHER WIDGET SECTION -------------- */
.weather-widget {
  background: #fff;
  border-radius: 16px;
  padding: 34px 22px 28px 22px;
  box-shadow: 0 2px 8px rgba(191,160,70,0.05);
}
.weather-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.weather-info img {
  width: 44px;
  height: 44px;
}
.weather-info span, .weather-info strong {
  color: #134E6F;
}

/* UL LISTS & PACKING LIST ------------- */
ul, ol {
  padding-left: 1.35em;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.7;
}
.packing-list ul {
  padding-left: 1.5em;
  margin-bottom: 16px;
}

/* SUBMISSION CALL (event suggestions) -- */
.submission-form {
  background: #FFFDF7;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(191,160,70,0.05);
  margin-bottom: 60px;
}

/* ANIMATIONS & HOVER ------------------ */
.card, .feature-item, .activity-card, .event-item, .testimonial-card {
  transition: box-shadow 0.17s, border 0.14s, transform 0.14s;
}

/* SHADOWS ----------------------------- */
.card, .feature-item, .activity-card, .testimonial-card, .event-item {
  box-shadow: 0 2px 8px rgba(191,160,70,0.04);
}

/* COOKIE BANNER & MODAL --------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 12000;
  background: #fff;
  color: #134E6F;
  box-shadow: 0 -2px 36px rgba(191,160,70,0.13);
  border-top: 2.5px solid #BFA046;
  padding: 23px 22px 32px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.09rem;
  animation: cbannerIn 0.7s cubic-bezier(0.37,0,0.63,1);
}
@keyframes cbannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  63% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 18px;
  width: 100%;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  padding: 11px 22px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.16s, color 0.15s;
  margin-right: 8px;
  margin-bottom: 4px;
}
.cookie-banner .cookie-btn.accept {
  background: #BFA046;
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #a08a44;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #134E6F;
  border: 1.4px solid #134E6F;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #f8f8f8;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #BFA046;
  border: 1.4px solid #BFA046;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #fcf8ef;
}

/* COOKIE MODAL POPUP ----------------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-54%) scale(1);
  min-width: 319px;
  max-width: 95vw;
  width: 520px;
  max-height: 90vh;
  z-index: 13000;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 80px 0 rgba(191,160,70,0.26);
  padding: 36px 30px 36px 30px;
  font-family: 'Lato', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cmodalPop 0.35s cubic-bezier(0.41,0,0.59,1);
}
@keyframes cmodalPop {
  0% { opacity: 0; transform: translate(-50%,0%) scale(0.88); }
  100% { opacity: 1; transform: translate(-50%,-54%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: #134E6F;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 11px;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 13px;
  background: #f3ead2;
  position: relative;
  border: none;
  transition: background 0.22s;
}
.cookie-modal .cookie-toggle[data-checked="true"] {
  background: #BFA046;
}
.cookie-modal .cookie-toggle-knob {
  position: absolute;
  left: 3px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #fff;
  transition: left 0.22s;
}
.cookie-modal .cookie-toggle[data-checked="true"] .cookie-toggle-knob {
  left: 17px;
}
.cookie-modal .cookie-toggle[disabled] {
  opacity: 0.44;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .cookie-btn {
  padding: 10px 20px;
  border-radius: 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-btn.save {
  background: #BFA046;
  color: #fff;
  border: none;
  transition: background 0.15s;
}
.cookie-modal .cookie-btn.save:hover {
  background: #a08a44;
}
.cookie-modal .cookie-btn.cancel {
  background: #fff;
  color: #134E6F;
  border: 1.2px solid #134E6F;
}
.cookie-modal .cookie-btn.cancel:hover {
  background: #f3f3f3;
}
.cookie-modal .cookie-btn:focus { outline: 2px solid #BFA046; }

/* RESPONSIVE DESIGN ------------------- */
@media (max-width: 980px) {
  .container {
    padding: 0 12px;
  }
  header, footer {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 5vw;
  }
  header {
    flex-direction: row;
    padding: 10px 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 36px 0 30px 0;
    border-radius: 0 0 16px 16px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .feature-grid, .activity-cards, .testimonial-wrapper, .event-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .activity-card, .event-item, .testimonial-card {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
  .cta.primary, .cta.secondary {
    width: 100%;
    text-align: center;
  }
  .footer-nav, .footer-contact {
    flex-direction: column;
    gap: 13px;
    align-items: center;
  }
  .section {
    padding: 20px 5vw;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .weather-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .section, .legal, .hero, .cta-section { padding: 13px 3vw; }
  .footer-nav, .footer-contact { gap: 11px; }
  .cookie-modal { min-width: 94vw; padding: 14px 8px; }
}
