/* === CSS RESET & BASE === */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #222;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #25334F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #111;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
}

/* ============= BRAND TYPOGRAPHY ============= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #111;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 16px; }
h4 { font-size: 1.18rem; margin-bottom: 12px; }

p, li, span, label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
}
.subheadline {
  font-size: 1.18rem;
  color: #666;
  margin-bottom: 20px;
  font-family: 'Lato', Arial, sans-serif;
}
.short-intro {
  font-size: 1.17rem;
  color: #444;
}

/* ======= LAYOUT CONTAINERS & FLEX PATTERNS ======= */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.feature-grid, .service-packages-grid, .featured-articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(34,37,51,0.08);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.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;
  margin-bottom: 20px;
}

/* TESTIMONIALS */
.testimonials, .testimonial-card, .testimonial-slider {
  margin-bottom: 24px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #F7F5F0;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(44,44,44,0.04);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 500px;
  color: #1A1A1A;
}
.testimonial-card p {
  font-size: 1.11rem;
  font-style: italic;
  color: #1A1A1A;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #444;
}

/* ========== BUTTONS & CTA ========== */
.cta, .btn, button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  transition: background .22s, color .22s, box-shadow .19s;
  cursor: pointer;
  background: #25334F;
  color: #fff;
  box-shadow: 0 2px 8px rgba(34,37,51,0.07);
  margin-right: 13px;
}
.cta.primary, .btn.primary {
  background: #25334F;
  color: #fff;
}
.cta.secondary, .btn.secondary {
  background: #fff;
  border: 1.5px solid #25334F;
  color: #25334F;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus {
  background: #111;
  color: #fff;
  box-shadow: 0 4px 16px rgba(38,38,38,.10);
  text-decoration: none;
  outline: none;
}
.cta.secondary:hover, .btn.secondary:hover {
  background: #25334F;
  color: #fff;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  border-bottom: 1px solid #EBEBEB;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 64px;
}
.logo img {
  height: 54px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  padding: 8px 0;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  border-radius: 4px;
  transition: color .18s, background .18s;
}
.main-nav a:hover, .main-nav a.cta.primary {
  background: #25334F;
  color: #fff;
}
.main-nav a.cta.primary {
  padding: 8px 16px;
  margin-left: 12px;
}

.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #25334F;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 10px;
  margin-left: 10px;
  z-index: 1020;
  transition: background .17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f2f2f2;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32,32,32, 0.97);
  box-shadow: 0 4px 32px rgba(34,37,51, .18);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 2000;
  overflow-y: auto;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.32,1.19,.38,1);
  padding: 0 0 0 0;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.1rem;
  padding: 16px 20px;
  align-self: flex-end;
  border: none;
  cursor: pointer;
  transition: color .12s;
  z-index: 2100;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #C9B7A3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 40px 24px;
  width: calc(100vw - 48px);
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  border-radius: 4px;
  padding: 10px 0;
  margin-bottom: 2px;
  transition: background .15s, color .12s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #111;
  color: #C9B7A3;
}

/* === HERO SECTIONS === */
.hero {
  background: #fff;
  padding: 60px 0 40px 0;
  display: flex;
  align-items: center;
  min-height: 320px;
  border-bottom: 1.5px solid #edecec;
}
.hero h1 {
  color: #111;
}
.hero .subheadline {
  margin-bottom: 20px;
}

/* == FEATURES, CARDS, INFO == */
.features {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-card, .service-card, .article-teaser {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(44,47,51,.05);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 230px;
  max-width: 360px;
  transition: box-shadow .21s, transform .22s;
  margin-bottom: 10px;
}
.feature-card:hover, .service-card:hover, .article-teaser:hover {
  box-shadow: 0 8px 32px rgba(44,47,51,.13);
  transform: translateY(-3px) scale(1.024);
}
.feature-card img {
  width: 42px; height: 42px;
  margin-bottom: 7px;
  filter: grayscale(100%) contrast(1.1);
}
.feature-card h3, .service-card h3, .article-teaser h3 {
  color: #25334F;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.price-range {
  margin-top: 10px;
  color: #25334F;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  letter-spacing: 0.01em;
}

/* == ABOUT, USP & VALUES == */
.brand-values ul, .usp-list, .venue-highlights, .gallery-overview, .inspiration-list, .elbe-wedding-tips, .gdpr-list, .city-specific-services {
  padding-left: 19px;
  margin-bottom: 24px;
  color: #3f3f3f;
}

.signature {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #6a6a6a;
  margin-top: 16px;
}

/* == BLOG & CATEGORIES == */
.featured-articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.article-teaser {
  min-width: 240px;
  max-width: 375px;
}
.article-teaser .article-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 1rem;
  color: #25334F;
  text-decoration: underline;
  transition: color .14s;
}
.article-teaser .article-link:hover {
  color: #111;
}
.categories-overview ul {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  padding-left: 0;
  margin-top: 7px;
  margin-bottom: 8px;
}
.categories-overview li {
  list-style: none;
}
.categories-overview a {
  color: #222;
  font-size: 1rem;
  transition: color .13s;
}
.categories-overview a:hover {
  color: #25334F;
  text-decoration: underline;
}

/* == CONTACT == */
.contact-details .address-block, .contact-details .contact-block {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-placeholder {
  background: #F7F5F0;
  border-radius: 11px;
  padding: 18px 12px;
  color: #555;
  margin-top: 18px;
  font-size: 0.97rem;
}
.contact-info-mini {
  background: #F7F5F0;
  border-radius: 7px;
  padding: 10px 14px;
  color: #25334F;
  font-size: 1rem;
  margin: 14px 0;
}
.contact-info-mini img {
  width: 18px;
  vertical-align: middle;
  margin-right: 7px;
}

/* == FOOTER == */
footer {
  background: #141416;
  color: #ededed;
  padding: 44px 0 20px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px 48px;
  justify-content: space-between;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-branding img {
  width: 50px; height: 50px;
  filter: grayscale(1) contrast(1.3);
}
.footer-branding p {
  color: #fff;
  opacity: 0.81;
  font-size: 0.99rem;
}
footer nav, .footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
footer nav a, .footer-links nav a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color .13s;
  border-radius: 3px;
  padding: 2px 0;
}
footer nav a:hover, .footer-links nav a:hover {
  color: #C9B7A3;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 3px;
}
.legal-links a {
  color: #d0d0d0;
  font-size: 0.95rem;
  text-decoration: underline;
  transition: color .13s;
}
.legal-links a:hover {
  color: #C9B7A3;
  text-decoration: underline;
}
.social-media-icons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-bottom: 8px;
}
.social-media-icons a img {
  width: 26px;
  height: 26px;
  filter: grayscale(100%) contrast(1.2);
  opacity: 0.85;
  transition: filter .12s, opacity .12s;
}
.social-media-icons a:hover img {
  filter: none;
  opacity: 1;
}
.contact-summary p {
  color: #ededed;
  opacity: 0.85;
  font-size: 0.98rem;
}

/* == COOKIE CONSENT == */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: rgba(36,36,36, 0.93);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 34px;
  padding: 24px 18px 24px 18px;
  z-index: 5000;
  box-shadow: 0 -4px 24px rgba(34,37,51,0.19);
  transition: transform .3s cubic-bezier(.32,1.19,.38,1), opacity .18s;
  font-size: 1rem;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-message {
  max-width: 460px;
  line-height: 1.65;
}
.cookie-consent-banner .cookie-cta {
  display: flex;
  flex-direction: row;
  gap: 11px;
  align-items: center;
}
.cookie-consent-banner button {
  padding: 9px 18px;
  border-radius: 6px;
  background: #fff;
  color: #25334F;
  border: none;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 0;
  transition: background .14s, color .13s;
}
.cookie-consent-banner button.accept {
  background: #25334F;
  color: #fff;
}
.cookie-consent-banner button.accept:hover,
.cookie-consent-banner button.accept:focus {
  background: #C9B7A3;
  color: #25334F;
}
.cookie-consent-banner button.reject {
  background: #fff;
  color: #25334F;
  border: 1.2px solid #ddd;
}
.cookie-consent-banner button.reject:hover,
.cookie-consent-banner button.reject:focus {
  background: #EAEAEA;
  color: #111;
}
.cookie-consent-banner button.settings {
  background: #C9B7A3;
  color: #222;
}
.cookie-consent-banner button.settings:hover,
.cookie-consent-banner button.settings:focus {
  background: #25334F;
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,32,32,0.77);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6000;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .2s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(32,32,32,0.19);
  padding: 38px 30px 30px 30px;
  max-width: 450px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalIn .35s cubic-bezier(.32,1.19,.38,1);
}
@keyframes modalIn {
  from { transform: translateY(50px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 7px;
  font-family: 'Playfair Display', Georgia, serif;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 15px; right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #25334F;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #C9B7A3;
}
.cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 9px;
}
.cookie-preference-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-preference-item label {
  font-size: 1rem;
  flex: 1;
}
.cookie-preference-item input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #25334F;
}
.cookie-preference-item input[disabled] {
  opacity: 0.6;
}
.cookie-category-essential {
  color: #888;
}

/* == PAGE SPECIFIC CLASSES & LISTS == */
.services-list,
.benefits-list,
.planning-steps,
.gdpr-list,
.gallery-overview,
.inspiration-list {
  margin-bottom: 24px;
  color: #353535;
}
.services-list li, .benefits-list li, .planning-steps li {
  margin-bottom: 11px;
  line-height: 1.6;
  font-size: 1.05rem;
}
.venue-highlights li, .elbe-wedding-tips li, .city-specific-services li, .gallery-overview li, .inspiration-list li {
  margin-bottom: 9px;
  line-height: 1.5;
}

.unique-offers {
  background: #F7F5F0;
  padding: 13px 20px;
  border-radius: 7px;
  color: #25334F;
  font-size: 1.02rem;
  margin-top: 13px;
}

/***** THANK YOU SECTION ******/
.thank-you {
  padding: 65px 0;
  text-align: left;
}
.thank-you h1 {
  color: #1A1A1A;
  margin-bottom: 22px;
}
.thank-you p {
  color: #544d45;
  font-size: 1.13rem;
  margin-bottom: 34px;
}

/***** LEGAL PAGES ******/
.privacy-policy, .gdpr-section, .terms-section, .cookie-policy {
  padding: 44px 0 60px 0;
}
.privacy-policy h1, .gdpr-section h1, .terms-section h1, .cookie-policy h1 {
  color: #25334F;
}
.privacy-policy h2, .gdpr-section h2, .terms-section h2, .cookie-policy h2 {
  color: #111;
  margin-top: 26px;
}

/***** EMPTY STATES & PLACEHOLDERS ******/
.map-placeholder {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/********* RESPONISVE DESIGN *************/
@media (max-width: 1120px) {
  .container {
    max-width: 94vw;
    padding: 0 10px;
  }
  .feature-grid, .service-packages-grid, .featured-articles-grid {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  html { font-size: 98%; }

  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper,
  .footer-links nav,
  .legal-links,
  .social-media-icons {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .feature-grid, .service-packages-grid, .featured-articles-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card-container, .card-grid {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonials .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .section {
    padding: 34px 7px;
    margin-bottom: 36px;
  }
  .hero {
    padding: 34px 0 24px 0;
    min-height: 180px;
  }
  .footer-branding img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .cta, .btn, button {
    padding: 11px 14px;
    font-size: 1rem;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 19px 5vw 19px 5vw;
  }
  .cookie-consent-banner .cookie-cta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .cookie-modal {
    padding: 20px 7px 12px 7px;
    max-width: 97vw;
  }
}

/* ========== UTILITIES ========== */
.hide {
  display: none !important;
}
.visible {
  display: block !important;
}
.shadow-contrast {
  box-shadow: 0 3px 22px rgba(38,38,38,0.09);
}

/***** MICRO-INTERACTIONS ******/
button, .cta, .btn, .main-nav a, .mobile-nav a, .article-link {
  outline: none;
  transition: background .14s, color .14s, box-shadow .14s, transform .16s;
}
button:active, .cta:active, .btn:active {
  transform: translateY(2px) scale(0.97);
}

/***** PRINT & ACCESSIBILITY *****/
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  body, main, .container { color: #111 !important; background: #fff !important; box-shadow: none !important; }
}

/* FOCUS VISIBLE */
:focus-visible {
  outline: 2px solid #25334F;
  outline-offset: 2px;
}

/************ END  ************/
