/* ====================================================== */
/*    Glanzpunkt Leipzig CSS – Geometric Structured Style  */
/* ====================================================== */

/* ==== RESET & BASE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Lato', Arial, sans-serif;
  color: #212529;
  background: #F5F5F5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #212529;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus,
a:hover {
  color: #D4A373;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
  padding-left: 0;
}
strong, b {
  font-weight: 700;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
  color: #212529;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-align: left;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #212529;
}

/* ==== CONTAINER ==== */
.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #fff;
  border-bottom: 2px solid #E7E7E7;
  box-shadow: 0 3px 16px 0 rgba(33,37,41,0.03);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 40px;
  width: 160px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding: 4px 0;
  transition: color 0.13s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #D4A373;
  transition: width 0.18s cubic-bezier(.9,0,.27,1);
  position: absolute;
  left: 0; bottom: -2px;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}

/* ---- HEADER BUTTON ---- */
.button.primary {
  background: #D4A373;
  color: #fff;
  border-radius: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  box-shadow: 0 3px 20px rgba(33,37,41,0.08);
  border: none;
  cursor: pointer;
  letter-spacing: .07em;
  transition: background .18s, color .13s, box-shadow .18s;
  outline: none;
}
.button.primary:hover, .button.primary:focus {
  background: #212529;
  color: #D4A373;
  box-shadow: 0 5px 32px rgba(33,37,41,0.11);
}
.button.secondary {
  background: #fff;
  color: #212529;
  border: 2px solid #D4A373;
  border-radius: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  letter-spacing: .07em;
  cursor: pointer;
  margin-top: 8px;
  transition: background .15s, color .13s, border .18s;
}
.button.secondary:hover, .button.secondary:focus {
  background: #D4A373;
  color: #fff;
  border-color: #212529;
}
.button {
  display: inline-block;
  text-align: center;
  min-width: 54px;
  box-sizing: border-box;
  margin-bottom: 10px;
  transition: box-shadow .18s, background .18s, color .18s;
}

/* ==== HERO SECTIONS ==== */
.hero {
  background: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px 0 rgba(212,163,115,0.03);
  padding-top: 48px;
  padding-bottom: 48px;
  margin-bottom: 60px;
}
.hero .container,
.hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 900px) {
  .hero {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .hero .container, .hero .content-wrapper {
    align-items: flex-start;
    gap: 36px;
  }
}

/* ==== SECTION LAYOUTS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(33,37,41,0.065);
}
.features, .feature-grid, .feature-list, .services, .service-list,
 .about-story, .values,
 .services-overview, .event-list {
  margin-bottom: 60px;
}
.features .content-wrapper,
.services .content-wrapper { gap: 32px; }
.feature-grid, .service-list, .service-cards, .event-list, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid > div, .service-cards > div, .service-list > div, .event-list > div, .contact-details > div {
  background: #F5F5F5;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(33,37,41,0.04);
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-grid > div:hover, .service-cards > div:hover, .service-list > div:hover, .event-list > div:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 7px 28px 0 rgba(33,37,41,.11);
}
.feature-grid img, .service-list img, .contact-details img {
  height: 38px;
  width: 38px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .feature-grid, .service-list, .service-cards, .event-list, .contact-details {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
  }
  .feature-grid > div, .service-cards > div, .service-list > div, .event-list > div {
    width: calc(33% - 21.33px);
    min-width: 220px;
    flex: 1 1 244px;
    margin-bottom: 24px;
  }
}

/* ==== CARD CONTAINER AND CARDS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(33,37,41,0.07);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 7px 32px 0 rgba(33,37,41,.14);
  transform: translateY(-4px) scale(1.015);
}

/* ==== FLEX & CONTENT STRUCTURES ==== */
.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: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(33,37,41,0.08);
  margin-bottom: 20px;
  border-left: 6px solid #D4A373;
  overflow: hidden;
}
.testimonial-card p {
  color: #222;
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 0;
  font-family: 'Lato', Arial, sans-serif;
}
.testimonial-card strong {
  color: #212529;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0.06em;
}

/* ==== CTA ==== */
.cta {
  background: #212529;
  color: #fff;
  text-align: left;
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 4px 24px 0 rgba(21,17,11,0.06);
}
.cta h2, .cta p { color: #fff; }
.cta .button.primary,
.cta .button.secondary {
  margin-top: 20px;
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  border-top: 2px solid #E7E7E7;
  margin-top: 60px;
  padding-top: 36px;
  padding-bottom: 16px;
  font-size: 1rem;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-top: 8px;
}
.footer-nav a {
  color: #212529;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.12s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  border-bottom: 2px solid #D4A373;
  color: #D4A373;
}
.footer-contact {
  color: #212529;
  font-size: 0.95rem;
  margin-top: 10px;
}
.footer-contact a {
  color: #D4A373;
  word-break: break-all;
  transition: color 0.11s;
}
.footer-contact a:hover,
.footer-contact a:focus {
  color: #212529;
  text-decoration: underline;
}

footer .container {
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (min-width: 700px) {
  footer .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
  }
  .footer-logo { order: 1; }
  .footer-nav { order: 2; }
  .footer-contact { order: 3; }
}

/* ==== CONTACT INFO BLOCKS ==== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.map-text {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 1px 2px rgba(33,37,41,0.035);
  margin: 20px 0 6px 0;
}

/* ==== FORM SECTION ==== */
.form-section {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  margin-bottom: 60px;
}

/* ==== ADDITIONAL: POLICY AND LEGAL SECTIONS ==== */
.privacy-policy, .terms-and-conditions, .gdpr-info, .cookie-policy, .confirmation {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(33,37,41,0.055);
  padding: 40px 20px;
  margin-bottom: 60px;
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: block;
  background: #212529;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 2rem;
  line-height: 1;
  padding: 10px 18px 10px 18px;
  margin-left: auto;
  margin-right: 8px;
  cursor: pointer;
  transition: background .15s, color .15s;
  z-index: 1101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #D4A373;
  color: #212529;
}
@media(min-width: 1000px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,37,41,0.98);
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.85,.01,.13,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 1200;
  box-shadow: 0 6px 90px rgba(33,37,41,.21);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 16px 20px 2px 20px;
  margin-left: auto;
  margin-top: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #D4A373;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 28px 24px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.28rem;
  letter-spacing: 0.11em;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  margin: 0;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-color 0.13s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #D4A373;
  border-bottom: 2px solid #D4A373;
}

@media (min-width: 1000px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}
@media (max-width: 999px) {
  .main-nav {
    display: none !important;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #fff;
  color: #212529;
  box-shadow: 0 -4px 24px rgba(33,37,41,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 20px 18px 20px;
  transition: transform .24s cubic-bezier(.85,.01,.13,1), opacity .17s;
  border-top: 3px solid #D4A373;
}
.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 6px;
}
.cookie-banner .button-cookie {
  padding: 12px 24px;
  border-radius: 10px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background .15s, color .14s, border-color .14s;
  margin-bottom: 0;
}
.button-cookie.accept {
  background: #D4A373;
  color: #fff;
}
.button-cookie.accept:hover, .button-cookie.accept:focus {
  background: #212529;
  color: #D4A373;
}
.button-cookie.reject {
  background: #F5F5F5;
  color: #212529;
  border: 2px solid #D4A373;
}
.button-cookie.reject:hover, .button-cookie.reject:focus {
  background: #D4A373;
  color: #fff;
  border-color: #212529;
}
.button-cookie.settings {
  background: #fff;
  color: #212529;
  border: 2px solid #212529;
}
.button-cookie.settings:hover, .button-cookie.settings:focus {
  background: #212529;
  color: #fff;
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2100;
  background: rgba(33,37,41,0.58);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(80,61,31,0.19);
  padding: 36px 24px 28px 24px;
  min-width: 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalIn 0.34s cubic-bezier(.85,.01,.13,1);
}
@keyframes modalIn {
  0% { transform: scale(.94); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  border: none;
  color: #212529;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  transition: color 0.18s;
}
.cookie-modal-close:focus,
.cookie-modal-close:hover {
  color: #D4A373;
}
.cookie-modal h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.cookie-modal .cookie-category {
  background: #F5F5F5;
  border-radius: 9px;
  padding: 10px 16px 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.cookie-category .category-label {
  font-size: 1rem;
  font-weight: 600;
}
.cookie-category .category-toggle {
  width: 36px; height: 20px;
  border-radius: 12px;
  background: #D4A373;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  opacity: 1;
  border: none;
  outline: none;
  transition: background .18s;
}
.cookie-category .category-toggle[disabled] {
  opacity: .5;
  background: #eee;
  cursor: not-allowed;
}
.cookie-category .toggle-switch {
  width: 36px; height: 20px;
  display: block;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  outline: none;
}
.cookie-category .toggle-bar {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #D4A373;
  position: relative;
  transition: background .14s;
}
.cookie-category .toggle-switch[data-enabled="false"] .toggle-bar {
  background: #BEBEBE;
}
.cookie-category .toggle-thumb {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(21,17,11,.11);
  transition: left 0.23s cubic-bezier(.65,.03,.13,1), background 0.13s;
}
.cookie-category .toggle-switch[data-enabled="true"] .toggle-thumb {
  left: 18px;
  background: #D4A373;
}

.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-modal-actions .button-cookie {
  margin-bottom: 0;
}

/* ==== MEDIA QUERIES FOR RESPONSIVENESS ==== */
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
  .hero, .section, .form-section, .privacy-policy, .terms-and-conditions, .gdpr-info, .cookie-policy, .confirmation {
    padding: 26px 10px;
  }
  .container {
    padding: 0 10px;
  }
  .feature-grid, .service-list, .service-cards, .event-list, .contact-details {
    gap: 14px;
  }
  .cta {
    padding: 34px 10px;
  }
}
@media (max-width: 700px) {
  .feature-grid > div, .service-cards > div, .service-list > div, .event-list > div {
    width: 100%;
    min-width: 0;
    flex-basis: 100%;
  }
}
@media (max-width: 550px) {
  .button, .button.primary, .button.secondary {
    font-size: 0.93rem;
    padding: 11px 16px;
  }
  .footer-logo img {
    height: 26px;
  }
  .hero, .section, .cta, .form-section, .privacy-policy, .terms-and-conditions, .gdpr-info, .cookie-policy, .confirmation {
    padding: 14px 4px;
    border-radius: 8px;
  }
}

/* ==== MICRO-INTERACTIONS & TRANSITIONS ==== */
.card, .feature-grid > div, .service-cards > div, .testimonial-card, .service-list > div, .event-list > div {
  transition: box-shadow .17s, transform .15s;
}
.button, .button.primary, .button.secondary, .button-cookie {
  transition: background .18s, color .12s, border-color .16s, box-shadow .15s;
}

/* ==== FOCUS VISIBLE ==== */
a:focus, .button:focus, .button-cookie:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid #D4A373;
  outline-offset: 2px;
}

/* ==== GEOMETRIC DECORATIVE ELEMENTS (EXAMPLES) ==== */
.section:before, .section:after,
.cta:after {
  /* Decorative angle overlays can be added with SVG/Images/CSS if needed */
  content: '';
  display: none;
}

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