/* 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F8F1F1;
  color: #30475E;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: inherit;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800|Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F8F1F1;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #30475E;
  font-weight: 800;
}
h1 { font-size: 2.375rem; margin-bottom: 20px; }
h2 { font-size: 1.875rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
p, ul, ol { font-size: 1rem; }
strong { font-weight: 700; }

/* CONTAINER STYLES */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* SECTION LAYOUT AND SPACING */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 24px 24px 32px 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  section, .section {
    padding: 26px 8px;
    margin-bottom: 36px;
    border-radius: 20px;
  }
}

/* PLAYFUL ACCENTS BG FOR HERO or HIGHLIGHTS */
.hero, .cta-banner {
  background: #F05454;
  color: #fff;
  border-radius: 40px 40px 32px 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 28px rgba(48,71,94,0.10);
  animation: gradientbg 6s linear infinite alternate;
}
@keyframes gradientbg {
  from { box-shadow: 0 6px 28px 0 rgba(240,84,84,0.14); }
  to { box-shadow: 0 12px 48px 0 rgba(48,71,94,0.23); }
}
.hero h1, .cta-banner h2 {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(48,71,94,0.10);
}
.hero .cta-btn,
.cta-banner .cta-btn {
  background: #fff;
  color: #F05454;
  font-weight: 800;
  border-radius: 32px;
  padding: 16px 30px;
  font-size: 1.125rem;
  box-shadow: 0 2px 10px rgba(48,71,94,0.08);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
  margin-top: 18px;
}
.hero .cta-btn:hover,
.cta-banner .cta-btn:hover,
.cta-btn:hover {
  background: #30475E;
  color: #fff;
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 6px 24px rgba(48,71,94,0.14);
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  background: #fff;
  border-radius: 0 0 34px 34px;
  box-shadow: 0 2px 10px rgba(48,71,94,0.07);
  z-index: 10;
  position: relative;
}
.main-nav img {
  height: 42px;
  margin-right: 12px;
  vertical-align: middle;
}
.main-nav a:not(.cta-btn) {
  color: #F05454;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 6px 10px;
  border-radius: 18px;
  transition: background 0.17s, color 0.17s;
  letter-spacing: 0.02em;
}
.main-nav a:not(.cta-btn):hover,
.main-nav a.active:not(.cta-btn) {
  color: #30475E;
  background: #F8F1F1;
}
.cta-btn {
  background: #F05454;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 800;
  padding: 12px 24px;
  margin-left: 12px;
  box-shadow: 0 1px 8px rgba(240,84,84,0.11);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.cta-btn:focus { outline: 2px solid #30475E; }
.cta-btn:active { transform: scale(0.97); }

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #F05454;
  color: #fff;
  font-size: 2rem;
  padding: 7px 16px;
  border-radius: 50%;
  border: none;
  position: absolute;
  right: 14px;
  top: 16px;
  z-index: 18;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 10px rgba(48,71,94,0.09);
}
.mobile-menu-toggle:focus { outline: 2px solid #30475E; }
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 8px 64px rgba(48,71,94,0.19);
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.72,0.04,0.2,1.00);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #F05454;
  background: #fff;
  border: none;
  align-self: flex-end;
  margin: 20px 24px 12px 0;
  cursor: pointer;
  border-radius: 50%;
  padding: 4px 12px;
  transition: color 0.13s, background 0.13s;
}
.mobile-menu-close:hover { background: #F8F1F1; color: #30475E; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 32px;
  width: 100%;
}
.mobile-nav a {
  color: #F05454;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  padding: 14px 10px 10px 6px;
  margin-right: 12px;
  margin-bottom: 8px;
  transition: color 0.18s, background 0.18s, transform 0.13s;
}
.mobile-nav a:hover {
  background: #F8F1F1;
  color: #30475E;
  transform: translateX(6px) scale(1.04);
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }
  .main-nav a:not(.cta-btn) {
    font-size: 1rem;
  }
  .cta-btn { padding: 10px 16px; font-size: 0.95rem; }
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; }
  .main-nav a, .cta-btn { font-size: 0.96rem; padding: 7px 8px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- PLAYFUL, DYNAMIC FLEX LAYOUTS --- */
.features ul, .about-preview ul, .values ul, .latest-posts ul, .highlights ul, .contact-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 12px;
}
.features ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(48,71,94,0.11);
  padding: 18px 18px 14px 20px;
  min-width: 200px; max-width: 260px;
  font-size: 1.07rem;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.18s, background 0.18s;
}
.features ul li:hover {
  background: #F8F1F1;
  transform: translateY(-5px) scale(1.03) rotate(-2deg);
}
.features ul li img {
  height: 38px; margin-bottom: 4px;
}

@media (max-width: 950px) {
  .features ul { gap: 12px; }
  .features ul li { min-width: 160px; font-size: 0.98rem; }
}
@media (max-width: 768px) {
  .features ul, .about-preview ul, .values ul, .latest-posts ul, .highlights ul, .contact-details ul {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .features ul li { min-width: 0; width: 100%; }
}

.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 16px;
}
.card {
  margin-bottom: 20px;
  border-radius: 26px;
  box-shadow: 0 2px 10px rgba(48,71,94,0.13);
  background: #fff;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 10px 30px rgba(240,84,84,0.11);
  transform: translateY(-4px) scale(1.03) rotate(2deg);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(48,71,94,0.10);
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 390px;
  border-left: 7px solid #F05454;
  transition: box-shadow 0.19s, transform 0.19s, border 0.14s;
  color: #263037;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(240,84,84,0.17);
  border-left: 7px solid #30475E;
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
}
.testimonial-card p {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #263037;
  margin-bottom: 9px;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #30475E;
  font-family: 'Montserrat',Arial,sans-serif;
}
@media (max-width: 840px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
}

/* Feature Item - eg. how-it-works, booking-info, etc */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* BUTTONS & MICRO-INTERACTIONS */
button, .btn {
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.18s, color 0.18s, box-shadow 0.13s, transform 0.18s;
}
button:hover, .btn:hover {
  background: #30475E;
  color: #fff;
  transform: scale(1.05) rotate(-1.5deg);
}

/* Blog and Highlight stylings */
.blog-intro ul, .latest-posts ul {
  gap: 16px;
  margin-bottom: 8px;
}
.latest-posts li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(48,71,94,0.08);
  padding: 14px 16px;
  margin-bottom: 14px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.latest-posts .category {
  background: #F05454;
  color: #fff;
  border-radius: 12px;
  font-size: 0.88rem;
  padding: 3px 10px;
  margin-left: 12px;
}

/* Contact Details */
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  margin-bottom: 3px;
  font-size: 1.06rem;
}
.contact-details ul li img {
  height: 23px;
}
@media (max-width: 768px) {
  .contact-details ul li { font-size: 0.97rem; }
}

/* FOOTER */
footer {
  background: #30475E;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 38px 10px 24px 10px;
  border-radius: 34px 34px 0 0;
  position: relative;
  margin-top: 40px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 15px;
}
.footer-menu a {
  color: #F05454;
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.02rem;
  padding: 0 6px 2px 6px;
  border-radius: 12px;
  transition: background 0.13s, color 0.16s;
}
.footer-menu a:hover { background: #fff; color: #30475E; }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
}
.footer-contact a { color: #fff; text-decoration: underline; }
.footer-contact a:hover { color: #F05454; }
.footer-contact img { margin-bottom: 12px; }

@media (max-width: 768px) {
  footer { padding: 25px 0 18px 0; gap: 20px; border-radius: 24px 24px 0 0; margin-top: 30px; }
  .footer-menu { gap: 9px; font-size: 0.96rem; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 99999;
  background: #fff;
  color: #30475E;
  box-shadow: 0 -2px 42px rgba(48,71,94,0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: center;
  padding: 22px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  transition: transform 0.3s cubic-bezier(0.7,0.15,0.32,1);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-text {
  flex: 1 1 250px;
  font-size: 1.01rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #F05454;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 23px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(240,84,84,0.07);
  transition: background 0.17s, color 0.18s, transform 0.13s;
}
.cookie-banner button:focus { outline: 2px solid #30475E; }
.cookie-banner button:hover { background: #30475E; color: #fff; transform: scale(1.06) rotate(-2deg); }
.cookie-banner .settings-btn {
  background: #30475E;
  color: #fff;
  padding: 8px 18px;
}
.cookie-banner .settings-btn:hover { background: #F05454; color: #fff; }

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 7px;
  }
  .cookie-banner .cookie-text { font-size: 0.98rem; }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 92vw;
  max-width: 400px;
  background: #fff;
  color: #30475E;
  transform: translate(-50%, -50%) scale(0.95);
  border-radius: 25px;
  z-index: 100001;
  box-shadow: 0 4px 50px rgba(48,71,94,0.17);
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 32px 22px 26px 22px;
  animation: cookieModalAppear 0.35s cubic-bezier(0.71,0.13,0.32,1);
}
.cookie-modal.visible {
  display: flex;
  transform: translate(-50%, -50%) scale(1);
}
@keyframes cookieModalAppear {
  0% { opacity: 0; transform: translate(-50%, -54%) scale(0.93); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #F8F1F1;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  margin-right: 2px;
  transition: background 0.15s;
}
.cookie-modal .cookie-switch:checked {
  background: #F05454;
}
.cookie-modal .cookie-switch::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s;
}
.cookie-modal .cookie-switch:checked::before {
  left: 18px;
}
.cookie-modal .cookie-switch[disabled], .cookie-modal .cookie-switch[aria-disabled="true"] {
  opacity: 0.7;
  cursor: default;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  background: #F05454;
  color: #fff;
  padding: 8px 18px;
  border-radius: 16px;
  font-weight: 700;
  transition: background 0.2s, color 0.16s;
}
.cookie-modal .cookie-modal-actions button.settings-cancel {
  background: #30475E;
}
.cookie-modal .cookie-modal-actions button:hover {
  background: #F8F1F1;
  color: #F05454;
}

/* THANK YOU PAGE PLAYFUL ACCENT */
.thank-you {
  background: #fff4e0;
  border-radius: 33px;
  box-shadow: 0 4px 28px 0 rgba(240,84,84,0.12);
  text-align: center;
  margin-bottom: 52px;
  animation: thankUanim 2s infinite alternate cubic-bezier(.3,.62,.27,.9);
}
@keyframes thankUanim {
  from { box-shadow: 0 4px 28px rgba(240,84,84,0.11); }
  to { box-shadow: 0 8px 40px rgba(240,84,84,0.18); }
}
.thank-you .cta-btn { margin-top: 16px; }

/* GLOBAL ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .cta-btn, .card, .testimonial-card, .features ul li, button, .main-nav a, .mobile-nav a, .cookie-banner, .cookie-modal {
    transition: background 0.18s, color 0.18s, box-shadow 0.13s, transform 0.18s, border 0.13s;
  }
}

/* MISCELLANEOUS */
::-webkit-scrollbar {
  width: 8px;
  background: #F8F1F1;
}
::-webkit-scrollbar-thumb {
  background: #F05454;
  border-radius: 6px;
}

/* Responsive text alignment & minor tweaks */
@media (max-width: 570px) {
  h1, h2, h3, .hero h1, .cta-banner h2, .thank-you h1 {
    font-size: 1.25rem !important;
  }
  .footer-contact, .footer-menu { font-size: 0.93rem; }
  .card, .testimonial-card { padding: 14px 7px; min-width: 0; }
}

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/*--- END ---*/
