/* =============================================================
   HOCHZEITSMOMENT: TECH_FUTURISTIC CSS THEME
   =============================================================*/

/* 1. 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #e9e5f5;
  background: linear-gradient(135deg, #231242 0%, #56326b 60%, #322448 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
a { color: #c29958; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #fffbb0; outline: none; }

/* Fonts */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 18px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 18px; }
h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 14px; }
h4, h5 { font-size: 1.1rem; font-weight: 500; }
p, li, ul, ol, span, strong {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #e9e5f5;
  margin-bottom: 0.5em;
}
strong { color: #c29958; font-weight: 600; }


/* 2. GENERAL SPACING & LAYOUT */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
@media (max-width: 768px) {
  .section { padding: 30px 8px; }
}

/* Cards & Grids */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: rgba(35, 18, 66, 0.82);
  border: 1.5px solid #c29958;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(44,24,73,0.45);
  padding: 32px 28px;
  margin-bottom: 20px;
  transition: box-shadow 0.26s, transform 0.18s;
  color: #e9e5f5;
}
.card:hover {
  box-shadow: 0 8px 44px 0 #a0782a49, 0 1.5px 8px #c2995830;
  transform: translateY(-7px) scale(1.02);
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #322448;
  border-radius: 22px;
  box-shadow: 0 4px 26px 0 rgba(44,24,73,0.08);
  padding: 28px 28px 22px;
  margin-bottom: 20px;
  border: 2px solid #c29958;
  max-width: 630px;
  margin-left: auto; margin-right: auto;
  transition: box-shadow 0.2s, transform 0.13s;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #322448;
  margin-bottom: 8px;
  text-align: center;
}
.testimonial-card span {
  color: #56326b;
  font-weight: 700;
  font-size: 0.98rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 #c2995830;
  transform: translateY(-4px) scale(1.01);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0 0 0;
}

/* Feature, Service and List Layouts */
.feature-grid, .feature-highlights, .feature-list, .feature-steps, .service-overview, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  list-style: none;
  margin: 0 auto 18px auto;
  padding: 0;
}
@media (max-width: 900px) {
  .feature-grid, .feature-list, .feature-highlights, .feature-steps, .service-overview, .service-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.feature-grid li, .feature-list li, .feature-highlights li, .feature-steps li, .service-list li,
.service-overview > div {
  background: rgba(44, 24, 73, 0.89);
  border-radius: 17px;
  border: 1px solid #6d47a6;
  padding: 28px 24px 22px 24px;
  color: #e9e5f5;
  position: relative;
  min-width: 235px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s, transform 0.13s, border-color 0.18s;
  margin-bottom: 0;
  box-shadow: 0 3px 16px 0 #56326b40;
}
.feature-grid li:hover, .feature-list li:hover, .feature-highlights li:hover, .feature-steps li:hover, .service-list li:hover, .service-overview > div:hover  {
  box-shadow: 0 6px 24px 0 #a0782a29;
  border-color: #c29958;
  transform: translateY(-5px) scale(1.01);
}

.feature-grid img, .feature-highlights img, .feature-list img, .feature-steps img {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
}

/* Service Price Label */
.service-price {
  background: #c29958;
  color: #322448;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 3px 13px;
  margin-left: 8px;
}


/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(135deg, #3e296a 55%, #c29958 110%);
  padding: 72px 0 60px 0;
  min-height: 300px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #fff;
  font-size: 2.7rem;
  letter-spacing: 0.01em;
  font-weight: 800;
}
.hero .subheadline {
  color: #fff7e6;
  font-size: 1.3rem;
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .hero { padding: 38px 0 32px 0; min-height: unset; }
  .hero h1 { font-size: 2rem; }
  .hero .subheadline { font-size: 1.08rem; }
}


/* --------------------------------------------------------------- */
/* NAVIGATION & HEADER */
header {
  width: 100%;
  background: rgba(34, 18, 66, 0.99);
  box-shadow: 0 2px 14px 0 #56326b33;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo-link img {
  height: 44px;
  width: auto;
  transition: filter 0.2s;
  filter: drop-shadow(0 2px 6px #32244844);
}
.logo-link:active img, .logo-link:hover img {
  filter: drop-shadow(0 2px 17px #c2995842);
}
/* MAIN NAV */
.main-nav, .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a, .footer-nav a {
  color: #e9e5f5;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 8px 2px;
  font-size: 1.06rem;
  font-weight: 400;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus,.footer-nav a:hover,.footer-nav a:focus{
  color: #c29958;
}
.cta-button {
  background: #c29958;
  color: #322448;
  font-family: 'Playfair Display', serif;
  padding: 12px 26px;
  font-size: 1.08rem;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 #c2995836;
  cursor: pointer;
  margin-left: 18px;
  margin-bottom: 0;
  transition: background 0.19s, color 0.13s, box-shadow 0.19s, transform 0.17s;
  position: relative;
  z-index: 1;
}
.cta-button.secondary{background:#231242;color:#c29958;border:1.5px solid #c29958;box-shadow:none;}
.cta-button.secondary:hover,.cta-button.secondary:focus{background:#c29958;color:#231242;}
.cta-button:hover,
.cta-button:focus {
  background: #a0782a;
  color: #fff;
  box-shadow: 0 8px 24px #c299583c;
  transform: translateY(-2px) scale(1.02);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #c29958;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 14px;
  z-index: 1201;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus { color: #fffbb0; }

@media (max-width: 900px) {
  .main-nav, .cta-button { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* --- Mobile menu overlay --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,13,60,0.99);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,.2,.3,1);
  z-index: 1600;
  padding: 0 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 28px 14px 0;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #c29958;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: #fffbb0; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 0 34px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  padding: 13px 0 7px 0;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 1px;
  border-bottom: 1px solid #40296d46;
  transition: color 0.2s, background 0.18s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active,
.mobile-nav a:hover {
  color: #c29958;
  background: #32244831;
}

/* Slide animation for mobile menu */
.mobile-menu {
  will-change: transform;
}

@media (min-width: 900px) {
  .mobile-menu { display: none!important; }
  .mobile-menu-toggle { display: none!important; }
}

/* --- Fade background for mobile menu --- */
.mobile-menu-bg {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(34,18,66,0.5);
  z-index: 1599;
  display: none;
}
.mobile-menu.active + .mobile-menu-bg {
  display: block;
}

/* 3. FOOTER */
footer {
  background: #231242;
  border-top: 2px solid #c29958;
  padding: 36px 0 18px 0;
  color: #e9e5f5;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.footer-nav {
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.social-icons {
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.social-icons img {
  height: 32px;
  width: 32px;
  filter: grayscale(0.1) brightness(1.5) drop-shadow(0 2px 13px #c2995824);
  opacity: 0.75;
  transition: filter 0.2s, opacity 0.18s;
  border-radius: 50%;
}
.social-icons img:hover {
  filter: none;
  opacity: 1;
}
.brand-copyright {
  font-size: 0.98rem;
  color: #bcafd2;
}

/* 4. TABLES (Preise) */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  margin-bottom: 22px;
  background: rgba(44, 24, 73, 0.93);
  border-radius: 15px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 18px 14px;
  text-align: left;
  font-size: 1rem;
  color: #fff;
  border-bottom: 1px solid #56326b;
}
.pricing-table th {
  background: #56326b;
  color: #c29958;
  font-size: 1.1rem;
  font-weight: 700;
}
.pricing-table tr:last-child td { border-bottom: none; }

.price-notes {
  color: #c29958;
  font-size: 0.97rem;
  margin-bottom: 15px;
}

/* 5. CONTACT/INFOS */
.contact-details {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details strong {
  color: #a0782a;
}
.map-placeholder {
  min-height: 120px;
  background: #231242;
  border-radius: 14px;
  color: #e9e5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-style: italic;
  letter-spacing: 0.6px;
}
.business-hours{
  margin:24px 0;
}
.business-hours h3{
  margin-bottom:8px;
  color:#c29958;
  font-family:'Playfair Display',serif;
}

/* 6. LEGAL & DATENSCHUTZ (Simple Spacing) */
.legal {
  background: rgba(44,24,73,0.89);
  color: #e9e5f5;
  border-radius: 20px;
  margin: 34px 0 50px 0;
  padding: 42px 24px;
  box-shadow: 0 3px 12px 0 #56326b2a;
}
.legal h1, .legal h2 {
  color: #c29958;
  font-family: 'Playfair Display',serif;
}
.legal ul li {
  list-style: disc inside;
  color: #e9e5f5;
}
.legal a { color: #c29958; }

/* 7. Misc */
ul, ol { margin-bottom: 16px; }
ul li, ol li { padding-left: 2px; }
@media (max-width: 600px) {
  .container { padding: 0 5px; }
  .section {padding:18px 3px;}
  .legal{padding:22px 6px;}
}

/* === BUTTONS === */
button, .cta-button {
  transition: background 0.17s, color 0.11s, box-shadow 0.17s, transform 0.16s;
}
button:focus {
  outline:2px solid #c29958;
  outline-offset:2px;
}

/* 8. ANIMATIONS, MICRO-INTERACTIONS & HOVER EFFECTS */
.card, .feature-grid li, .feature-list li, .feature-highlights li, .feature-steps li, .service-list li, .service-overview > div, .testimonial-card {
  transition: box-shadow 0.16s, transform 0.11s, border-color 0.14s;
}
img, svg, .cta-button, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: filter 0.13s, color 0.12s, background 0.14s, border-color 0.14s, opacity 0.17s, box-shadow 0.13s, transform 0.15s;
}
.card:hover,
.feature-grid li:hover,
.feature-highlights li:hover,
.feature-steps li:hover,
.service-list li:hover,
.service-overview > div:hover,
.testimonial-card:hover {
  box-shadow: 0 7px 40px 0 #c2995848;
  border-color: #c29958;
  transform: translateY(-8px) scale(1.01);
}


/* 9. COOKIE CONSENT BANNER + MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #231242;
  color: #e9e5f5;
  padding: 30px 22px 20px 22px;
  box-shadow: 0 -6px 30px 0 #2d1859cc;
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: center;
  z-index: 3100;
  border-top: 2.5px solid #c29958;
  font-size: 1.06rem;
  animation: cookieSlideIn 0.7s cubic-bezier(.52,1.5,.2,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120px); opacity:0 }
  to { transform: translateY(0); opacity:1 }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top:6px;
}
.cookie-banner button {
  background: #c29958;
  color: #231242;
  border: none;
  border-radius: 9px;
  padding: 10px 20px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 2px 7px #32244820;
}
.cookie-banner button.secondary {
  background: #322448;
  color: #c29958;
  border: 1.5px solid #c29958;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #a0782a;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(34,18,66,0.77);
  z-index: 4000;
}
.cookie-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  min-width: 305px;
  max-width: 97vw;
  width: 420px;
  background: #322448;
  border-radius: 20px;
  color: #e9e5f5;
  padding: 34px 34px 30px 30px;
  box-shadow: 0 5px 40px 0 #c299581c;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookieModalPop .55s cubic-bezier(.52,1.3,.3,1);
}
@keyframes cookieModalPop {
  from {transform: scale(0.7) translateY(40px); opacity:0;}
  to {transform: scale(1) translateY(0); opacity:1;}
}
.cookie-modal h2 {
  color: #c29958;
  margin-bottom: 12px;
  font-size: 1.17rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.07rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #c29958;
  width: 22px; height:22px;
}
.category-essential {
  color: #a0782a;
  font-weight: 600;
}
.category-locked::after{
  content:'\1F512';
  margin-left:7px;
  color:#a0782a;
}
.cookie-modal .cookie-buttons {
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .close-modal {
  background: none;
  color: #c29958;
  border: none;
  position: absolute;
  top: 12px; right: 17px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus { color: #fffbb0; }


/* 10. RESPONSIVE MEDIA QUERIES */
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.09rem; }
  .testimonial-card, .feature-grid li, .feature-list li, .feature-highlights li, .feature-steps li, .service-list li, .service-overview > div { padding:16px 8px; }
  .cookie-modal {padding:20px 7vw 14px 7vw;min-width:initial;width:96vw;}
}


/* 11. ACCESSIBILITY & FOCUS STATES */
a:focus, button:focus, .cta-button:focus {
  outline: 2.5px solid #c29958;
  outline-offset: 2.5px;
  z-index: 10;
}
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #6d47a6;
  border-radius: 8px;
  background: #412876;
  color: #fff;
  padding: 10px 12px;
  margin-bottom: 12px;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid #c29958;
}

/* 12. UTILITY CLASSES */
.d-none { display: none !important; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px !important; }
.mt-34 { margin-top: 34px !important; }
.mb-13 { margin-bottom: 13px !important; }
.mb-22 { margin-bottom: 22px !important; }

/* 13. SUCCESS MESSAGES */
.confirmation-message {
  background: #fffbee;
  color: #56326b;
  border-radius: 13px;
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 1.09rem;
  box-shadow: 0 2px 22px 0 #c2995818;
}

/* 14. IMPROVE SPACING ON ALL FLEX GROUPINGS */
.features, .services, .about, .testimonials, .contact, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .features, .services, .about, .testimonials, .contact, .legal {
    padding: 25px 6px 16px 6px;
    margin-bottom: 33px;
  }
}

/* ==============================
   END Tech Futuristic Theme CSS
============================== */
