/* =======================================================
   BlütenZauber Hochzeiten Hamburg
   Monochrome Sophisticated Theme
   ======================================================= */

/* === 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,
main, 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;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1.6;
  background: #fff;
  color: #161616;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}

a {
  color: #244055;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8DA876;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}

strong {
  font-weight: 700;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #161616;
  padding-left: 16px;
  margin-bottom: 12px;
  color: #161616;
  background: #f5f5f5;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #161616;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

p, li, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
}
.subheadline {
  font-size: 1.25rem;
  color: #494949;
}

/* === GENERAL CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(30, 30, 30, 0.04);
  border-radius: 14px;
}

/* Features & Cards */
.card-container, .feature-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(50,50,50,.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(36,64,85,.18);
  z-index: 2;
}

.feature-grid > div, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 180px;
  min-width: 220px;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(50,50,50,0.05);
  padding: 24px 18px;
  margin-bottom: 20px;
}
.feature-grid img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.feature-grid h3 {
  font-size: 1.25rem;
  color: #222;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f4f4f4;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(36,64,85,0.08);
  margin-bottom: 20px;
  color: #181818;
  max-width: 700px;
  font-size: 1rem;
}
.testimonial-card blockquote {
  margin: 0;
  border: none;
  font-style: italic;
  color: #181818;
  background: none;
  padding-left: 0;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #525252;
  margin-left: 8px;
}

.contact-details {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #222;
}
.contact-details img {
  width: 22px;
  height: 22px;
}

.social-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.social-links li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.social-links img {
  width: 22px;
  height: 22px;
}

/* === BUTTONS === */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 6px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background .22s, box-shadow .22s, color .19s;
  box-shadow: 0 2px 6px rgba(36, 64, 85, 0.03);
  text-align: center;
  margin-top: 16px;
  border: none;
}
.btn-primary {
  background: #161616;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #244055;
  color: #fff;
  box-shadow: 0 4px 14px rgba(36,64,85,.12);
}
.btn-secondary {
  background: #fff;
  border: 2px solid #244055;
  color: #244055;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #244055;
  color: #fff;
  box-shadow: 0 4px 14px rgba(36,64,85,.14);
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  position: relative;
  z-index: 1010;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
header img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.main-nav a {
  color: #161616;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 10px;
  transition: color 0.22s;
  border-radius: 4px;
}
.main-nav a.btn-primary {
  padding: 12px 32px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #fafafd;
  color: #244055;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: #161616;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  padding: 6px 18px;
  border-radius: 7px;
  cursor: pointer;
  margin-left: 16px;
  transition: background .18s, color .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #244055;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 30px rgba(30,30,30,0.15);
  z-index: 4000;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.85,0,.15,1);
  display: flex;
  flex-direction: column;
  padding: 30px 24px 16px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #161616;
  padding: 2px 8px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #244055;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 20px;
}
.mobile-nav a {
  font-size: 1.12rem;
  font-family: 'Playfair Display', serif;
  color: #161616;
  padding: 12px 0 8px 0;
  font-weight: 600;
  border-bottom: 1px solid #ebebeb;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #244055;
  background: #fafafd;
  border-radius: 4px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  header img {
    height: 36px;
  }
  header .container {
    padding-top: 13px; padding-bottom: 13px;
  }
}

/* === HERO === */
.hero {
  background: #fff;
  padding: 55px 0 40px 0;
  border-radius: 0 0 24px 24px;
  margin-bottom: 38px;
  box-shadow: 0 2px 30px rgba(64,64,64,0.04);
}
.hero h1 {
  font-size: 2.45rem;
  color: #161616;
  letter-spacing: 1px;
}
.hero .subheadline {
  color: #161616;
  margin-bottom: 16px;
  font-weight: 500;
}
.hero .btn-primary {
  margin-top: 14px;
}

/* === ABOUT PREVIEW, SERVICES PREVIEW === */
.about-preview, .services-preview, .contact-preview {
  background: #fafafd;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(45, 45, 45, 0.04);
}

/* === FOOTER === */
footer {
  background: #161616;
  color: #fff;
  padding: 34px 0 24px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #fff;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0.88;
  transition: color 0.14s, opacity 0.22s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #DFD5CB;
  opacity: 1;
}
footer p {
  color: #dfd5cb;
  font-size: 0.94rem;
  opacity: 0.7;
}

/* === COOKIE CONSENT BANNER & MODAL === */
#cookie-banner, .cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 5000;
  padding: 26px 16px 22px 16px;
  font-size: 1.04rem;
  box-shadow: 0 -2px 20px rgba(36,64,85,.17);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  animation: cookieBannerSlideUp 0.4s cubic-bezier(.94,0,.12,1);
}
@keyframes cookieBannerSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary, .cookie-banner .btn-tertiary {
  margin: 0;
  padding: 10px 28px;
  font-size: 1rem;
  border-radius: 6px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-banner .btn-tertiary {
  background: #fff;
  color: #222;
  border: 1px solid #d5d5d5;
  font-weight: 600;
  transition: background .2s, color .2s, border .2s;
}
.cookie-banner .btn-tertiary:hover, .cookie-banner .btn-tertiary:focus {
  background: #244055;
  color: #fff;
  border: 1px solid #244055;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 6000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,30,30,.44);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.37s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #161616;
  border-radius: 18px;
  padding: 38px 28px 28px 28px;
  max-width: 400px;
  width: 92vw;
  box-shadow: 0 6px 32px rgba(36,64,85,.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #161616;
  cursor: pointer;
  transition: color .19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #244055;
}
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal-category label {
  flex: 1;
  font-size: 1rem;
}
.cookie-modal input[type='checkbox'] {
  width: 18px; height: 18px;
  accent-color: #244055;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 17px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1300px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 1050px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    padding: 28px 10px;
    margin-bottom: 44px;
  }
  .about-preview, .services-preview, .contact-preview {
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 22px 6px;
    margin-bottom: 32px;
  }
  .hero {
    padding: 38px 0 20px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    font-size: 0.99rem;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 490px) {
  .section {
    border-radius: 0;
    margin-bottom: 24px;
  }
  .hero {
    border-radius: 0;
  }
  .testimonial-card {
    border-radius: 9px;
    font-size: 0.95rem;
  }
}
@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.99rem;
    padding: 20px 6px 14px 9px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .cookie-banner-buttons {
    gap: 7px;
  }
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.btn-primary, .btn-secondary, .btn-tertiary, .main-nav a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .18s, color .19s, box-shadow .22s, border .18s;
}
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow .17s, transform .15s;
}
.card:hover, .feature-grid > div:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 8px 28px rgba(36,64,85,.19);
  z-index: 3;
}

/* === MISC Utility Layouts === */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* === VISUAL HIERARCHY & MONOCHROME EFFECTS === */
.section {
  border: 1.5px solid #ececec;
  background: #fafafa;
  box-shadow: 0 2px 16px rgba(36, 64, 85, 0.024);
}

.card, .feature-grid > div {
  background: #fff;
  border: 1px solid #e4e4e4;
  box-shadow: 0 2px 7px rgba(36, 64, 85, 0.03);
}

.hero, .about-preview, .services-preview {
  background: #fff;
}

.testimonial-card {
  background: #f4f4f4;
  border-left: 6px solid #244055;
  color: #161616;
}

.about-preview, .services-preview, .contact-preview {
  box-shadow: 0 2px 16px rgba(36, 64, 85, 0.036);
}

/* === END OF THEME === */
