/* ======= 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FDFDFC;
  color: #133A54;
  min-height: 100vh;
  letter-spacing: 0.01em;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #133A54;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8FC1E3;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}

/* ======= BRAND FONTS ======= */
h1, h2, h3, h4, .footer-logo span, .btn-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

h1 {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
  color: #133A54;
}
h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #133A54;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #204C63;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #204C63;
}
p, li, span {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #133A54;
}
strong {
  font-weight: 700;
  color: #133A54;
}

body {
  font-size: 16px;
  background: #FDFDFC;
}

.btn-primary {
  background: #133A54;
  color: #FDFDFC;
  border: none;
  border-radius: 28px;
  padding: 13px 34px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin: 12px 0;
  display: inline-block;
  box-shadow: 0 2px 10px 0 rgba(19,58,84,0.07);
  transition: background 0.22s, color 0.18s, transform 0.15s;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: #8FC1E3;
  color: #133A54;
  transform: translateY(-2px) scale(1.04);
}

/* ======= CONTAINERS ======= */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(142,193,227,0.12), 0 1.5px 8px 0 rgba(19,58,84,0.08);
  transition: box-shadow 0.2s, transform 0.14s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(19,58,84,0.20), 0 2.5px 14px 0 rgba(142,193,227,0.16);
  transform: translateY(-2px) scale(1.02);
}
.card-content {
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FDFDFC;
  border-radius: 18px;
  box-shadow: 0 1.5px 8px 0 rgba(19,58,84,0.06);
  margin-bottom: 20px;
  min-width: 220px;
  border-left: 6px solid #8FC1E3;
}
.testimonial-card .text-section {
  color: #133A54;
}
.testimonial-card p {
  font-size: 1.07rem;
  margin-bottom: 8px;
  color: #133A54;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #133A54;
  font-style: italic;
}

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

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 25px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(142,193,227,0.07);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 250px;
  max-width: 320px;
  gap: 18px;
  transition: box-shadow 0.18s, transform 0.11s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 18px 0 rgba(19,58,84,0.16);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
  width: 54px;
  margin-bottom: 15px;
}
.feature-grid h3 {
  margin-bottom: 5px;
  font-size: 1.15rem;
  color: #133A54;
}

.trust-signals {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.trust-signals img {
  width: 24px;
  height: 24px;
}

.usp-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 22px;
}
.usp-list li {
  display: flex;
  align-items: center;
  background: #FDFDFC;
  box-shadow: 0 1.5px 8px 0 rgba(19,58,84,0.05);
  border-radius: 15px;
  padding: 16px 20px 16px 16px;
  font-size: 1.06rem;
  gap: 16px;
}

.certifications ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.certifications ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== HERO/HEADER DESIGN ===== */
header {
  width: 100%;
  background: #133A54;
  box-shadow: 0 12px 24px 0 rgba(19,58,84,0.05);
  z-index: 10;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-top: 0;
  padding-bottom: 0;
}
header img[alt="GlanzWerk Hamburg"], .footer-logo img {
  width: 155px;
  height: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
header nav a {
  color: #FDFDFC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s;
  padding: 6px 0;
}
header nav a:hover, header nav a:focus {
  color: #8FC1E3;
}
.btn-primary {
  margin-left: 12px;
  margin-right: 0;
}

.hero {
  min-height: 330px;
  padding: 0;
  background: linear-gradient(90deg,#8FC1E3 60%, #FDFDFC 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 330px;
}
.hero .content-wrapper {
  max-width: 630px;
  background: rgba(253,253,252,0.87);
  border-radius: 20px;
  padding: 36px 38px 36px 32px;
  box-shadow: 0 6px 32px 0 rgba(142,193,227,0.12);
  gap: 20px;
}
.hero h1 {
  color: #133A54;
  margin-bottom: 8px;
  text-shadow: 1px 3px 10px #FFFFFF22;
}
.hero p {
  color: #204C63;
  font-size: 1.1rem;
  margin-bottom: 16px;
  line-height: 1.45;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #133A54;
  padding: 38px 0;
}
.cta-section .content-wrapper {
  align-items: center;
}
.cta-section h2 {
  color: #FDFDFC;
  margin-bottom: 15px;
}
.cta-section .btn-primary {
  background: #8FC1E3;
  color: #133A54;
  margin: 16px 0 18px 0;
}
.cta-section .btn-primary:hover {
  background: #FDFDFC;
  color: #133A54;
}
.cta-section .text-section {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #FDFDFC;
}
.cta-section .text-section p, .cta-section .text-section strong {
  color: #FDFDFC;
}
.cta-section .text-section img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

/* ===== FOOTER ===== */
footer {
  background: #133A54;
  color: #FDFDFC;
  padding: 46px 0 28px 0;
  position: relative;
  z-index: 1;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.22rem;
  color: #8FC1E3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
footer nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.02rem;
}

.footer-contact p{
	color: #fff
}
footer nav a {
  color: #8FC1E3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.18s;
  margin-bottom: 3px;
}
footer nav a:hover, footer nav a:focus {
  color: #FFFFFF;
}
.footer-contact {
  color: #FDFDFC;
  max-width: 290px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 7px;
}

/* ===== ARTISTIC/CREATIVE DETAILS ===== */
.hero, .cta-section, .feature-grid > div, .card, .testimonial-card, .usp-list li {
  box-shadow: 0 4px 18px 0 rgba(142,193,227,0.10),0 1.5px 8px 0 rgba(19,58,84,0.07);
}
.card, .testimonial-card, .feature-grid > div, .usp-list li {
  border-radius: 19px;
}

/* Artistic effect: pseudo-layers/noise (simple and lightweight for compatibility) */
.hero .container:before, 
.cta-section .container:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  left: -80px;
  top: 0;
  width: 240px;
  height: 90%;
  background: radial-gradient(circle at 60% 20%, #FDFDFC 10%, #8FC1E330 80%, transparent 100%);
  opacity: 0.45;
  pointer-events: none;
}

/* ======= LEGAL & TEXT BLOCKS ======= */
.legal .text-section, .about .text-section, .about-story .text-section, .about-features .text-section, .confirmation .text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(142,193,227,0.08);
  padding: 25px 22px;
  margin-bottom: 18px;
  color: #133A54;
}
.legal h2, .legal h3 {
  color: #133A54;
  margin-top: 24px;
}
.legal ul {
  margin-bottom: 16px;
}

/* ====== CONTACT / DETAILS ====== */
.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
  font-size: 1.09rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-details ul li img {
  width: 21px;
  height: 21px;
}

/* ======= CONFIRMATION ======= */
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 28px;
}
.confirmation .btn-primary {
  margin-top: 20px;
  background: #8FC1E3;
  color: #133A54;
}
.confirmation .btn-primary:hover {
  background: #133A54;
  color: #FDFDFC;
}

/* ======= MOBILE MENU (BURGER NAV) ======= */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #FDFDFC;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 18px;
  display: none;
  z-index: 51;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #133A54;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.68,-0.55,.27,1.55);
  width: 100vw;
  height: 100vh;
  box-shadow: 0 0 32px rgba(19,58,84,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #8FC1E3;
  font-size: 2.5rem;
  align-self: flex-end;
  margin: 12px 24px 0 0;
  cursor: pointer;
  z-index: 220;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 44px;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: #FDFDFC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.19s, color 0.16s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #8FC1E3;
  color: #133A54;
}

/* Hide desktop nav on mobile */
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
  .usp-list {
    gap: 13px;
  }
  .footer-logo span {
    font-size: 1.08rem;
  }
}
@media (max-width: 780px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.2rem; }
  header .container {
    height: 64px;
    padding: 0 7px;
  }
  .hero .content-wrapper {
    padding: 24px 14px;
    max-width: 100vw;
  }
  .footer-contact { font-size: 0.98rem; }
}
@media (max-width: 600px) {
  .container { padding: 0 4px; }
  .section { padding: 22px 7px; margin-bottom: 38px; }
  .usp-list { flex-direction: column; gap: 10px; }
  .feature-grid > div { min-width: 98vw; max-width: 100vw; }
  .cta-section { padding: 22px 0 !important; }
}
@media (max-width: 768px) {
  .content-grid,
  .feature-grid,
  .card-container,
  .text-image-section {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
  }
  .cta-section .text-section {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-logo { margin-bottom: 10px; }
  footer .container { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ======== COOKIE CONSENT BANNER ======== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 800;
  width: 100vw;
  background: #8FC1E3;
  color: #133A54;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 23px 15px 23px 15px;
  box-shadow: 0 -3px 16px 0 rgba(19,58,84,0.13);
  gap: 24px;
  font-size: 1rem;
  animation: bannerIn 0.5s;
}
@keyframes bannerIn {
  from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-right: 24px;
  color: #133A54;
  font-size: 1.01rem;
}
.cookie-banner .cookie-btn {
  background: #133A54;
  color: #FDFDFC;
  border: none;
  border-radius: 26px;
  padding: 10px 25px;
  margin-left: 12px;
  margin-right: 3px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.08s;
  box-shadow: 0 2px 10px 0 rgba(19,58,84,0.08);
}
.cookie-banner .cookie-btn.cookie-settings,
.cookie-banner .cookie-btn.cookie-reject {
  background: #fff;
  color: #133A54;
  border: 2px solid #133A54;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #204C63;
  color: #FDFDFC;
  transform: scale(1.04);
}
.cookie-banner .cookie-btn.cookie-settings:hover {
  background: #8FC1E3;
  color: #133A54;
}
.cookie-banner .cookie-btn.cookie-reject:hover {
  background: #FDFDFC;
  color: #133A54;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(142,193,227,0.38);
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalIn 0.40s;
}
@keyframes modalIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #FDFDFC;
  color: #133A54;
  border-radius: 16px;
  padding: 38px 32px 32px 32px;
  box-shadow: 0 8px 32px 0 rgba(19,58,84,0.17);
  min-width: 300px;
  max-width: 98vw;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #133A54;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}
.cookie-category label {
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-toggle {
  width: 38px;
  height: 21px;
  border-radius: 20px;
  background: #8FC1E3;
  position: relative;
  transition: background 0.13s;
  cursor: pointer;
  margin-left: 5px;
  display: inline-block;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.15s;
  box-shadow: 0 2px 6px rgba(19,58,84,0.10);
}
.cookie-toggle.enabled {
  background: #133A54;
}
.cookie-toggle.enabled:before {
  transform: translateX(17px);
  background: #8FC1E3;
}
.cookie-category input[type=checkbox] {
  display: none;
}

/* Always enabled text */
.cookie-category .always {
  font-size: 0.96rem;
  color: #204C63;
  font-style: italic;
  margin-left: 7px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
}

@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.99rem;
    padding: 19px 9px 22px 9px;
  }
  .cookie-banner p { margin-right: 0; }
  .cookie-modal {
    min-width: 90vw;
    padding: 24px 7px 16px 7px;
  }
}

/* ====== ARTISTIC TOUCHES (ICONS, DECORATIVE) ====== */
header img, .feature-grid img, .usp-list img, .footer-logo img, .trust-signals img, .contact-details img, .cta-section img {
  filter: drop-shadow(0 2px 4px #8FC1E320);
}

/* Focus outlines for accessibility */
:focus {
  outline: 2.5px dashed #8FC1E3;
  outline-offset: 2px;
}

/* Animation for buttons */
.btn-primary, .cookie-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.13s, transform 0.11s;
}

/* ====== VISUAL HIERARCHY SPACING ====== */
section, .section {
  margin-bottom: 60px;
  padding-top: 38px;
  padding-bottom: 38px;
}
.features, .about, .about-story, .about-features, .services, .contact-details, .confirmation {
  margin-bottom: 45px;
}

/* ====== DECORATIVE BORDERS/HIGHLIGHTS FOR ARTISTIC EFFECT ====== */
.feature-grid > div, .testimonial-card, .usp-list li {
  border: 2.2px solid #8FC1E3;
  background:
    linear-gradient(100deg, #FDFDFC 80%, #8FC1E330 100%);
}

/* Card unique marker highlight (artistic) */
.card:after, .feature-grid > div:after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 64px;
  height: 64px;
  background: url('../assets/icons/icon-markart.svg') no-repeat right top;
  opacity: 0.10;
  pointer-events: none;
  z-index: 1;
}

/* ======= END CSS ======= */
