/* =================== RESET & BASE =================== */
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;
  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 {
  font-family: 'Roboto', Arial, sans-serif;
  color: #174A69;
  background: #E2F0F7;
  line-height: 1.65;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: #E2F0F7;
}
a { color: #174A69; text-decoration: none; transition: color 0.18s; }
a:hover, a:focus { color: #F4C95D; outline: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; background: none; border: none; cursor: pointer; outline: none; }

/* =================== BRAND COLORS =================== */
:root {
  --clr-primary: #174A69;
  --clr-secondary: #E2F0F7;
  --clr-accent: #F4C95D;
  --clr-accent2: #F6675C;
  --clr-success: #39D67C;
  --clr-info: #61B0FF;
  --clr-bg: #E2F0F7;
  --clr-white: #fff;
  --clr-shadow: rgba(23,74,105,0.08);
}

/* =================== TYPOGRAPHY =================== */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--clr-primary);
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(23,74,105,0.06);
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--clr-accent2);
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 10px;
}
h4, .h4 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 7px; }
p, li, .subheadline, dd { font-family: 'Roboto', Arial, sans-serif; color: #174A69; font-size: 1rem; max-width: 800px; }
p + p { margin-top: 12px; }
.subheadline {
  font-size: 1.17rem;
  color: var(--clr-info);
  font-weight: 500;
  margin-bottom: 12px;
}
strong, b { font-weight: bold; color: var(--clr-primary); }
dt { font-weight: bold; margin-top: 17px; }
dd { margin-left: 0; margin-bottom: 10px; }

/* =================== UTILITY =================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 20px;
}
.text-section { margin-bottom: 0; }
.text-section a.btn { margin-top: 18px; }

/* =================== SECTIONS & LAYOUT =================== */
main { padding-bottom: 80px; }
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
  justify-content: flex-start;
}

/* Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 24px var(--clr-shadow);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.21s cubic-bezier(.4,0,.2,1), box-shadow 0.21s cubic-bezier(.4,0,.2,1);
}
.card:hover { transform: translateY(-7px) scale(1.015); box-shadow: 0 12px 32px rgba(23, 74, 105, 0.16); }

/* Content grid/flex layouts */
.content-grid,
.feature-grid,
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
/* Feature list in features/offer/rooms */
.feature-grid > li, .feature-grid > div {
  background: #fff;
  border-radius: 20px;
  padding: 28px 20px 22px 20px;
  flex: 1 1 242px;
  min-width: 220px;
  box-shadow: 0 2px 12px var(--clr-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
}
.feature-grid > li:hover, .feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(246,103,92,0.16);
  transform: translateY(-6px) scale(1.01);
}
.feature-grid img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 6px;
}

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

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px var(--clr-shadow);
  padding: 20px;
  min-width: 252px;
  max-width: 355px;
  margin-bottom: 20px;
  flex: 1 1 252px;
  border-left: 8px solid var(--clr-accent2);
  transition: box-shadow 0.18s;
  color: #222;
}
.testimonial-card:hover { box-shadow: 0 8px 24px rgba(244,201,93,0.13); }
.testimonial-stars {
  color: var(--clr-accent);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.testimonial-meta {
  color: #44576c;
  font-weight: 600;
  font-size: 0.98rem;
  opacity: 0.89;
}

/* =================== HEADER & NAV =================== */
header {
  width: 100%;
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 2px 16px rgba(23,74,105,0.12);
  position: sticky;
  top: 0;
  z-index: 997;
}
.header-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 10px 0;
  width: 100%;
}
.logo-link img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  z-index: 1;
}
.main-nav a {
  color: var(--clr-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 8px;
  transition: color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--clr-accent);
}

/* Reservation/CTA button in header */
.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-primary);
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 11px 28px;
  box-shadow: 0 4px 14px rgba(244,201,93,0.10);
  cursor: pointer;
  transition: background 0.17s, color 0.16s, box-shadow 0.19s;
  outline: none;
  margin-left: 10px;
  letter-spacing: 0.03em;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--clr-accent2);
  color: #fff;
  box-shadow: 0 8px 34px rgba(246,103,92,0.15);
}
.btn-secondary {
  background: var(--clr-primary);
  color: var(--clr-white);
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 22px;
  margin-left: 5px;
  box-shadow: 0 2px 10px rgba(23,74,105,0.15);
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.16s;
  outline: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--clr-accent2);
  color: #fff;
  box-shadow: 0 7px 24px rgba(246,103,92,0.13);
}

/* Hamburger for mobile navigation */
.mobile-menu-toggle {
  display: none;
  background: var(--clr-accent2);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--clr-accent);
  color: var(--clr-primary);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--clr-primary);
  color: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 0 0 0;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), opacity 0.21s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--clr-accent2);
  color: #fff;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1110;
  transition: background 0.15s;
  cursor: pointer;
  border: none;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--clr-accent);
  color: var(--clr-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100vw;
  padding: 64px 32px 24px 32px;
  background: none;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 12px 6px;
  width: 100%;
  border-radius: 14px;
  transition: background 0.15s, color 0.12s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--clr-accent);
  color: var(--clr-primary);
}

/* =================== FOOTER =================== */
footer {
  background: var(--clr-primary);
  color: #fff;
  width: 100%;
  padding: 34px 0 50px 0;
  box-shadow: 0 -1px 10px 0 rgba(23,74,105,0.10);
  margin-top: 40px;
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.92;
  transition: color 0.18s, opacity 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--clr-accent);
  opacity: 1;
}
.footer-contact {
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}

/* =================== SPACING & SPECIAL COMPONENTS =================== */
ul, ol {
  margin-left: 0;
  margin-bottom: 10px;
  padding-left: 0;
}
ul li:not(:last-child), ol li:not(:last-child) {
  margin-bottom: 9px;
}

/* FAQ dt/dd */
dl { margin-bottom: 10px; }
dt { font-size: 1.08rem; margin-top: 19px; }
dd { margin-bottom: 10px; color: #235878; line-height: 1.55; }

/* Responsive tables/lists can go here if needed */

/* Feature / item list enhancements */
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; margin-bottom: 20px; }

/* =================== BUTTONS & LINKS =================== */
.btn, a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 20px;
  padding: 10px 24px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  transition: background 0.16s, color 0.15s, box-shadow 0.18s, transform 0.16s;
  margin-top: 8px;
}
.btn:active, a.btn:active {
  transform: scale(0.97);
}

/* ============ Cookie Consent Banner and Modal ============= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1199;
  width: 100vw;
  background: var(--clr-white);
  color: var(--clr-primary);
  box-shadow: 0 -2px 20px 0 rgba(23,74,105,0.12);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 23px 20px 23px 30px;
  border-radius: 18px 18px 0 0;
  font-size: 1rem;
  opacity: 1;
  transition: transform 0.29s cubic-bezier(.4,0,.2,1), opacity 0.23s cubic-bezier(.4,0,.2,1);
  animation: cookieIn 0.5s 0.12s both;
}
@keyframes cookieIn {
  from { transform: translateY(120px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p { flex: 2 1 400px; color: #174A69; font-size: 1rem; }
.cookie-consent-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner-btn, .cookie-banner-btn-secondary {
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.12s, box-shadow 0.14s;
  box-shadow: 0 1px 4px 0 rgba(23,74,105,0.09);
}
.cookie-banner-btn {
  background: var(--clr-accent);
  color: var(--clr-primary);
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus { background: var(--clr-accent2); color: #fff; }
.cookie-banner-btn-secondary {
  background: var(--clr-secondary);
  color: var(--clr-primary);
}
.cookie-banner-btn-secondary:hover, .cookie-banner-btn-secondary:focus { background: #dbedf7; }

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  background: rgba(23,74,105,0.32);
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 1208;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #174A69;
  border-radius: 18px;
  min-width: 310px;
  max-width: 99vw;
  width: 405px;
  padding: 36px 32px 26px 32px;
  box-shadow: 0 8px 32px 0 rgba(23,74,105,0.10);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  z-index: 1217;
  animation: modalIn 0.33s cubic-bezier(.4,0,.2,1);
}
@keyframes modalIn {
  from { transform: translateY(80px) scale(.96); opacity:0; }
  to   { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 9px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}
.cookie-category-label {
  font-weight: 600; font-size: 1rem;
}
.cookie-toggle {
  width: 40px; height: 22px;
  background: var(--clr-secondary);
  border: 1.5px solid #ccd8df;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background 0.13s, border 0.13s;
}
.cookie-toggle[data-checked="true"] {
  background: var(--clr-accent);
  border-color: var(--clr-accent2);
}
.cookie-toggle-switch {
  display: block;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left 0.15s;
}
.cookie-toggle[data-checked="true"] .cookie-toggle-switch { left: 21px; background: #fff; }

.cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

/* =================== ANIMATIONS =================== */
.btn, a.btn, .btn-primary, .btn-secondary, .feature-grid > li, .feature-grid > div, .card {
  will-change: transform;
  transition: transform 0.17s cubic-bezier(.4,0,.2,1), box-shadow 0.16s cubic-bezier(.4,0,.2,1), background 0.14s;
}
.btn:active, .btn-primary:active, .btn-secondary:active, a.btn:active {
  transform: scale(0.96);
}

/* =================== RESPONSIVE (MOBILE FIRST) =================== */
@media (max-width: 1020px) {
  .footer-wrapper, .header-wrapper { flex-direction: column; gap: 16px; align-items: flex-start; }
  .main-nav { gap: 16px; }
}
@media (max-width: 900px) {
  .feature-grid > li, .feature-grid > div, .testimonial-card {
    min-width: 180px; max-width: 100%; flex: 1 1 160px;
  }
  .footer-wrapper, .header-wrapper { padding: 0 2vw; }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.35rem; }
  .footer-wrapper, .header-wrapper { flex-direction: column; gap: 10px; padding: 0 0; align-items: flex-start; }
  .footer-contact { margin-top: 20px; }
  section { padding: 32px 6px; margin-bottom: 44px; }
  .container { padding: 0 8px; }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 600px) {
  .feature-grid, .testimonials, .content-grid { flex-direction: column; gap: 22px; }
  .testimonial-card, .feature-grid > li, .feature-grid > div { max-width: 100%; min-width: 0; }
  .cookie-consent-banner { flex-direction: column; align-items: flex-start; padding: 20px 9px; gap: 12px; }
  .cookie-consent-banner p { max-width: 310px; }
  .cookie-modal { width: 99vw; min-width: 0; padding: 18px 6vw 16px 6vw; font-size: 1rem; }
}
@media (max-width: 520px) {
  h1, .h1 { font-size: 1.44rem; }
  h2, .h2 { font-size: 1.12rem; }
  .btn, .btn-primary, .btn-secondary { font-size: 0.98rem; padding: 10px 8px; }
  .mobile-nav { padding-left: 7vw; padding-right: 7vw; }
}

/* ========== FLEX DIRECTION FOR TEXT-IMAGE SECTIONS ========= */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* =================== PRINT/TEXT IMPROVEMENTS =================== */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  main { padding: 0; }
  section { padding: 0; margin-bottom: 20px; }
  body { background: #fff; color: #000; }
}

/* ========== HIGHLIGHT BOLD/IMPORTANT ========== */
mark, .hl {
  background: var(--clr-accent);
  color: var(--clr-primary);
  padding: 2px 5px;
  border-radius: 6px;
  font-weight: 700;
}

/* ========== Z-INDEX SAFETY ========= */
.mobile-menu, .cookie-modal-overlay, .cookie-consent-banner {
  z-index: 1200 !important;
}

/* =================== ADDITIONAL IMPROVEMENTS =================== */
::-webkit-scrollbar { width: 10px; background: var(--clr-secondary); }
::-webkit-scrollbar-thumb { background: var(--clr-accent); border-radius: 7px; }
/* Selection color */
::selection { background: #f4c95d; color: #174A69; }

/* ICON IMG INSIDE P */
p > img {
  width: 21px; height: 21px; vertical-align: middle; margin-right: 7px;
}

/* Error/success/info alert (can be used in consent modal etc) */
.alert {
  padding: 10px 20px;
  border-radius: 9px;
  background: #E2F0F7;
  color: #174A69;
  margin-bottom: 12px;
  font-size: 1rem;
}
.alert-success { background: #e6fbe9; color: #135c2a; }
.alert-info { background: #e6f3fe; color: #235878; }

/* =================== BIG BOLD COLORFUL FOR ENERGETIC STYLE ========== */
section > .container > h2, section > .container > h1 {
  position: relative;
  z-index: 5;
  background: linear-gradient(88deg,#174A69 60%,#F6675C 120%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

/* Decorative accent line for headings */
section > .container > h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 5px;
  border-radius: 3px;
  background: var(--clr-accent);
  margin-top: 8px;
}

/* =================== END CSS =================== */
