/* Mozartwege Erlebnisreisen - Warm Friendly CSS Style */

/* ---------------------
   RESET & BASICS
---------------------- */
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1a253a;
  background: #FFFDF9;
  line-height: 1.7;
  font-size: 1rem;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: #19315B;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus { color: #DFC177; }

ul, ol {
  padding-left: 1.3em;
  margin-bottom: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  color: #19315B;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

h1 { font-size: 2.375rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 18px; }
h3 { font-size: 1.17rem; margin-bottom: 10px; }
h4 { font-size: 1rem; }
h5, h6 { font-size: 0.9rem; }

p { margin-bottom: 16px; }

strong { color: #b48c23; font-weight: bold; }

.container {
  width: 100%;
  max-width: 1060px;
  padding: 0 20px;
  margin: 0 auto;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-section {
  margin-bottom: 20px;
  font-size: 1.1em;
}

/* ---------------------
   HEADER & NAVIGATION
---------------------- */
header {
  background: #F7DFA6;
  box-shadow: 0 2px 10px rgba(25,49,91,0.03);
  border-bottom: 2px solid #DFC177;
  position: relative;
  z-index: 50;
}
header .container {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  height: 52px;
  width: auto;
  border-radius: 18px;
  background: #fff8e0;
  padding: 6px 10px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #19315B;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background 0.18s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #DFC177;
  color: #19315B;
}

.btn.btn-primary {
  background: #19315B;
  color: #fffdee;
  border-radius: 100px;
  padding: 13px 32px;
  font-weight: 700;
  font-family: 'Lora', Georgia, serif;
  letter-spacing: 0.03em;
  font-size: 1.14rem;
  border: none;
  box-shadow: 0 2px 16px rgba(31, 35, 65, 0.11);
  transition: background 0.22s, box-shadow 0.22s, color 0.13s;
  cursor: pointer;
  margin-left: 15px;
  outline: none;
  position: relative;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #b48c23;
  color: #fff;
  box-shadow: 0 4px 24px rgba(223, 193, 119, 0.13);
}

/* Mobile menu burger button */
.mobile-menu-toggle {
  display: none;
  background: #19315B;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 120;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(25,49,91,0.13);
  transition: background 0.15s, color 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #DFC177;
  color: #19315B;
}

/* Mobile menu overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(247, 223, 166, 0.98);
  box-shadow: 0 6px 32px rgba(25, 49, 91, 0.12);
  z-index: 130;
  padding: 28px 24px 32px 24px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.61,0,0.49,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #19315B;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.7rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(25,49,91,0.10);
  transition: background 0.14s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #DFC177;
  color: #19315B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.33rem;
  color: #19315B;
  background: #fff8e0;
  border-radius: 16px;
  padding: 13px 20px;
  font-family: 'Lora', serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #DFC177;
  color: #19315B;
}

/* Hide desktop nav on mobile */
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ---------------------
   HERO SECTION
---------------------- */
.hero {
  background: linear-gradient(120deg, #fff8e0 70%, #F7DFA6 100%);
  padding: 64px 0 48px 0;
  margin-bottom: 40px;
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
  box-shadow: 0 8px 48px rgba(25,49,91,0.08);
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 650px;
  gap: 16px;
}
.hero h1 {
  color: #19315B;
  font-family: 'Lora', Georgia, serif;
  letter-spacing: 0.01em;
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.hero p {
  color: #1a253a;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero .btn {
  margin-top: 12px;
}

/* ---------------------
   FEATURES & CARDS
---------------------- */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.feature-item, .service-block {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 3px 16px rgba(223,193,119,0.12), 0 1.5px 6px rgba(25,49,91,0.07);
  padding: 28px 20px 18px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.19s, transform 0.15s;
  margin-bottom: 20px;
}
.feature-item:hover, .service-block:hover {
  box-shadow: 0 10px 32px rgba(223,193,119,0.19), 0 1.5px 8px rgba(25,49,91,0.09);
  transform: translateY(-3px) scale(1.015);
}
.feature-item img {
  height: 44px;
  width: 44px;
  margin-bottom: 10px;
  background: #FFFDF5;
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 2px 12px rgba(247,223,166,0.06);
}

.usp ul {
  list-style: disc inside;
  background: #FFEFD2;
  border-radius: 21px;
  margin: 20px 0 0 0;
  padding: 18px 20px 13px 24px;
  color: #322600;
  font-size: 1.03rem;
  box-shadow: 0 2px 10px rgba(223,193,119,0.11);
}

/* Section - Utility */
.section {
  background: #fffbed;
  border-radius: 26px;
  box-shadow: 0 2.5px 12px rgba(247,223,166,0.20);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Distinctive "usp" sections in all pages */
.usp {
  margin: 15px 0 0 0;
}

/* ---------------------
   TESTIMONIALS
---------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 16px rgba(25,49,91,0.07), 0 0.5px 8px rgba(223,193,119,0.08);
  margin-bottom: 20px;
  font-style: italic;
  color: #1a253a;
  font-size: 1.13rem;
}
.testimonial-card p {
  color: #1a253a;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #856e1a;
  font-size: 0.98em;
  font-weight: 600;
  margin-left: 12px;
  font-style: normal;
}

/* ---------------------
   CONTENT LAYOUTS
---------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 10px rgba(223,193,119,0.13);
  padding: 28px 18px;
  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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* For .service-list items */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-block {
  min-width: 220px;
  flex: 1 1 290px;
  margin-bottom: 20px;
}

/* Utility */
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

/* ---------------------
   FOOTER
---------------------- */
footer {
  background: #19315B;
  color: #fff;
  padding: 44px 0 24px 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  margin-top: 60px;
  box-shadow: 0 -4px 32px rgba(25,49,91,0.10);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo img {
  height: 44px;
  background: #fffbed;
  border-radius: 16px;
  padding: 3px 10px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin: 18px 0 8px 0;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #F7DFA6;
  font-size: 1.04rem;
  border-radius: 10px;
  padding: 7px 13px;
  transition: background 0.17s, color 0.14s;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #DFC177;
  color: #19315B;
}
.brand-info {
  color: #fffbed;
  text-align: center;
  font-size: 1.03rem;
  margin-top: 4px;
}
.brand-info a {
  color: #F7DFA6;
  text-decoration: underline;
}

/* ---------------------
   FORMS & BUTTONS
---------------------- */
.btn {
  display: inline-block;
  border: none;
  outline: none;
  border-radius: 100px;
  font-size: 1.14rem;
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  background: #DFC177;
  color: #19315B;
  padding: 11px 32px;
  margin-top: 6px;
  box-shadow: 0 1.5px 8px rgba(223,193,119,0.10);
  transition: background 0.18s, color 0.15s, transform 0.14s, box-shadow 0.17s;
}
.btn:hover, .btn:focus {
  background: #b48c23;
  color: #fff;
  transform: translateY(-1px) scale(1.027);
  box-shadow: 0 3px 18px rgba(223,193,119,0.18);
}

/* Contact details block */
.contact-details {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 2px 14px rgba(25,49,91,0.06);
  padding: 22px 20px 18px 24px;
  margin-bottom: 24px;
  font-size: 1.06em;
}
.contact-details h2 {
  color: #19315B;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.18rem;
}

/* Confirmation message */
.confirmation-message, .next-steps-info {
  font-size: 1.08rem;
  color: #1a253a;
  background: #FFFDF9;
  border-radius: 20px;
  margin-bottom: 14px;
  padding: 16px 16px 12px 24px;
  box-shadow: 0 1.5px 6px rgba(223,193,119,0.09);
}

/* Special highlights (e.g. konzertabende.html) */
.special-highlight {
  background: #FFEFD2;
  border-radius: 22px;
  padding: 18px 18px 6px 24px;
  box-shadow: 0 2px 12px rgba(247,223,166,0.13);
  margin-bottom: 16px;
}
.special-highlight h3 {
  margin-bottom: 7px;
  color: #b48c23;
}

/* ---------------------
   COOKIE CONSENT BANNER
---------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFF8E2;
  color: #19315B;
  border-top: 2px solid #DFC177;
  box-shadow: 0 -2px 18px rgba(25,49,91,0.11);
  padding: 24px 12px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  z-index: 250;
  animation: cookieslidein 0.5s ease;
}
@keyframes cookieslidein {
  from { transform: translateY(200px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #19315B;
  font-size: 1.04rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.cookie-banner .btn {
  padding: 8px 22px;
  font-size: 1rem;
}
.cookie-banner .btn-accept {
  background: #19315B;
  color: #fffdee;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #b48c23;
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #FFEFD2;
  color: #19315B;
  border: 2px solid #DFC177;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #DFC177;
  color: #19315B;
}
.cookie-banner .btn-settings {
  background: #fff;
  color: #b48c23;
  border: 2px solid #DFC177;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #F7DFA6;
  color: #19315B;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30, 31, 35, 0.32);
  z-index: 260;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinmodal 0.30s;
}
@keyframes fadeinmodal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fffbed;
  border-radius: 24px;
  max-width: 480px;
  padding: 36px 30px 28px 30px;
  box-shadow: 0 2.5px 16px rgba(25,49,91,0.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookiescalefade 0.32s;
}
@keyframes cookiescalefade {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #19315B;
  font-size: 1.3rem;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 1.06rem;
}
.cookie-category .switch {
  margin-left: 8px;
}
.cookie-close-modal {
  position: absolute;
  top: 13px; right: 13px;
  background: #19315B;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 35px; height: 35px;
  font-size: 1.23rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cookie-close-modal:hover, .cookie-close-modal:focus {
  background: #DFC177;
  color: #19315B;
}
.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0; height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #DFC177;
  border-radius: 20px;
  transition: .3s;
}
.switch input:checked + .slider {
  background: #19315B;
}
.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 .5px 3px rgba(193, 161, 90, 0.11);
}
.switch input:checked + .slider:before {
  transform: translateX(18px);
  background: #F7DFA6;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal-actions .btn {
  font-size: 1.03rem;
  padding: 8px 22px;
}

/* Essential cookies label */
.essential-label {
  color: #b48c23;
  font-weight: bold;
  font-size: 0.99rem;
  margin-left: 8px;
}

/* ---------------------
   RESPONSIVE DESIGN
---------------------- */
@media (max-width: 1023px) {
  header .container {
    gap: 10px;
    min-height: 56px;
    padding: 0 10px;
  }
  .hero {
    padding: 36px 0 30px 0;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .section {
    border-radius: 17px;
    padding: 32px 9px;
  }
  .feature-grid, .service-list {
    gap: 12px;
  }
  .feature-item, .service-block {
    min-width: 180px;
    padding: 18px 8px 12px 14px;
    border-radius: 17px;
  }
  .testimonial-card {
    border-radius: 18px;
    gap: 10px;
    font-size: 1rem;
    padding: 12px 10px;
  }
  .usp ul {
    border-radius: 13px;
    padding: 10px 10px 9px 12px;
    font-size: 0.97rem;
  }
  .footer-logo img {
    height: 32px;
    border-radius: 10px;
    padding: 1.5px 4.5px;
  }
}

@media (max-width: 768px) {
  .hero .container {
    min-height: 120px;
    padding: 0 4px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    gap: 9px;
    max-width: 97vw;
  }
  .hero h1 {
    font-size: 1.58rem;
  }
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.09rem; }
  .btn, .btn.btn-primary { padding: 10px 19px; font-size: 1rem; }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 13px;
  }
  .feature-item, .service-block {
    flex: 1 1 75vw;
    min-width: unset;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 11px;
  }
  .testimonial-card {
    font-size: 0.97rem;
  }
  .footer-nav {
    gap: 7px;
    font-size: 0.98rem;
  }
  .brand-info { font-size: 0.99rem; }
  .cookie-modal {
    max-width: 98vw;
    padding: 20px 11px 13px 16px;
  }
}

@media (max-width: 600px) {
  .section { padding: 23px 2px; margin-bottom: 34px; }
  .testimonial-card, .usp ul {
    font-size: 0.95rem;
    padding: 10px 7px 9px 10px;
  }
  .footer-logo img { height: 23px; }
}

/* text-image-section: column on mobile */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* Make sure min spacing between cards and sections is kept */
.card, .feature-item, .service-block, .usp, .testimonial-card,.section,.confirmation-message,.special-highlight {
  margin-bottom: 20px !important;
}

/* ---------------------
   MISC (Forms, Tables)
---------------------- */
input, textarea, select {
  font-family: "Open Sans", Arial, sans-serif;
  border-radius: 9px;
  border: 1.5px solid #DFC177;
  padding: 9px 14px;
  margin-bottom: 18px;
  font-size: 1rem;
  outline: none;
  background: #fff7e6;
  color: #2a2a2a;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #b48c23;
}

/* Tables (for legal/policy pages) */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 18px;
  background: #fffef8;
  box-shadow: 0 1.5px 6px rgba(223,193,119,0.09);
  border-radius: 14px;
  overflow: hidden;
}
th, td {
  padding: 13px 16px;
  border-bottom: 1px solid #F7DFA6;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #F7DFA6;
  color: #19315B;
}

/* ---------------------
   MICRO-INTERACTIONS
---------------------- */
a, .btn, .btn.btn-primary, .mobile-menu-toggle, .mobile-menu-close, .footer-nav a, .switch .slider {
  transition: background 0.18s, color 0.15s, box-shadow 0.13s, transform 0.11s;
}

.btn:active, .btn.btn-primary:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 1px 3px rgba(223,193,119,0.16);
}

/* Focus styles for accessibility */
a:focus, .btn:focus, .btn.btn-primary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #b48c23;
  outline-offset: 3px;
}

::-webkit-input-placeholder { color: #a58a57; opacity: 1; }
::-moz-placeholder { color: #a58a57; opacity: 1; }
:-ms-input-placeholder { color: #a58a57; opacity: 1; }
::placeholder { color: #a58a57; opacity: 1; }

/* Hide scrollbars in cookie banner/modal for overflow-y:auto */
.cookie-modal, .cookie-banner {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.cookie-modal::-webkit-scrollbar, .cookie-banner::-webkit-scrollbar { display: none; }

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