/* --- CSS RESET & NORMALIZE (industrial_modern adaptation) --- */
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; background: #181a20; color: #e6e8ea; }
img, picture, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
:focus { outline: 2px solid #6CA0DC; outline-offset: 2px; }

/* --- BRAND COLORS & FONTS --- */
:root {
  --clr-primary: #21283B;
  --clr-primary-dark: #181a20;
  --clr-secondary: #6CA0DC;
  --clr-accent: #cfbb8e;
  --clr-gray: #343942;
  --clr-gray-2: #23272C;
  --clr-metal: #969CA3;
  --clr-white: #fff;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius: 8px;
  --shadow: 0 2px 12px 0 rgba(32, 38, 56, 0.10), 0 1.5px 0px 0px #23272C;
  --transition: 0.22s cubic-bezier(.4,.15,.6,1.3);
}

body {
  font-family: var(--font-body);
  background: var(--clr-primary-dark);
  color: #e6e8ea;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--clr-accent);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  margin-top: 0;
  font-weight: 700;
  text-shadow: 0 1px 0 #242a3a, 0 2px 0 #2e3442;
}
h1 { font-size: 2.6rem; line-height: 1.12; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; letter-spacing: 0.03em; }
h4, h5, h6 { font-size: 1.1rem; }

p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #f2f4f8;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong {
  color: var(--clr-secondary);
  font-weight: 600;
}

/* SPACING & CONTAINERS */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--clr-gray-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #3f4550;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  color: #f4f7fa;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 6px 24px 2px rgba(33,40,59,0.22);
  border-color: var(--clr-secondary);
}
.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 {
  background: var(--clr-accent);
  color: #23272C;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(33, 40, 59, 0.09);
  margin-bottom: 20px;
  border-left: 6px solid var(--clr-secondary);
  font-size: 1.05rem;
  position: relative;
  line-height: 1.6;
}
.testimonial-card strong {
  color: var(--clr-primary);
  margin-left: 14px;
  font-size: 0.98em;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* BUTTONS & CTAS */
.cta-primary {
  display: inline-block;
  background: var(--clr-secondary);
  color: var(--clr-primary);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.15rem;
  padding: 14px 34px;
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 2px 8px 0 rgba(33,40,59,0.13);
  text-shadow: none;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 12px;
  transition: background 0.22s, color 0.22s, transform 0.15s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--clr-primary);
  color: var(--clr-accent);
  transform: translateY(-2px) scale(1.03);
}

button, .button {
  background: var(--clr-primary);
  color: var(--clr-accent);
  font-family: var(--font-display);
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: var(--clr-secondary);
  color: var(--clr-primary);
}

/* HEADER / NAVIGATION */
header {
  background: var(--clr-primary);
  padding: 14px 0 12px 0;
  box-shadow: 0 4px 24px rgba(24,26,32,0.12);
  position: relative;
  z-index: 999;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  color: #f4f7fa;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.04rem;
  padding: 6px 9px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
header nav a:hover,
header nav a:focus {
  color: var(--clr-secondary);
  background: #272836;
}
header .cta-primary {
  font-size: 1rem;
  padding: 10px 20px;
  margin: 0 0 0 10px;
  min-width: 110px;
}
/* Brand logo styling */
header img[alt="Brisk Build FotoKunst"] {
  height: 40px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  background: var(--clr-gray);
  color: var(--clr-accent);
  border: none;
  border-radius: 6px;
  font-size: 2.2rem;
  padding: 3px 12px;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--clr-secondary);
  color: var(--clr-primary);
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 40, 59, 0.95);
  z-index: 1999;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.32s var(--transition), opacity 0.18s;
  opacity: 0;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: var(--clr-accent);
  font-size: 2.4rem;
  border: none;
  align-self: flex-end;
  margin: 18px 18px 0 0;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--clr-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 48px 0 0 35px;
}
.mobile-nav a {
  color: var(--clr-white);
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 8px 0;
  border-radius: 3px;
  transition: background 0.1s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--clr-secondary);
}

/* --- BODY OVERLAY for menu --- */
body.mobile-menu-open {
  overflow: hidden !important;
}

/* FOOTER */
footer {
  background: var(--clr-primary);
  color: var(--clr-accent);
  padding: 28px 0 24px 0;
  border-top: 4px solid var(--clr-secondary);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--clr-accent);
  font-family: var(--font-body);
  border-bottom: 2px solid transparent;
  transition: border-color 0.13s, color 0.13s;
  font-size: 0.97rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-color: var(--clr-secondary);
  color: var(--clr-secondary);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  font-size: 0.98rem;
  align-items: flex-start;
}
.footer-contact img {
  width: 18px; height: 18px;
  vertical-align: middle;
  margin-right: 7px;
  margin-top: -2px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--clr-gray);
  border-radius: 50%;
  border: 1.5px solid var(--clr-metal);
  transition: background 0.16s, border-color 0.14s;
}
.footer-social a img {
  width: 18px; height: 18px;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--clr-secondary);
  border-color: var(--clr-secondary);
}

/* --- HERO & KEY SECTIONS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:first-child {
  margin-top: 20px;
}

/* ICONs in features: */
.content-wrapper ul li img,
.card ul li img,
.footer-contact p img {
  margin-right: 12px;
  width: 24px; height: 24px;
  vertical-align: middle;
  filter: grayscale(0.35) contrast(110%);
}

.content-wrapper ul, .text-section ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 0;
  padding-left: 0;
}
.content-wrapper ul li, .text-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1.07rem;
  color: #f4f7fa;
  padding-bottom: 2px;
}

/* --- CARD SPACING ENFORCEMENT --- */
.card-container > * + *, .content-grid > * + *, .feature-item > * + * {
  margin-left: 0;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-primary, button, .button {
  transition: box-shadow 0.18s, background 0.15s, color 0.15s, transform 0.15s;
}
.card, .testimonial-card {
  transition: box-shadow 0.17s, border 0.14s;
}
.card:hover {
  box-shadow: 0 8px 32px 2px #2c3b56b3;
  border-color: var(--clr-secondary);
  z-index: 2;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px 0 #23283b5a;
  border-left-color: var(--clr-primary);
  transform: scale(1.02);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--clr-primary);
  color: var(--clr-accent);
  box-shadow: 0 -4px 16px -1px #181a2082;
  z-index: 5001;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  animation: cookie-banner-in 0.44s var(--transition) forwards;
}
@keyframes cookie-banner-in {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cookie-banner .cookie-btn {
  background: var(--clr-secondary);
  color: var(--clr-primary);
  font-size: 1rem;
  border-radius: 6px;
  padding: 8px 22px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  margin-right: 6px;
  transition: background 0.11s, color 0.17s;
}
.cookie-banner .cookie-btn.reject {
  background: #353946;
  color: var(--clr-accent);
  border: 1px solid var(--clr-secondary);
}
.cookie-banner .cookie-btn.settings {
  background: none;
  color: var(--clr-secondary);
  border: 1.5px solid var(--clr-secondary);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--clr-primary);
  color: var(--clr-accent);
}

/* --- COOKIE CONSENT MODAL POPUP --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,40,59,0.92);
  backdrop-filter: blur(2px);
  z-index: 6010;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: var(--clr-primary-dark);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px 0 rgba(22,28,52,0.24);
  padding: 36px 28px 28px 28px;
  max-width: 376px;
  min-width: 290px;
  color: var(--clr-accent);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fade-in 0.24s var(--transition) forwards;
}
@keyframes fade-in {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: var(--clr-secondary);
  font-size: 1.38rem;
  margin-bottom: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  color: var(--clr-accent);
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  color: var(--clr-secondary);
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 0 0;
}
.cookie-modal .cookie-category label {
  color: var(--clr-accent);
  font-size: 1.01rem;
  font-family: var(--font-body);
}
.cookie-modal .cookie-toggle {
  margin-right: 8px;
}
.cookie-modal .cookie-category.essential label {
  opacity: 0.85;
  font-weight: 500;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  pointer-events: none;
  filter: grayscale(0.8) opacity(0.35);
}
.cookie-modal .cookie-modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* --- TYPOGRAPHY & MISCELLANEOUS --- */
hr {
  border: none;
  border-top: 1px solid #383d4c;
  margin: 30px 0;
}
::-webkit-scrollbar {
  width: 10px;
  background: var(--clr-primary-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: 6px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1199px) {
  .container {
    max-width: 98vw;
  }
  .footer-contact {
    flex-direction: column;
    gap: 9px 24px;
  }
}
@media (max-width: 992px) {
  section, .section {
    padding: 32px 8px;
  }
  .content-wrapper, .text-section {
    padding: 0 2px;
  }
}
@media (max-width: 830px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px 16px;
  }
}
@media (max-width: 790px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.38rem; }
  .container {
    max-width: 100vw;
    padding: 0 7px;
  }
  section, .section {
    padding: 28px 0px;
    margin-bottom: 36px;
  }
}
@media (max-width: 768px) {
  header nav, header .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 0;
  }
  .footer-social {
    margin-top: 10px;
  }
  .content-wrapper,
  .text-section,
  .container,
  .content-grid,
  .card-container {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
}
@media (max-width: 480px) {
  .testimonial-card, .card {
    padding: 16px 8px;
    font-size: 0.96rem;
  }
  .cookie-modal {
    padding: 18px 8px 14px 8px;
    min-width: 97vw;
    max-width: 97vw;
  }
}
/* Misc helpers & utilities */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }

/**** END ****/
