/* VIN CIGAR LEIPZIG - GRADIENT MODERN STYLE.CSS  */
/* CSS 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #F3EFE7 0%, #e8ded4 100%);
  color: #322016;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #8C2533;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4C2E1E;
}
ul, ol {
  padding-left: 1.6em;
  margin-top: 12px;
  margin-bottom: 12px;
  color: #422d22;
}
li {
  margin-bottom: 8px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #4C2E1E;
  line-height: 1.18;
}
h1 { font-size: 2.4rem; margin-bottom: 18px; }
h2 { font-size: 1.8rem; margin-bottom: 16px; }
h3 { font-size: 1.32rem; margin-bottom: 13px; }
h4, h5, h6 { font-size: 1.1rem; }
@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.5rem; }
}
p {
  margin-bottom: 16px;
  color: #514236;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}

/* GLOBAL CONTAINER AND LAYOUTS */
.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(76,46,30,0.09);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.3s;
  padding: 24px 22px;
  flex: 1 1 300px;
  min-width: 240px;
  max-width: 350px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(140,37,51,0.16);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.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: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #faf8f3;
  border-left: 5px solid #8C2533;
  border-radius: 10px;
  box-shadow: 0 2px 14px 0 rgba(76,46,30,0.08);
  max-width: 540px;
  min-width: 220px;
  transition: background 0.28s;
  color: #322016 !important;
}
.testimonial-card p {
  color: #322016;
  font-size: 1.07rem;
}
.testimonial-meta {
  font-family: 'Roboto', Arial, sans-serif;
  color: #4C2E1E;
  font-size: 0.97rem;
  font-style: italic;
}

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

.quick-links {
  margin-top: 8px;
  font-size: 1.04em;
  color: #8C2533;
}
.quick-links a {
  color: #4C2E1E;
  font-weight: 600;
  margin: 0 2px;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #FFF 70%, #fdeeee 100%);
  box-shadow: 0 4px 16px rgba(76,46,30,0.03);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  max-height: 54px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  color: #4C2E1E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.22s, color 0.2s;
}
nav a:hover, nav a.active {
  background: #f7e5e5;
  color: #8C2533;
}
.button.primary {
  background: linear-gradient(90deg, #8C2533 0%, #4C2E1E 100%);
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(140,37,51,0.06);
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.23s;
  margin-left: 20px;
  letter-spacing: 0.03em;
}
.button.primary:hover, .button.primary:focus {
  background: linear-gradient(90deg, #4C2E1E 0%, #8C2533 100%);
  box-shadow: 0 4px 20px rgba(140,37,51,0.13);
}
.button {
  display: inline-block;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #8C2533;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.2s;
  z-index: 180;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(112deg, #fff 73%, #fdeeee 100%);
  box-shadow: -1px 0 38px rgba(140,37,51,0.13);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.56,0.16,0.24,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  z-index: 9999;
}
.mobile-menu.show {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #8C2533;
  font-size: 2rem;
  padding: 24px 19px 12px 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 99999;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-top: 10px;
  width: 100%;
}
.mobile-nav a {
  color: #4C2E1E;
  font-size: 1.18rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 18px 32px 16px 36px;
  border-bottom: 1px solid #F3EFE7;
  display: block;
  border-radius: 0;
  transition: background 0.17s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #f7e5e5;
  color: #8C2533;
}
@media (max-width: 980px) {
  header .container nav, header .container .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* MAIN PAGE SECTIONS */
main {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 70px;
}
@media (max-width: 480px) {
  main {
    padding-bottom: 20px;
  }
}

/* FORMS & INPUTS */
input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  border-radius: 7px;
  padding: 11px 15px;
  border: 1px solid #E1D7CE;
  margin-bottom: 18px;
  width: 100%;
  color: #4C2E1E;
  background: #fff;
  transition: border 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #8C2533;
  box-shadow: 0 0 0 2px #f5c8d1;
}
label {
  font-weight: 500;
  margin-bottom: 7px;
  display: block;
}

/* FOOTER */
footer {
  background: linear-gradient(92deg, #F3EFE7 60%, #e2b7bc 120%);
  padding: 40px 0 20px 0;
  margin-top: 35px;
  color: #4C2E1E;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-brand img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-right: 32px;
}
footer nav a {
  color: #8C2533;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.5;
  font-size: 1.07rem;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #4C2E1E;
}
.footer-contact {
  max-width: 270px;
  font-size: 0.97rem;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-contact {
    max-width: none;
  }
}

/* RESPONSIVE - PAGE LAYOUTS */
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .card {
    padding: 16px 8px;
  }
}
@media (max-width: 520px) {
  .card, .testimonial-card {
    min-width: 0;
    padding: 14px 5px;
    font-size: 0.98rem;
  }
}

/* COOKIES - CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: linear-gradient(to right, #fff 80%, #f7e5e5 100%);
  color: #4C2E1E;
  box-shadow: 0 -5px 28px 0 rgba(140,37,51,0.07);
  padding: 20px 14px 18px 14px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 30000;
  gap: 22px;
  font-size: 1rem;
  transition: transform 0.3s;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  flex: 1 1 260px;
  max-width: 530px;
  color: #322016;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner .button {
  min-width: 128px;
  font-size: 1em;
  padding: 9px 23px;
  border-radius: 21px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, color 0.18s, box-shadow 0.18s;
}
.cookie-banner .button.accept {
  background: linear-gradient(90deg, #8C2533 0%, #4C2E1E 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(140,37,51,0.08);
}
.cookie-banner .button.accept:hover,
.cookie-banner .button.accept:focus {
  background: linear-gradient(90deg, #4C2E1E 0%, #8C2533 100%);
}
.cookie-banner .button.reject {
  background: #fff;
  color: #8C2533;
  font-weight: 500;
  border: 1px solid #e2b7bc;
}
.cookie-banner .button.reject:hover,
.cookie-banner .button.reject:focus {
  background: #f7e5e5;
  color: #4C2E1E;
}
.cookie-banner .button.settings {
  background: #f7e5e5;
  color: #4C2E1E;
  font-weight: 500;
}
.cookie-banner .button.settings:hover {
  background: #e2b7bc;
  color: #8C2533;
}

@media (max-width: 660px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 15px 4px 14px 4px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 32000;
  background: rgba(76,46,30,0.42);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  animation: fadeIn 0.28s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 44px 0 rgba(140,37,51,0.17);
  padding: 38px 32px 28px 32px;
  max-width: 440px;
  width: 90vw;
  color: #4C2E1E;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cookie-modal-header h2 {
  font-size: 1.5rem;
  color: #8C2533;
  margin: 0;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #8C2533;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 0 0 0 20px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07em;
}
.cookie-category input[type=checkbox] {
  accent-color: #8C2533;
  width: 19px;
  height: 19px;
  min-width: 19px;
  border-radius: 5px;
}
.cookie-category label {
  font-size: 1.08em;
  margin: 0;
}
.cookie-category .essential {
  font-weight: 600;
  color: #4C2E1E;
}
.cookie-modal-actions {
  margin-top: 26px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal .button {
  padding: 10px 25px;
  border-radius: 21px;
  font-size: 1.09em;
}
.cookie-modal .button.accept {
  background: linear-gradient(90deg, #8C2533 0%, #4C2E1E 100%);
  color: #fff;
  border: none;
}
.cookie-modal .button.reject {
  background: #fff;
  color: #8C2533;
  border: 1px solid #e2b7bc;
}
.cookie-modal .button.save {
  background: #F3EFE7;
  color: #4C2E1E;
  border: none;
}
.cookie-modal .button.accept:hover, .cookie-modal .button.save:hover {
  background: #e2b7bc;
  color: #8C2533;
}

@media (max-width: 540px) {
  .cookie-modal-dialog {
    padding: 21px 8px;
    max-width: 97vw;
  }
}

/* MICROANIMATIONS FOR INTERACTIONS */
.button, .button.primary, .cookie-banner .button, .cookie-modal .button {
  transition: background 0.2s, color 0.18s, box-shadow 0.22s, transform 0.18s;
}
.button:active, .cookie-banner .button:active, .cookie-modal .button:active {
  transform: scale(0.97);
}

/* ICONS (for kontakt page) */
.content-wrapper img[alt^='Adresse'],
.content-wrapper img[alt^='Telefon'],
.content-wrapper img[alt^='E-Mail'],
.content-wrapper img[alt^='Öffnungszeiten'] {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  height: 23px;
  width: 23px;
  margin-bottom: 2px;
}

/* UTILITIES AND MODIFIERS */
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.text-center { text-align: center; }

/* VISUAL ENHANCEMENTS */
.card, .testimonial-card, .cookie-modal-dialog {
  backdrop-filter: blur(0.5px);
}

/* VISUALLY HIDDEN FOR ACCESSIBILITY */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px; width: 1px; margin: -1px; border: 0; padding: 0;
}

/* SELECTION COLOR */
::selection {
  background: #8C2533;
  color: #fff;
}

/* REMOVE NUMBER INPUT ARROWS */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* END OF CSS */
