/* 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,
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 {
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1c2734;
  background: #f5f5f5;
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #224c7c;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #c7a44d;
  outline: none;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 16px;
  color: #224c7c;
  font-weight: 700;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem;   margin-bottom: 20px; }
h3 { font-size: 1.375rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.125rem; }
p { margin-bottom: 1.25em; }
strong, b { font-weight: 700; }
em, i { font-style: italic; }

/* Containers & Sections */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(34,76,124,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Card layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(34,76,124,0.07);
  padding: 24px;
  flex: 1 1 300px;
  min-width: 250px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(34,76,124,0.15);
  transform: translateY(-2px);
}
.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;
}

/**************
 HEADER & NAVIGATION
**************/
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(34,76,124,0.05);
  position: relative;
  z-index: 50;
  padding: 0 0 0 0;
  min-height: 72px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}
header > a img {
  height: 48px;
  margin-right: 24px;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #224c7c;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: #eaf2fc;
  color: #c7a44d;
}
nav a.cta-primary {
  background: #224c7c;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(34,76,124,0.10);
  padding: 10px 22px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  background: #c7a44d;
  color: #224c7c;
  box-shadow: 0 4px 24px rgba(199,164,77,0.08);
}

nav a.cta-secondary {
  background: #fff;
  border: 1.5px solid #224c7c;
  color: #224c7c;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
nav a.cta-secondary:hover, nav a.cta-secondary:focus {
  background: #224c7c;
  color: #fff;
}

/*******
 MOBILE NAVIGATION
******/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #224c7c;
  cursor: pointer;
  margin-left: 20px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #eaf2fc;
  outline: none;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #224c7c;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  box-shadow: 6px 0 32px rgba(34,76,124,0.18);
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open { /* JS toggles this class */
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  cursor: pointer;
  padding: 24px 24px 0 0;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #c7a44d;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  padding: 32px 32px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 18px;
  border-radius: 8px;
  background: none;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 4px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(199,164,77,0.13);
  color: #c7a44d;
}
.mobile-nav a.cta-primary {
  background: #fff;
  color: #224c7c;
  font-weight: 700;
}

/******
 FOOTER
******/
footer {
  background: #224c7c;
  color: #fff;
  padding: 46px 0 0 0;
  margin-top: 64px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  flex-direction: column;
  gap: 8px;
}
footer nav a, footer a {
  color: #e0e7ef;
  padding: 6px 0;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  transition: color 0.2s, text-decoration 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: #c7a44d;
  text-decoration: underline;
}
footer .footer-contact {
  font-size: 0.97rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
}
footer .footer-contact img {
  height: 16px;
  width: 16px;
  margin-right: 8px;
  vertical-align: sub;
  display: inline-block;
}
footer a img {
  height: 38px;
  margin-bottom: 18px;
}

/***********
 BUTTONS
***********/
.cta-primary,
.cta-secondary {
  display: inline-block;
  text-align: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(34,76,124,0.07);
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-primary {
  background: #224c7c;
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: #c7a44d;
  color: #224c7c;
  box-shadow: 0 8px 32px rgba(199,164,77,0.13);
}
.cta-secondary {
  background: #fff;
  color: #224c7c;
  border: 1.5px solid #224c7c;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #224c7c;
  color: #fff;
}

/*************
 TESTIMONIALS & CARDS
*************/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #eaf2fc;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(34,76,124,0.09);
  margin-bottom: 20px;
  color: #1c2734;
  font-size: 1rem;
  transition: box-shadow 0.2s;
}
.testimonial-card strong {
  color: #224c7c;
  font-size: 1.01rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card p {
  margin-bottom: 0;
}

/*************
 CONTACT INFO BLOCKS
*************/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 16px 0;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
}
.contact-info img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 6px;
  filter: grayscale(1) brightness(0.7);
}

/************
 FEATURE & CARD LISTS
*************/
.feature_grid, .feature_descriptions, .must-see_areas, .best_time_advice {
  margin-top: 18px;
  background: #f5f8fb;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(34,76,124,0.05);
}
.feature_grid ul, .feature_descriptions ul {
  margin: 0 0 0 18px;
}
.best_time_advice p {
  margin-bottom: 0;
}

/************
 MISCELLANEOUS
**************/
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*****
 COOKIE CONSENT BANNER
*****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(34,76,124,0.09);
  padding: 28px 20px 22px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2000;
  border-radius: 18px 18px 0 0;
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner p {
  flex: 1;
  color: #224c7c;
  margin-bottom: 0;
}
.cookie-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cookie-accept {
  background: #224c7c;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #c7a44d;
  color: #224c7c;
}
.cookie-reject {
  background: #eaf2fc;
  color: #224c7c;
  border: 1.5px solid #224c7c;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #f5e4c0;
  color: #c7a44d;
}
.cookie-settings {
  background: #fff;
  color: #224c7c;
  border: 1.5px solid #c7a44d;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #c7a44d;
  color: #fff;
}

/****
 COOKIE MODAL
****/
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,76,124,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 32px 20px 24px 28px;
  min-width: 340px; max-width: 95vw;
  box-shadow: 0 8px 40px rgba(34,76,124,0.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cookie-modal h3 {
  color: #224c7c;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 8px;
  font-size: 1.21rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  color: #1c2734;
}
.cookie-category input[type="checkbox"] {
  margin-right: 5px;
}
.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.54;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 14px;
}

/*******
 RESPONSIVENESS & FLEXBOX ADAPTATIONS
*******/
@media (max-width: 1100px) {
  .container {
    max-width: 900px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header {
    flex-direction: row;
    padding: 0 12px;
    min-height: 56px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  section,
  .section {
    margin-bottom: 40px;
    padding: 24px 5px;
    border-radius: 10px;
  }
  .container {
    padding: 0 10px;
  }
  .content-wrapper,
  .card-container,
  .content-grid,
  .feature-item,
  .testimonial-card,
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  footer {
    padding-top: 34px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .cta-primary, .cta-secondary, .cookie-banner button {
    padding: 9px 14px;
    font-size: 1rem;
  }
  .container {
    padding: 0 4px;
  }
  .cookie-banner {
    padding: 18px 4px;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px 8px 0 0;
  }
  .cookie-modal {
    min-width: 0;
    padding: 18px 5px 12px 9px;
  }
}

/*********
 ANIMATIONS
*********/
@keyframes slideDown {
  from { transform: translateY(-25px); opacity: 0; }
  to {   transform: translateY(0);     opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.section, .card, .testimonial-card, .feature_grid, .must-see_areas, .best_time_advice, .cookie-banner, .cookie-modal {
  animation: fadeIn 0.8s;
}

/******
 ACCESSIBILITY
******/
:focus {
  outline: 2px dotted #224c7c !important;
  outline-offset: 2px;
}

/******
 HELPER CLASSES
******/
.d-none { display: none !important; }

/******
 PRINT STYLES
******/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
