/* ========================
  CSS RESET & BASE STYLES
=========================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #193057;
  background-color: #F7F7FB;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #002B5B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2C200;
  outline: none;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1em;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #FFF;
  margin-bottom: 32px;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(0,30,110,0.08);
  overflow: hidden;
}
th, td {
  padding: 14px 12px;
  border-bottom: 1px solid #e0e3f2;
  text-align: left;
}
th {
  background: #F7F7FB;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #002B5B;
}
tr:last-child td {
  border-bottom: none;
}

/* ========================
  COLOR PALETTE (Pastel)
=========================== */
:root {
  --brand-primary: #002B5B;
  --brand-secondary: #E5E5E5;
  --brand-accent: #F2C200;
  --pastel-blue: #C6D8F2;
  --pastel-lilac: #EEE6FB;
  --pastel-purple: #E9E3FF;
  --pastel-yellow: #FFF7CF;
  --pastel-pink: #FFECEF;
  --pastel-mint: #E9F7F7;
  --white: #FFF;
  --gray-100: #F7F7FB;
  --gray-500: #a2a5cc;
  --text-dark: #222547;
  --text-muted: #6881ad;
  --shadow-card: 0 8px 24px 0 rgba(33,38,73,0.08);
  --shadow-light: 0 2px 16px 0 rgba(0,30,110,0.06);
}

/* ========================
  TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  line-height: 1.12;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
.subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 26px;
}
p {
  margin-bottom: 1em;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}
.text-section,
.text-section * {
  font-size: 1rem;
  color: var(--text-dark);
}

/* ========================
  LAYOUT CONTAINERS & SECTIONS
=========================== */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-light);
  border-radius: 16px;
  padding: 40px 24px 34px 24px;
  margin-bottom: 36px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gray-100);
  border-radius: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  padding: 32px 24px 24px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  min-width: 270px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: var(--pastel-blue);
  border-radius: 14px;
  padding: 20px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 250px;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.19s;
}
.feature-grid > div:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: var(--pastel-yellow);
  color: #222547;
  border-radius: 13px;
  box-shadow: var(--shadow-light);
  font-size: 1.08rem;
  transition: box-shadow 0.22s;
}
.testimonial-card p {
  color: #222547;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.99em;
  color: var(--brand-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ========================
  BUTTONS
=========================== */
.btn-primary {
  background: linear-gradient(92deg, var(--pastel-lilac) 0%, var(--pastel-blue) 100%);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 45px;
  padding: 12px 36px;
  font-size: 1.09rem;
  box-shadow: 0 2px 14px 0 rgba(2, 33, 125, 0.08);
  cursor: pointer;
  transition: background 0.22s, color 0.16s, box-shadow 0.18s, transform 0.15s;
  margin-top: 10px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(92deg, #D3EDFB 0%, #e0d0fa 100%);
  color: var(--brand-accent);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  background: var(--pastel-mint);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 45px;
  padding: 10px 32px;
  font-size: 1.05rem;
  box-shadow: 0 1.5px 7px 0 rgba(2, 33, 125, 0.06);
  cursor: pointer;
  margin-top: 8px;
  margin-right: 10px;
  transition: background 0.18s, color 0.13s, box-shadow 0.14s, transform 0.14s;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--pastel-lilac);
  color: var(--brand-accent);
  transform: translateY(-2px);
}

/* ========================
  HEADER & NAVIGATION
=========================== */
header {
  background: linear-gradient(112deg, #e6eeff 0%, #ebeaff 100%);
  box-shadow: 0 1px 14px 0 rgba(0,43,91,0.03);
  padding-bottom: 6px;
  position: relative;
  z-index: 1001;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 16px 10px 16px;
}
.logo-link {
  display: flex;
  align-items: center;
}
.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 18px;
  margin: 0 18px;
}
.main-nav li {
  margin-bottom: 0;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-primary);
  border-radius: 18px;
  padding: 8px 16px;
  transition: background 0.18s, color 0.16s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background-color: var(--pastel-blue);
  color: var(--brand-accent);
}
.main-nav .btn-primary {
  margin-left: 16px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-pink);
  color: var(--brand-primary);
  border: none;
  font-size: 2rem;
  padding: 6px 22px 8px 9px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1600;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.08);
  transition: background 0.19s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--pastel-blue);
  color: var(--brand-accent);
}
.mobile-menu {
  position: fixed;
  z-index: 2000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(244,248,255,0.97);
  box-shadow: 0 10px 60px 0 rgba(70,65,110,0.13);
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(.38,1.14,.57,1) 0s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 56px 32px 24px 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: var(--pastel-pink);
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  padding: 2px 16px 2px 8px;
  cursor: pointer;
  z-index: 2051;
  transition: background 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pastel-yellow);
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 30px;
}
.mobile-nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  padding: 12px 2px;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-bottom 0.14s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-accent);
  border-bottom: 2px solid var(--brand-accent);
  background: var(--pastel-lilac);
}
@media (max-width: 1020px) {
  .main-nav {
    padding-right: 4px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 10px;
    margin: 0 3px;
  }
  .main-nav .btn-primary {
    margin-left: 5px;
    padding: 10px 18px;
  }
  .main-nav {
    padding: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav ul,
  .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: auto;
    margin-right: 12px;
  }
  .logo-link {
    margin-right: 5px;
  }
}
@media (max-width: 992px) {
  .container, .content-wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 600px) {
  .container, .content-wrapper {
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* ========================
  RESPONSIVE FLEXBOX
=========================== */
@media (max-width: 1030px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 880px) {
  .feature-grid > div {
    min-width: 180px;
    max-width: 240px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    min-width: 90%;
    max-width: 99%;
  }
  .section {
    margin-bottom: 42px;
    padding: 30px 8px;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .content-wrapper {
    padding: 20px 6px 18px 6px;
    border-radius: 10px;
  }
  .testimonial-card {
    padding: 15px 8px;
    font-size: 1rem;
    border-radius: 9px;
  }
}

/* ========================
  UTILITY CLASSES & SPECIAL ELEMENTS
=========================== */
.security-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 5px;
  color: var(--brand-primary);
}
dd {
  margin-bottom: 8px;
  color: var(--text-dark);
}

/* ========================
  FOOTER
=========================== */
footer {
  background: linear-gradient(120deg, #f9fafd 0%, #f4e8ff 100%);
  color: var(--text-dark);
  padding: 42px 0 10px 0;
  border-top: 6px solid var(--pastel-blue);
  box-shadow: 0 -2px 24px 0 rgba(55,40,82,0.06);
  margin-top: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 13px;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  opacity: 0.88;
  padding: 3px 7px;
  border-radius: 13px;
  transition: background 0.15s, color 0.14s;
}
.footer-nav a:hover {
  background: var(--pastel-blue);
  color: var(--brand-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  gap: 4px;
  margin-bottom: 6px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.25em;
  color: #34306c;
  font-size: 1rem;
}
footer p {
  text-align: center;
  margin-top: 11px;
  font-size: 0.92rem;
  color: #9a99b4;
}
@media (max-width: 768px) {
  .footer-contact {
    font-size: 0.98rem;
  }
}

/* ========================
  COOKIE CONSENT BANNER
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(92deg, #fefcfb 0%, #f7f4fa 100%);
  border-top: 4px solid var(--pastel-blue);
  box-shadow: 0 -4px 24px 0 rgba(33,50,73, 0.10);
  padding: 22px 18px 20px 18px;
  gap: 10px;
  transition: transform 0.25s;
}
.cookie-banner__text {
  font-size: 1rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
  text-align: center;
}
.cookie-banner__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.cookie-btn-accept {
  background: var(--pastel-mint);
  color: var(--brand-primary);
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--pastel-yellow);
  color: var(--brand-accent);
}
.cookie-btn-reject {
  background: var(--pastel-pink);
  color: #d43153;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #ffe3e8;
  color: #a21a39;
}
.cookie-btn-settings {
  background: var(--pastel-blue);
  color: var(--brand-primary);
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: var(--pastel-mint);
  color: var(--brand-accent);
}
.cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  border: none;
  border-radius: 31px;
  padding: 10px 24px;
  margin: 0 2px;
  font-size: 1.045rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1px 9px 0 rgba(70,84,125,0.08);
  cursor: pointer;
  transition: background 0.15s, color 0.13s, transform 0.14s;
}

.cookie-modal-backdrop {
  position: fixed;
  z-index: 4010;
  inset: 0;
  background: rgba(31,41,62,0.18);
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal {
  background: var(--white);
  border-radius: 14px;
  max-width: 480px;
  width: 94vw;
  box-shadow: 0 6px 54px 0 rgba(40,50,90,0.17);
  padding: 36px 22px 28px 22px;
  position: relative;
  z-index: 4011;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popUp 0.23s;
}
@keyframes popUp {
  from { transform: scale(0.9); opacity: 0.2; } to { transform: scale(1.0); opacity: 1; }
}
.cookie-modal-title {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 3px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 14px;
  background: var(--pastel-blue);
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  padding: 0 11px 2px 8px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--pastel-pink);
  color: #d43153;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 2px 8px 2px;
  background: var(--pastel-yellow);
  border-radius: 6px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-accent);
  width: 20px;
  height: 20px;
}
.cookie-category.essential input[type="checkbox"]:disabled {
  opacity: 0.7;
  background: #eee;
}
.cookie-category-label {
  font-size: 1.06em;
  color: var(--brand-primary);
}
.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ========================
  FORMS (Reservation, Contact, etc.)
=========================== */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--pastel-blue);
  border-radius: 7px;
  padding: 11px 14px;
  margin-bottom: 15px;
  outline: none;
  background: var(--gray-100);
  transition: border-color 0.17s, background 0.13s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand-accent);
  background: var(--pastel-mint);
}
label {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 500;
}

/* ========================
  MISCELLANEOUS
=========================== */
::-webkit-scrollbar {
  width: 9px;
  background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
  background: #ccdaf3;
  border-radius: 6px;
}

/* ----------------------------------------
 * Pastel Decorative UI ELEMENTS & States
 * --------------------------------------*/
.feature-grid > div img,
.footer-contact img,
.text-section img,
ul li img,
td img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  vertical-align: bottom;
}

@media (max-width: 480px) {
  th, td {
    padding: 8px 5px;
    font-size: 0.99rem;
  }
}

/* ========================
  ANIMATIONS & MICRO-INTERACTIONS
=========================== */
.btn-primary, .btn-secondary, .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  transition: background 0.19s, color 0.15s, transform 0.12s;
  will-change: transform, box-shadow;
}
.btn-primary:active, .btn-secondary:active, .cookie-btn-accept:active, .cookie-btn-reject:active, .cookie-btn-settings:active {
  transform: scale(0.98);
}
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.17s;
}

/* ========================
  Z-INDEX for overlays/menus
=========================== */
.mobile-menu, .cookie-modal-backdrop { z-index: 4010; }
.cookie-modal { z-index: 4020; }

/* ========================
  VISIBILITY HELPERS
=========================== */
.hide {
  display: none !important;
}
.visible {
  display: block !important;
}
