/* 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
body {
  background: #faecd9;
  color: #2b2220;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  /* subtle vintage pattern background */
  background-image: repeating-linear-gradient(135deg, #f5e4c3 0px, #faecd9 16px, transparent 20px, transparent 30px), repeating-linear-gradient(45deg, #f2d2ae 0px, #faecd9 20px, transparent 35px, transparent 50px);
  background-size: 80px 80px, 120px 120px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #003350;
  text-decoration: none;
  transition: color .2s;
}
a:focus, a:hover {
  color: #FF9000;
  outline: none;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  color: #003350;
  letter-spacing: 0.04em;
}
h1 {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 24px;
  text-shadow: 2px 3px 0 #ffe3b3, 0 2px 12px #c6b48c50;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 1px 2px 0 #ffe3b3;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
h4,h5,h6{
  font-size: 1.1rem;
  font-weight: 600;
}
p, ul, ol {
  margin-bottom: 1.15em;
}
ul, ol {
  padding-left: 1.65em;
  margin-bottom: 1.5em;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

/* ============= MAIN STRUCTURE ============== */
.container {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: #fff8ec;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 #baa98a1c, 0 2px 8px 0 #ffe6b833;
  padding: 42px 26px 36px 26px;
  margin-bottom: 28px;
  position: relative;
}

/* =================== HEADER/NAV ==================== */
header {
  box-shadow: 0 6px 40px 0 #998a6614, 0 2px 8px 0 #ffe3b370;
  background: #ebc184;
  border-bottom: 3px solid #003350;
  position: sticky;
  top: 0;
  z-index: 30;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0.8rem 0;
}
nav > a > img {
  height: 55px;
  width: auto;
  margin-right: 18px;
  filter: drop-shadow(2px 2px 0 #ffe3b3);
}
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}
nav ul li {
  margin-bottom: 0;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: .04em;
  padding: 4px 12px;
  border-radius: 6px;
  color: #003350;
  transition: background .17s, color .17s;
}
nav ul li a:hover, nav ul li a:focus {
  background: #fff2db;
  color: #FF9000;
}
nav ul li .btn-primary {
  color: #fff;
  background: #FF9000;
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 1.09rem;
  box-shadow: 0 2px 8px 0 #ff900043;
  border: none;
  transition: background .14s, color .17s, box-shadow .14s;
}
nav ul li .btn-primary:hover, nav ul li .btn-primary:focus {
  background: #003350;
  color: #ffe3b3;
  box-shadow: 0 2px 16px #00335042;
}

.mobile-menu-toggle {
  display: none;
  background: #FF9000;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 2.2rem;
  width: 52px;
  height: 44px;
  margin-left: 18px;
  box-shadow: 0 2px 6px #d3873044;
  cursor: pointer;
  transition: background .14s, color .2s;
  z-index: 60;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #003350;
  color: #ffe3b3;
}

/* Hamburger for mobile */
@media (max-width: 1023px) {
  nav ul { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* =================== MOBILE MENU ==================== */
.mobile-menu {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #ebc184;
  color: #003350;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(-120%);
  transition: transform .42s cubic-bezier(0.55, 0, 0.08, 1);
  box-shadow: 0 8px 32px #996b1066;
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #003350;
  color: #ffe3b3;
  border: none;
  border-radius: 14px;
  font-size: 2.1rem;
  margin: 30px 32px 0 0;
  padding: 6px 20px 7px;
  cursor: pointer;
  box-shadow: 0 2px 6px #00335033;
  transition: background .14s, color .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FF9000;
  color: #003350;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 34px auto 0 auto;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: .03em;
  color: #003350;
  background: transparent;
  border-radius: 10px;
  padding: 10px 28px 10px 36px;
  min-width: 222px;
  transition: background .17s, color .16s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff4e1;
  color: #ff9000;
}

/* Above 1024px hide mobile menu */
@media (min-width: 1024px) {
  .mobile-menu { display: none; }
  .mobile-menu-toggle { display: none; }
}

/* ================= BUTTONS / LINK CTAs =============== */
.btn-primary, .btn-secondary {
  display: inline-block;
  border: none;
  border-radius: 30px;
  background: #FF9000;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 10px 36px;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  box-shadow: 0 3px 18px #ff900044, 0 2px 10px #b9a05725;
  transition: background .17s, color .17s, box-shadow .22s;
  text-align: center;
  text-shadow: 1px 1px 0 #bb7800;
}
.btn-primary:hover, .btn-primary:focus {
  background: #003350;
  color: #ffebcb;
  box-shadow: 0 7px 31px #00335024;
  text-shadow: 1px 1px 0 #00202e;
}
.btn-secondary {
  background: #003350;
  color: #ffe3b3;
  text-shadow: 1px 1px 0 #214369;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FF9000;
  color: #fff;
  text-shadow: 1px 1px 0 #bb7800;
}

/* ========== FLEX SECTION LAYOUTS ========== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff8ec;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 3px 24px #baa98a1d;
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 22px;
  background: #f5e6c6;
  border-left: 12px solid #FF9000;
  border-radius: 16px;
  box-shadow: 0 3px 15px #baa98a15;
  color: #212121 !important;
  max-width: 620px;
  font-size: 1.17rem;
}
.testimonial-card p {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin: 0;
  color: #2c2320;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #003350;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* =============== FAQ ACCORDION =============== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 1em;
}
.faq-item {
  background: #f5e6c6;
  border-radius: 14px;
  box-shadow: 0 2px 12px #c7ad7a19;
  padding: 18px 18px 12px 18px;
  border-left: 8px solid #003350;
}
.faq-item h3 {
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #003350;
  margin-bottom: 6px;
  text-shadow: none;
}
.faq-item p {
  font-weight: 400;
  color: #432b1c;
  margin-bottom: 0;
  font-size: 1rem;
}


/* =============== FOOTER =============== */
footer {
  background: #003350;
  color: #ffe3b3;
  border-top: 4px solid #FF9000;
  padding: 38px 0 20px 0;
  box-shadow: 0 -4px 24px #77736622;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.footer-nav a {
  color: #ffe3b3;
  text-decoration: underline;
  transition: color .13s;
  padding: 4px 8px;
  border-radius: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FF9000;
  background: #fff3e1;
}
.contact-short, .opening-hours-short {
  font-size: 0.96rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.contact-short img, .opening-hours-short img {
  vertical-align: middle;
  height: 18px;
  margin-right: 4px;
}
.copyright {
  font-size: .95rem;
  text-align: center;
  color: #baa98a;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ========== COOKIE BANNER/MODAL ============= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #f5e6c6;
  color: #2b2220;
  border-top: 4px solid #FF9000;
  box-shadow: 0 -2px 12px #bdb1722c;
  padding: 24px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s cubic-bezier(.25,.8,.25,1);
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  font-size: 1.08rem;
  max-width: 700px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 2px;
}
.cookie-banner button, .cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 22px;
  padding: 8px 26px;
  margin: 0 3px 2px 0;
  box-shadow: 0 2px 9px #baa98a13;
  background: #FF9000;
  color: #fff;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cookie-banner button.reject-btn {
  background: #003350;
  color: #ffe3b3;
}
.cookie-banner button.settings-btn {
  background: #fff8ec;
  color: #003350;
  border: 2px solid #003350;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #003350;
  color: #ffe3b3;
}
.cookie-banner button.settings-btn:hover, .cookie-banner button.settings-btn:focus {
  background: #FF9000;
  color: #fff;
  border-color: #FF9000;
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #fff8ec;
  color: #003350;
  transform: translate(-50%, -50%) scale(0.92);
  min-width: 320px;
  max-width: 92vw;
  width: 420px;
  z-index: 1500;
  box-shadow: 0 4px 44px #baa98a32, 0 2px 8px #ffe3b340;
  border-radius: 18px;
  padding: 34px 20px 28px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s cubic-bezier(.22,1.01,.29,.98), transform .32s cubic-bezier(.22,1.01,.29,.98);
}
.cookie-modal.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: #003350;
  color: #ffe3b3;
  border: none;
  font-size: 1.5rem;
  border-radius: 9px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background .13s, color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FF9000;
  color: #fff;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 1em;
  color: #FF9000;
  font-weight: 900;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 1.11rem;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: #ebc184;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .17s;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: #FF9000;
}
.cookie-toggle input[type="checkbox"]:before {
  content: '';
  display: block;
  position: absolute;
  top: 3px; left: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px #aa7d1c22;
  transition: left .18s cubic-bezier(.67,0,1,1);
}
.cookie-toggle input[type="checkbox"]:checked:before {
  left: 17px;
}
.cookie-modal .cookie-category label {
  margin-left: 12px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .desc {
  color: #79603e;
  font-size: 0.96rem;
  margin-left: 8px;
}
.cookie-modal .category-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 1.5em;
  justify-content: flex-end;
}
.cookie-modal button {
  font-size: 1.06rem;
}

/* ========== LIST STYLES ========== */
ul li::marker, ol li::marker {
  color: #FF9000;
  font-size: 1.13em;
}
ul li, ol li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* ============== ICON STYLE ============== */
img[alt^="Telefon"], img[alt^="E-Mail"], img[alt^="Öffnungszeiten"], img[alt^="Adresse"], img[alt^="icon-"] {
  height: 22px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

/* ========== FORM STYLE (FOR BOOKING/CONTACT) ========= */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  border: 2px solid #ebc184;
  border-radius: 10px;
  padding: 10px 14px;
  background: #fff8ec;
  margin-bottom: 16px;
  outline: none;
  transition: border-color .16s, box-shadow .16s;
  box-shadow: 0 1px 5px #eba3651a;
  width: 100%;
  max-width: 520px;
}
input:focus, textarea:focus, select:focus {
  border-color: #FF9000;
  box-shadow: 0 2px 12px #ff900033;
}

/* ========== CARD STYLES ========== */
.card {
  background: #fff8ec;
  border-radius: 20px;
  box-shadow: 0 3px 24px #baa98a1d;
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

/* ========== RESPONSIVE FLEX LAYOUTS ========== */
@media (max-width: 950px) {
  .container { max-width: 100%; }
}
@media (max-width: 768px) {
  .section {
    padding: 24px 6px;
  }
  .content-wrapper {
    padding: 24px 10px 18px 10px;
  }
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.38rem; }
  nav > a > img { height: 40px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; padding: 15px 12px; }
  .contact-short, .opening-hours-short { flex-direction: column; align-items: flex-start; gap: 4px; }
}
@media (max-width: 650px) {
  .container { padding: 0 3vw; }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.09rem; }
  .footer-nav { font-size: 0.98rem; flex-direction: column; gap: 2px; }
  .card, .content-wrapper {padding: 13px 4vw;}
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
}

/* ========== MICRO-INTERACTIONS/ANIMATIONS ========== */
.btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.13s, box-shadow .22s, transform .25s cubic-bezier(.55,0,0.55,1);
}
.btn-primary:active, .btn-secondary:active,
.cookie-banner button:active, .cookie-modal button:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(.96);
}
.content-wrapper, .card, .testimonial-card, .faq-item {
  transition: box-shadow .17s, transform .17s;
}
.content-wrapper:hover, .card:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0 8px 32px #baa98a2f, 0 7px 18px #baa98a13;
  transform: translateY(-2px) scale(1.012);
}

/* ========== VINTAGE DECORATIVE EFFECTS =========== */
.content-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  left: 16px; top: 10px;
  width: 60px;
  height: 15px;
  background: repeating-linear-gradient(100deg, #FF9000 0, #FF9000 8px, #ebc184 8px, #ebc184 15px);
  border-radius: 12px 12px 6px 6px;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}
.content-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  right: 24px; bottom: 13px;
  width: 22px; height: 22px;
  background: #FF9000;
  opacity: .07;
  border-radius: 50%;
  pointer-events: none;
}

/* Hide vintage deco on mobile */
@media (max-width: 600px) {
  .content-wrapper:before, .content-wrapper:after { display: none; }
}

/* ================= SCROLLBARS FOR VINTAGE TASTE ================= */
::-webkit-scrollbar {
  width: 11px;
  background: #ffe3b3;
}
::-webkit-scrollbar-thumb {
  background: #FF9000;
  border-radius: 10px;
  border: 2px solid #ffe3b3;
}

/* ========== ACCESSIBILITY: FOCUS STATES ========== */
a:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible {
  outline: 3px dashed #FF9000;
  outline-offset: 2px;
  box-shadow: 0 0 6px #FF9000cc;
  background: #fff8ec;
}

/* ========== PRINT ========== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .content-wrapper { box-shadow: none !important; background: #fff !important; }
}

/* END OF STYLES */
