/* ========================
   CSS RESET & NORMALIZER
   ======================== */
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,
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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #f3faf8;
  color: #205072;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* ====================
   BRAND PALETTE + FONTS
   ==================== */
:root {
  --color-primary: #205072;
  --color-secondary: #ffffff;
  --color-accent: #62add6;
  --color-bg: #f3faf8;
  --color-success: #6adab8;
  --color-warning: #ffd879;
  --color-error: #e35959;
  --color-grey: #e9f4fb;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
  --border-radius: 18px;
  --shadow-card: 0 6px 28px 0 rgba(32, 80, 114, 0.18), 0 1.5px 3px 0 rgba(32, 80, 114, 0.08);
}

/* Artistic custom fonts (for creative/artistic look) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:900,700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #1a4060;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.18;
  margin-bottom: 24px;
  margin-top: 4px;
  text-shadow: 2px 6px 18px rgba(98,172,214,0.08);
  background: linear-gradient(90deg,var(--color-primary), var(--color-accent), var(--color-success));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
  margin-top: 0;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

p, li, span, address {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #205072;
  line-height: 1.76;
  margin-bottom: 0.9em;
}
p:last-child { margin-bottom: 0; }

blockquote {
  font-style: italic;
  color: #205072;
  background: #e9f4fb;
  border-left: 4px solid var(--color-accent);
  padding: 14px 26px;
  border-radius: 13px;
  margin: 0 0 12px 0;
}

strong, b {
  font-weight: 700;
  color: var(--color-primary);
}

/* ============
   CONTAINER
   ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 26px 8px;
    border-radius: 13px;
  }
}

/* ==========
   HEADER
   ========== */
header {
  background: #205072;
  color: #fff;
  padding: 0 0;
  width: 100%;
  box-shadow: 0 2px 18px 0 rgba(32,80,114,0.10);
  position: relative;
  min-height: 68px;
  z-index: 50;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
header > a img {
  height: 44px;
  margin: 15px 18px 15px 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 6px 14px;
  border-radius: 10px;
  letter-spacing: 0.2px;
  transition: background 0.15s, color 0.15s;
  font-weight: 600;
  position: relative;
}
header nav a:after {
  content: '';
  display: block;
  background: var(--color-accent);
  height: 3px;
  border-radius: 4px 4px 0 0;
  width: 0%;
  transition: width 0.22s cubic-bezier(.5,.15,.39,1.33);
  margin-top: 3.5px;
}
header nav a:hover:after,
header nav a:focus:after {
  width: 85%;
}
header nav a.active {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cta-primary {
  background: linear-gradient(90deg,#62add6 0%, #6adab8 75%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.5px;
  border-radius: 1000px;
  padding: 12px 32px;
  font-size: 1.1rem;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 12px 0 rgba(98,172,214, 0.04);
  border: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.16s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin-top: 12px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg,#78c0e0 0%, #1a4060 95%);
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(32,80,114,0.11);
}
.cta-secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2.5px solid var(--color-accent);
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 1000px;
  padding: 10px 32px;
  font-size: 1rem;
  transition: box-shadow 0.27s, background 0.17s, color 0.18s;
  margin-top: 15px;
  display:inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-accent);
  color: #fff;
  border-color: #205072;
  box-shadow: 0 7px 24px 0 rgba(98,172,214, 0.10);
}

@media (max-width: 1030px) {
  header nav {
    gap:10px;
  }
  .cta-primary {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media (max-width: 850px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav {
    order: 2;
    margin-bottom: 10px;
  }
  .cta-primary {
    order: 3;
    align-self: flex-end;
    margin-left: 0;
  }
  header > a img {
    margin-left: 10px;
    height:38px;
  }
}
@media (max-width: 768px) {
  header nav, .cta-primary {
    display: none!important;
  }
  header {
    padding-bottom: 0;
  }
}

/* ==========================
   MOBILE BURGER MENU
   ========================== */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    position: absolute;
    right: 20px;
    top: 21px;
    z-index: 1002;
    display: block;
    background: var(--color-primary);
    color: var(--color-accent);
    font-size: 2.1rem;
    border: none;
    border-radius: 9px;
    padding: 7px 15px;
    box-shadow: 0 1.5px 7px 0 rgba(98,172,214, 0.09);
    transition: background 0.23s, color 0.23s;
  }
  .mobile-menu-toggle:active, .mobile-menu-toggle:focus {
    background: var(--color-accent);
    color: #fff;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,80,114, 0.985);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(.83,0,.21,1.26);
  z-index: 1100;
  padding: 0 0 0 0;
  box-shadow: 0 10px 40px 0 rgba(32,80,114,0.26);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.45rem;
  color: var(--color-accent);
  padding: 15px 24px;
  margin-top: 14px;
  margin-right: 0;
  background: transparent;
  border-radius: 15px 0 0 15px;
  align-self: flex-end;
  transition: background 0.16s, color 0.16s;
  z-index: 90;
}
.mobile-menu-close:hover, .mobile-menu-close:active {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100vw;
  margin-top: 52px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.21rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 12px;
  border-radius: 12px;
  width: 100%;
  margin-bottom: 3px;
  letter-spacing: 0.03em;
  transition: background .21s, color .21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

@media (max-width: 450px) {
  .mobile-nav {
    padding: 0 10px;
  }
}

/* Hide mobile menu completely on desktop */
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Prevent scroll when menu open */
body.mobile-menu-active {
  overflow: hidden;
  height:100vh;
}


/* =============
   SECTION SPACING/MARGINS
   ============= */
main {
  margin-top: 28px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}

/* ===================
   FLEXBOX LAYOUTS
   =================== */
.features-grid, .tips-grid, .blog-grid, .route-grid, .featured-marinas, .route-teasers, .marina-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  justify-content: flex-start;
  align-items: stretch;
}
.features-grid > div, .tips-grid > div,
.route-grid > div, .blog-grid > div, .featured-marinas > div, .route-teasers > div, .marina-highlights > div {
  background: var(--color-grey);
  padding: 28px 22px 22px 22px;
  border-radius: 19px;
  box-shadow: var(--shadow-card);
  flex: 1 1 275px;
  min-width: 230px;
  min-height: 145px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 13px;
  transition: box-shadow .19s, transform .21s;
}
.features-grid > div:hover, .tips-grid > div:hover, .blog-grid > div:hover, .route-grid > div:hover, .route-teasers > div:hover, .marina-highlights > div:hover, .featured-marinas > div:hover {
  box-shadow: 0 12px 40px 0 rgba(32,80,114,0.16);
  transform: translateY(-4px) scale(1.01);
}
.features-grid img { height: 38px; width:auto; margin-bottom: 8px; }

@media (max-width: 1000px) {
  .features-grid > div, .tips-grid > div, .route-grid > div, .blog-grid > div, .route-teasers > div, .marina-highlights > div, .featured-marinas > div {
    flex: 1 1 205px;
    min-width: 200px;
  }
}
@media (max-width: 700px) {
  .features-grid, .tips-grid, .blog-grid, .route-grid, .featured-marinas, .route-teasers, .marina-highlights {
    gap: 16px;
  }
  .features-grid > div, .tips-grid > div, .route-grid > div, .blog-grid > div, .route-teasers > div, .marina-highlights > div, .featured-marinas > div {
    min-width: 69vw;
    flex: 1 1 100%;
    margin-bottom: 16px;
  }
}
@media (max-width: 520px) {
  .features-grid > div, .tips-grid > div, .route-grid > div, .blog-grid > div, .route-teasers > div, .marina-highlights > div, .featured-marinas > div {
    padding: 16px 12px;
  }
}

/* Cards and usage */
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 19px;
  }
}

/* Lists */
ul {
  padding-left: 21px;
  margin-bottom: 16px;
}
ul li {
  margin-bottom: 8px;
  position: relative;
}
ul li:before {
  content:'\2022';
  color: var(--color-accent);
  font-weight: bold;
  display: inline-block;
  margin-right: 9px;
}
.about-block ul li:before {
  color: var(--color-success);
}

/* Section Elements/Tags */
.destination-tag, .region-tag, .destination-card, .category-tag {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.8px;
  padding: 5px 18px;
  margin-bottom: 8px;
  margin-right: 6px;
  box-shadow: 0 1.5px 5px 0 rgba(98,172,214, 0.15);
  vertical-align: middle;
}
.duration {
  display:inline-block;
  color: var(--color-primary);
  font-size: 0.91rem;
  font-weight: 600;
  margin-right: 8px;
  margin-left:2px;
}

/* Micro-interactions */
.more-link {
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: underline;
  transition: color .17s;
  margin-top: 12px;
  display: inline-block;
}
.more-link:hover, .more-link:focus {
  color: #205072;
}

/* Filters/tags */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 19px 0 23px 0;
}
.filters button {
  background: var(--color-grey);
  color: var(--color-primary);
  font-family: var(--font-display);
  padding: 7px 22px;
  border-radius: 22px;
  font-weight: 700;
  border: none;
  margin: 0 8px 0 0;
  transition: background .16s, color .16s;
  box-shadow: 0 1.5px 4px 0 rgba(32,80,114, 0.09);
  font-size: 1rem;
}
.filters button:hover, .filters button.active {
  background: var(--color-accent);
  color: #fff;
}
.blog-tags {
  margin: 22px 0 0 0;
}
.blog-tags button {
  background: var(--color-accent);
  color: #fff;
  margin-right: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  border-radius: 20px;
  border: none;
  padding: 6px 18px;
  box-shadow: 0 1.2px 5px 0 rgba(98,172,214,.12);
  font-weight: 500;
  transition: background .17s, color .17s;
}
.blog-tags button:hover {
  background: #1a4060;
  color: #fff;
}

/* Footer */
footer {
  background: #205072;
  color: #fff;
  padding: 48px 0 7px 0;
  margin-top:80px;
}
footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 15px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-body);
  text-decoration: underline;
  background: transparent;
  border-radius: 7px;
  padding: 4px 8px;
  font-size: 0.98rem;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-accent);
  color: #205072;
}
.footer-contact {
  font-size: 0.9rem;
  color: #e6f6ff;
  margin-top: 6px;
}
.footer-contact a { color: var(--color-accent); }
.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  box-shadow: 0px 2px 8px 0 rgba(255,255,255,.08);
  background: #fff;
  transition: box-shadow .13s, filter .13s;
}
.footer-social a:hover img {
  box-shadow: 0px 5px 20px 0 rgba(98,172,214,0.20);
  filter: brightness(1.15);
}
@media (max-width: 900px) {
  footer .footer-content {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
}

/* ===============
   TESTIMONIALS
   =============== */
.testimonials {
  margin: 13px 0 7px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 12px 0 rgba(98,172,214,0.085);
  min-width: 320px;
  max-width: 420px;
  flex: 1 1 320px;
  transition: box-shadow .16s, transform .16s;
  margin-bottom: 20px;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px 0 rgba(32,80,114,0.13);
  transform: translateY(-3px);
}
.testimonial-card img {
  width: 28px;
  height: 28px;
  margin-right: 1.5px;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: 3.5px solid var(--color-accent);
  padding: 2px 14px;
  color: var(--color-primary);
  font-size: 1.03rem;
  font-style: italic;
  line-height: 1.62;
}
.testimonial-card span {
  font-weight: 600;
  color: #2f596d;
  font-size: 0.98rem;
  margin-left: 3px;
}
@media (max-width: 700px) {
  .testimonials {
    gap: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    min-width: 90vw;
    max-width: 100vw;
    padding: 14px 8px;
  }
}

/* Forms / Contact Buttons */
.contact-buttons {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  margin-bottom:13px;
  flex-wrap: wrap;
}
.contact-buttons a {
  flex: 1 1 160px;
  text-align: center;
}
.location-block {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 4px;
}
.map-embed {
  margin-top: 10px;
  background: #e9f4fb;
  border-radius: 11px;
  padding: 11px 17px;
}

/* Feature Items for artistic section display */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
  padding: 16px 14px;
  border-radius: 14px;
  background: #f4fdff;
  box-shadow: 0 2px 9px 0 rgba(32,80,114,0.07);
}
@media (max-width:600px){
  .feature-item{padding:10px 5px;}
}

/* Guides Block for Reisetipps */
.guides-block {
  background: #e9f4fb;
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 16px;
  margin-bottom: 14px;
}
.guides-block li:before {
  color: var(--color-accent);
}

/* Success Message for Thank You */
.success-message {
  color: var(--color-success);
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 14px;
  margin-top: 8px;
}
.next-steps {
  background: #e9f4fb;
  font-size: 0.97rem;
  border-radius: 0.9em;
  padding: 12px 22px;
  margin-bottom: 18px;
  color: #205072;
}

/* Blog cards */
.blog-grid > div {
  border-top: 5px solid var(--color-accent);
  min-height: 205px;
}


/* ==================
   COOKIE CONSENT BANNER
   ================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #205072;
  color: #fff;
  z-index: 1200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 22px 34px 22px 34px;
  box-shadow: 0 -6px 25px 0 rgba(32,80,114,0.11);
  font-size: 1rem;
  animation: cookie-fadein 0.47s cubic-bezier(.31,1.28,.34,1.14);
}
.cookie-banner p{
  margin-bottom: 0;
  color:#fff;
}
@keyframes cookie-fadein {
  from { transform:translateY(100%); opacity:0; }
  to { transform:translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: auto;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  padding: 9px 21px;
  background: #62add6;
  color: #fff;
  transition: background 0.21s, color 0.21s, box-shadow 0.13s;
  box-shadow: 0 2px 7px 0 rgba(98,172,214,0.13);
  cursor:pointer;
}
.cookie-banner .btn-reject {
  background: var(--color-error);
}
.cookie-banner .btn-settings {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-accent);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #1a4060;
  color: #fff;
}
@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 14px 14px 14px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-buttons {
    margin-left: 0;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,80,114,0.78);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s;
}
.cookie-modal.open { opacity: 1; pointer-events: all; }
.cookie-modal-content {
  background: #fff;
  color: #205072;
  padding: 32px 34px 26px 34px;
  border-radius: 2em;
  max-width: 410px;
  width: 90vw;
  box-shadow: 0 10px 46px 0 rgba(32,80,114,0.23);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookie-modal-in .41s cubic-bezier(.36,1.17,.21,1.17);
}
@keyframes cookie-modal-in {
  from { opacity: 0; transform: scale(.86) translateX(-60px); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}
.cookie-modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.cookie-modal-content ul {
  padding-left: 0;
}
.cookie-modal-content ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1.03rem;
  font-weight: 500;
}
.cookie-modal-content ul li input[type='checkbox'] {
  margin-right: 10px;
  accent-color: var(--color-accent);
  width: 20px;
  height: 20px;
  border-radius: 7px;
}
.cookie-modal-content .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-content .btn-closemodal {
  position: absolute;
  top: 13px;
  right: 18px;
  background: transparent;
  color: var(--color-accent);
  border: none;
  font-size: 2.1rem;
  cursor:pointer;
  transition: color .15s;
}
.cookie-modal-content .btn-closemodal:hover {
  color: var(--color-primary);
}

/* ==============
   ARTISTIC/CREATIVE ELEMENTS
   =============== */
.section {
  /* apply soft artistic background underline shape */
  position: relative;
  overflow: visible;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  left: -44px;
  top: 100px;
  width: 120px;
  height: 50px;
  background: rgba(98,172,214,0.08);
  border-radius: 77% 16% 54% 85%;
  pointer-events: none;
  transform: rotate(-14deg);
  filter: blur(3px);
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  right: -38px;
  top: 20px;
  width: 95px;
  height: 42px;
  background: rgba(106,218,184,0.10);
  border-radius: 55% 55% 55% 90%;
  pointer-events: none;
  transform: rotate(10deg);
  filter: blur(3px);
}

/* Headline artistic underline */
h1, h2 {
  position: relative;
  z-index: 1;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 9px;
  background: var(--color-accent);
  border-radius: 9px;
  opacity: 0.11;
  margin-top: 2px;
}

/* Artistic highlight animation for cta-primary */
.cta-primary {
  box-shadow: 0 8px 26px 0 rgba(106,218,184,0.19);
  transform: skewX(-7deg);
  animation: cta-skew-bounce 2.8s cubic-bezier(.38,1.19,.24,1.09) infinite alternate;
}
@keyframes cta-skew-bounce {
  0% { transform: skewX(-7deg) scale(1); }
  50% { transform: skewX(-2deg) scale(1.07); }
  100% { transform: skewX(-7deg) scale(1); }
}
.cta-primary:hover, .cta-primary:focus {
  animation: none;
}

/* Artistic shadow for cards */
.features-grid > div, .tips-grid > div, .blog-grid > div, .route-grid > div {
  border-bottom: 7px solid var(--color-accent);
}
.features-grid > div:hover, .tips-grid > div:hover, .blog-grid > div:hover, .route-grid > div:hover {
  border-bottom: 7px solid var(--color-success);
}

/* Artistic icons / floating icons */
.features-grid img, .tips-grid img, .about-block img, .contact-buttons img, .footer-social img {
  filter: drop-shadow(1.2px 1.4px 2px rgba(32,80,114,0.08));
}

/* ==============
   MISC & UTILS
   ============= */
address {
  font-style: normal;
  color: #205072;
  margin-bottom: 7px;
}

/* Code accessibility tweaks */
:focus {
  outline: 2.5px solid var(--color-accent) !important;
  outline-offset: 2px !important;
}


/* =================
   RESPONSIVE SCALES
   ================= */
@media (max-width: 850px) {
  main {
    margin-top: 10px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.31rem; }
  .container { padding: 0 3vw; }
  .section {
    margin-bottom: 18px;
    padding: 13px 4px;
  }
}


/*******************
 Cookie Banner Utility Classes for JS
 *******************/
.cookie-modal.hidden, .cookie-banner.hidden {
  display: none!important;
  pointer-events: none;
}

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