/* ================================================== */
/*          CSS Reset & Normalize (Mobile First)      */
/* ================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
a, 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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F2F6F7;
  color: #193642;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  position: relative;
}
a {
  color: #13527A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #4CAF50;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}
strong {
  font-weight: bold;
}

/* ======================================== */
/*            Brand variables (fallbacks)   */
/* ======================================== */
:root {
  --color-primary: #13527A;
  --color-secondary: #4CAF50;
  --color-accent: #F2F6F7;
  --color-dark: #163141;
  --color-highlight: #FFB100;
  --color-cta: #F66E54;
  --color-light: #fff;
  --color-shadow: rgba(19,82,122,0.07);
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ================================================== */
/*        Typography             (creative_artistic)  */
/* ================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.1rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 7px;
}
h4, h5 {
  font-size: 1rem;
  margin-bottom: 6px;
}
p, li, a, span, label {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-dark);
  line-height: 1.7;
}
@media (min-width: 600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}
@media (min-width:900px) {
  h1 { font-size: 2.9rem; }
}

blockquote {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--color-secondary);
  border-left: 5px solid var(--color-secondary);
  margin: 14px 0;
  padding-left: 18px;
}

/* Creative artistic subtitles */
h2, .section h2 {
  font-family: var(--font-display);
  position: relative;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg,var(--color-highlight),var(--color-secondary) 60%);
  background-size: 120% 1.5em;
  background-repeat: no-repeat;
  background-position: 10% 95%;
  display: inline-block;
  padding-right: 20px;
}

/* Artistic section background accents */
.section, section {
  position: relative;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: 16px;
  right: 12px;
  width: 70px;
  height: 56px;
  background: url('../assets/brushstroke.svg') no-repeat center/contain;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

/* =================== Layout Container ===================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 var(--color-shadow);
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .section, section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, section {
    padding: 16px 3vw;
    margin-bottom: 28px;
    border-radius: 13px;
  }
}

/* =================== Flex Layout Patterns ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-light);
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 var(--color-shadow);
  padding: 24px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(19,82,122,0.17);
  z-index: 3;
}
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 var(--color-shadow);
  margin-bottom: 24px;
  max-width: 550px;
}
.testimonial-card strong {
  color: var(--color-secondary);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-light);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 16px;
}

/* Features List (creative_artistic icon+text block) */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.feature-list li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px 0 rgba(76,175,80,0.08);
  padding: 20px 16px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 192px;
  transition: box-shadow .18s, transform .18s;
  margin-bottom: 20px;
  position: relative;
}
.feature-list li:hover {
  box-shadow: 0 7px 24px 0 rgba(19,82,122,0.14);
  z-index: 2;
  transform: translateY(-3px) scale(1.02);
}
.feature-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
  background: var(--color-highlight);
  border-radius: 50%;
  padding: 7px;
  box-shadow: 0 1px 5px #fdebbb25;
}
.feature-list h3 {
  color: var(--color-primary);
  margin-bottom: 3px;
  font-size: 1.09rem;
}
.feature-list p {
  color: var(--color-dark);
  font-size: 1rem;
}
@media (max-width: 600px) {
  .feature-list, .testimonial-slider {
    flex-direction: column;
  }
}

/* ===================================== */
/*    Header & Navigation                */
/* ===================================== */
header {
  width: 100%;
  background: var(--color-light);
  box-shadow: 0 2px 16px #13527A09;
  padding: 0 0 0 0;
  z-index: 50;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70px;
}
.header-branding {
  display: flex;
  align-items: center;
  padding: 14px 0 14px 12px;
  flex: 0 0 auto;
}
.header-branding img {
  height: 52px;
  min-height: 32px;
  width: auto;
}
.main-navigation {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}
.main-navigation a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 30px;
  transition: background .15s, color .17s;
  position: relative;
}
.main-navigation a:hover, .main-navigation a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 900px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-right: 15px;
    background: var(--color-primary);
    color: var(--color-light);
    font-size: 2rem;
    border-radius: 7px;
    height: 45px;
    width: 45px;
    align-items: center;
    justify-content: center;
    transition: background .2s, box-shadow .2s;
    box-shadow: 0 2px 11px #2848640e;
    border: none;
  }
  .header-branding {
    padding-bottom: 0;
  }
}

/* ===================================== */
/*    Mobile Menu Overlay                */
/* ===================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19,82,122, 0.96);
  z-index: 9999;
  transform: translateX(-110vw);
  transition: transform .34s cubic-bezier(.77,.07,.25,1.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 34px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 8px 25px 16px 0;
  font-size: 2.1rem;
  color: var(--color-highlight);
  border: none;
  background: none;
  font-weight: 700;
  transition: color .18s;
  padding: 4px 6px;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-left: 35px;
  margin-top: 27px;
  width: 80vw;
  max-width: 370px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.19rem;
  font-weight: 600;
  color: var(--color-light);
  padding: 12px 24px;
  border-radius: 40px;
  background: none;
  transition: background .18s, color .18s;
  min-width: 210px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-close, .mobile-menu-toggle {
    display: none!important;
  }
}

/* ===================================== */
/*               Hero                    */
/* ===================================== */
.hero, .about-hero, .tours-hero, .elberadweg-hero, .rental-hero, .planning-hero, .contact-hero {
  background: linear-gradient(120deg, var(--color-primary) 68%, var(--color-secondary) 115%);
  color: var(--color-light);
  padding: 50px 0 60px 0;
  min-height: 320px;
  box-shadow: 0 8px 50px -18px rgba(64, 168, 216, 0.21);
  border-radius: 0 0 55px 55px/0 0 32px 32px;
}
.hero .container, .about-hero .container, .elberadweg-hero .container, .tours-hero .container, .rental-hero .container, .planning-hero .container, .contact-hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height:170px;
}
.hero h1, .about-hero h1, .elberadweg-hero h1, .tours-hero h1, .rental-hero h1, .planning-hero h1, .contact-hero h1 {
  color: var(--color-light);
  font-size: 2.2rem;
  text-shadow: 0 3px 10px #1a3a4a41;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 800;
}
.hero p, .about-hero p, .elberadweg-hero p, .tours-hero p, .rental-hero p, .planning-hero p, .contact-hero p {
  color: #e2eef3;
  font-size: 1.09rem;
  margin-bottom: 22px;
}
@media (max-width: 700px) {
  .hero, .about-hero, .tours-hero, .elberadweg-hero,.rental-hero,.planning-hero,.contact-hero {
    border-radius: 0 0 25px 25px/0 0 15px 15px;
    padding: 29px 0 30px 0;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* CTA Button Styling */
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-highlight) 20%, var(--color-secondary) 90%);
  color: var(--color-light);
  padding: 12px 34px;
  border-radius: 27px 16px 40px 24px/18px 30px 27px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 1px;
  box-shadow: 0 7px 32px -10px var(--color-shadow);
  transition: background .18s, box-shadow .18s, transform .18s;
  margin-top: 18px;
  position: relative;
  border: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary);
  color: var(--color-light);
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 28px -9px var(--color-secondary);
}

/* ===================================== */
/*      Cards, Services, FAQ, Lists      */
/* ===================================== */
.service-list, .services-section ul, .specials-offers ul, .rental-offer ul, .planning-services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 16px;
  margin-top:10px;
}
.service-list li, .services-section ul li, .specials-offers ul li, .rental-offer ul li, .planning-services ul li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2.5px 10px -2px var(--color-shadow);
  padding: 18px 14px 17px 20px;
  min-width: 180px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  transition: box-shadow .18s,background .12s;
}
.service-list li:hover, .services-section ul li:hover, .specials-offers ul li:hover, .rental-offer ul li:hover, .planning-services ul li:hover {
  background: var(--color-accent);
  box-shadow: 0 6px 24px 0 var(--color-shadow);
  z-index:2;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list li {
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 1px 11px 0 var(--color-shadow);
  padding:18px 16px 17px 18px;
  margin-bottom: 16px;
  transition: box-shadow .18s,background .12s;
}
.faq-list li:hover {
  box-shadow: 0 6px 18px 0 var(--color-shadow);
  background: var(--color-accent);
}

ol {
  list-style-type: decimal inside;
  margin-left: 16px;
}
ol li {
  margin: 7px 0 7px 0;
  padding-left: 6px;
}

/* ===================== Testimonials Stylistic =========================== */
.testimonials, .planning-testimonials {
  background: var(--color-secondary);
  box-shadow: 0 8px 50px -18px rgba(76,175,80,0.11);
  color: var(--color-dark);
  border-radius: 35px;
}
.testimonials h2, .planning-testimonials h2 {
  color: #fff;
  background: none;
  text-shadow: 0 2px 16px #1363b561;
}
.testimonial-card, .planning-testimonials .testimonial-card {
  background: #fff;
  color: #244256;
  border-left: 8px solid var(--color-primary);
  box-shadow: 0 3.2px 12px 0 var(--color-shadow);
}
.testimonial-card p {
  color: #244256;
  font-family: var(--font-display);
  font-size: 1.12rem;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-size: 1.015rem;
  font-family: var(--font-body);
}

/* ===================================== */
/*           Contact Section             */
/* ===================================== */
.contact-section {
  background: var(--color-accent);
  border-radius: 20px;
  padding: 40px 28px;
}
.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 37px;
  margin-bottom: 20px;
}
.contact-info .text-section {
  font-size: 1rem;
  color: var(--color-dark);
}
.contact-section .text-section {
  margin-bottom: 12px;
  color: var(--color-primary);
}

/* ===================================== */
/*           Footer Styles               */
/* ===================================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 44px 0 25px 0;
  border-radius: 40px 40px 0 0/35px 35px 0 0;
  box-shadow: 0 -7px 40px -14px #19364233;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.11rem;
  font-weight: 600;
  color: #fff;
}
.footer-branding img {
  height: 34px;
}
.footer-main-menu, .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}
.footer-main-menu a, .footer-menu a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: 22px;
  transition: background .14s, color .16s;
}
.footer-main-menu a:hover, .footer-menu a:hover {
  background: var(--color-highlight);
  color: var(--color-dark);
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 8px;
}
.social-links a {
  background: #fff;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, box-shadow .15s;
  box-shadow: 0 2px 12px #0001;
}
.social-links a:hover {
  background: var(--color-secondary);
  box-shadow: 0 6px 18px #4caf501d;
}
.social-links img {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  footer .container {
    gap: 18px;
  }
  .footer-main-menu, .footer-menu {
    gap: 10px;
  }
  .footer-branding {
    font-size: .99rem;
    gap: 9px;
  }
}

/* ===================================== */
/*    Cookie Consent Banner & Modal      */
/* ===================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #fff;
  border-top: 5px solid var(--color-highlight);
  box-shadow: 0 -2px 24px 0 #13527a10;
  padding: 18px 20px 18px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  animation: slideInUp .8s cubic-bezier(.23, 1, .32, 1);
}
.cookie-banner p {
  color: var(--color-primary);
  margin-bottom: 11px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-banner button {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 25px;
  padding: 9px 22px;
  border: none;
  font-size: 1rem;
  margin-top: 4px;
  box-shadow: 0 1px 6px #19364213;
  cursor: pointer;
  min-width: 120px;
  transition: background .17s, color .17s;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn.accept:hover,.cookie-btn.accept:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.reject {
  background: #dd3344;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b81d29;
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-highlight);
  color: var(--color-dark);
}
@media (max-width: 520px){
  .cookie-banner {
    padding: 15px 4vw 17px 4vw;
    font-size: .98rem;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(19,82,122,.66);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .3s;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  max-width: 400px;
  width: 94vw;
  box-shadow: 0 12px 48px 0 #19364221;
  padding: 28px 25px 23px 25px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInUp .42s cubic-bezier(.25,.76,.39,1.41);
}
.cookie-modal h3 {
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 5px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: var(--color-secondary);
  outline: 1px solid var(--color-primary);
}
.cookie-category input[disabled] {
  accent-color: #aaa;
}
.cookie-modal-buttons {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-close-btn {
  padding: 0 8px;
  border: none;
  background: none;
  color: var(--color-primary);
  font-size: 1.4rem;
  position: absolute;
  top: 11px;
  right: 17px;
  transition: color .13s;
  cursor: pointer;
}
.cookie-close-btn:hover,.cookie-close-btn:focus {
  color: var(--color-highlight);
}

@keyframes slideInUp {
  0%{transform:translateY(100%);opacity:0}
  92%{transform:translateY(-7px);opacity:1}
  100%{transform:translateY(0);opacity:1}
}
@keyframes fadeIn {
  from { opacity: 0 }
  to   { opacity: 1 }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to   { opacity: 1; transform: translateY(0);}
}

/* ===================================== */
/*          Utility classes              */
/* ===================================== */
.text-section {
  margin-bottom: 10px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.mt-32 {margin-top: 32px;}

/* ============================================ */
/*       Responsive Adjustments                 */
/* ============================================ */
@media (max-width:900px) {
  .feature-list, .service-list,.services-section ul, .specials-offers ul, .rental-offer ul, .planning-services ul {
    flex-direction: column;
  }
  .contact-info {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width:480px) {
  .testimonial-card, .feature-item, .card {
    padding: 16px 7px 12px 12px;
  }
}
/* End of CSS */
