:root{
  /* LIGHT THEME + PURE BLACK ACCENT */
  --bg:#ffffff;
  --surface:#ffffff;
  --card:#ffffff;
  --text:#111111;
  --muted:#555555;
  --accent:#000000;   /* was yellow → now PURE BLACK */
  --accent-2:#000000; /* borders/shadows for accent */
  --border:#e5e7eb;   /* light gray */
  --white:#ffffff;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

/* Utilities */
.container{width:min(1120px, 92%); margin:0 auto}
.section{padding:72px 0}
.section.alt{background:#fafafa}
.section-head{margin-bottom:28px}
.section-head h2{font-size:34px;margin:0 0 8px;color:var(--text)}
.section-head p{color:var(--muted);margin:0}

.center{text-align:center}
.mt-24{margin-top:24px}

/* Buttons - ACCENT IS BLACK NOW */
.btn{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:12px 20px;
  border-radius:12px;
  border:1px solid var(--accent-2);
  font-weight:700;
  text-decoration:none;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  box-shadow:0 4px 16px rgba(0,0,0,.12);
}
.btn:hover{transform:translateY(-1px); box-shadow:0 10px 30px rgba(0,0,0,.2)}
.btn:active{transform:translateY(0)}
.btn-outline{
  background:transparent; color:var(--text); border:1px solid var(--text)
}
.btn-outline:hover{background:var(--text); color:#fff}
.btn-sm{padding:8px 14px; font-size:14px}

/* Header */
.header{
  position:sticky; top:0; z-index:20;
  background:rgba(255,255,255,.85); backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; padding:12px 0;
}
.logo{display:flex; align-items:center; gap:10px; color:var(--text); text-decoration:none; font-weight:700}
.logo img{height:36px; width:auto}
.nav-links{display:flex; gap:18px; align-items:center}
.nav-links a{color:var(--text); text-decoration:none; opacity:.9}
.nav-links a:hover{opacity:1}
.nav-toggle{display:none; flex-direction:column; gap:6px; background:transparent; border:0; cursor:pointer}
.nav-toggle span{width:24px; height:2px; background:var(--text); display:block}

/* Hero */
.hero{
  padding:64px 0 32px;
  background:
    radial-gradient(1200px 400px at right -20%, rgba(0,0,0,.04), transparent 60%),
    radial-gradient(900px 300px at left 20%, rgba(0,0,0,.03), transparent 60%),
    #ffffff;
}
.hero-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:36px; align-items:center;
}
.hero-text h1{font-size:44px; line-height:1.1; margin:0 0 12px; color:var(--text)}
.hero-text p{color:var(--muted); margin:0 0 20px}
.hero-cta{display:flex; gap:12px; margin-bottom:16px}
.hero-points{display:flex; gap:18px; padding:0; margin:0; list-style:none; color:var(--muted)}
.hero-media img{width:100%; height:auto; border-radius:18px; border:1px solid var(--border); display:block}

/* Filters */
.filters{
  display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 24px;
}
.filter-btn{
  background:#fff; color:var(--text); border:1px solid var(--border); padding:8px 14px;
  border-radius:999px; cursor:pointer; font-weight:600;
}
.filter-btn.active, .filter-btn:hover{border-color:var(--accent); color:var(--accent)}

/* Grids */
.grid{display:grid; gap:18px}
.products{grid-template-columns:repeat(3, 1fr)}
.services{grid-template-columns:repeat(4, 1fr)}
.testimonials{grid-template-columns:repeat(3, 1fr)}

/* Cards */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 6px 16px rgba(17,17,17,.06);
}
.card img{width:100%; height:220px; object-fit:cover; display:block}
.card-body{padding:14px 16px}
.card-body h3{margin:0 0 6px; font-size:18px; color:var(--text)}
.card-body p{margin:0; color:var(--muted)}

/* Masonry Gallery */
.masonry{
  columns:3 300px; column-gap:16px;
}
.masonry img{
  width:100%; margin:0 0 16px; border-radius:14px; border:1px solid var(--border);
  display:block;
}

/* About */
.about-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:28px; align-items:center;
}
.about-media img{width:100%; border-radius:16px; border:1px solid var(--border)}
.checks{list-style:none; padding:0; margin:14px 0 0}
.checks li{margin:6px 0; position:relative; padding-left:22px; color:var(--text)}
.checks li::before{
  content:"✓"; position:absolute; left:0; top:0; color:var(--accent);
}

/* Contact / CTA */
.cta{
  background-color:#fafafa;
  background-image:url('../img/marble-texture.png');
  background-size:cover;
  background-blend-mode:normal;
}
.contact-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:28px; align-items:start;
}
.form{margin-top:10px}
.form-grid{grid-template-columns:repeat(2, 1fr)}
.form input, .form select, .form textarea{
  width:100%; padding:12px 14px; border-radius:12px; border:1px solid var(--border);
  background:#fff; color:var(--text); outline:none;
}
.form textarea{resize:vertical}
.form button{margin-top:12px}
.contact-box{
  background:#ffffff;
  border:1px solid var(--border); border-radius:16px; padding:18px;
}
.contact-list{list-style:none; padding:0; margin:0}
.contact-list li{margin:8px 0; color:var(--text)}

/* Footer */
.footer{
  border-top:1px solid var(--border); padding:18px 0; background:#ffffff;
}
.footer-grid{display:flex; justify-content:space-between; align-items:center; gap:14px}
.footer-links{display:flex; gap:14px}
.footer a{color:#666; text-decoration:none}
.footer a:hover{color:#000}

/* Responsive */
@media (max-width: 980px){
  .hero-grid, .about-grid, .contact-grid{grid-template-columns:1fr}
  .hero{padding-top:86px}
  .products{grid-template-columns:repeat(2, 1fr)}
  .services{grid-template-columns:repeat(2, 1fr)}
  .testimonials{grid-template-columns:1fr}
  .masonry{columns:2 260px}
  .nav-toggle{display:flex}
  .nav-links{
    position:absolute; right:16px; top:64px; background:#ffffff; border:1px solid var(--border);
    padding:12px; border-radius:12px; display:none; flex-direction:column; gap:10px; min-width:220px;
  }
  .nav-links.show{display:flex}
}
@media (max-width: 540px){
  .products{grid-template-columns:1fr}
  .services{grid-template-columns:1fr}
  .masonry{columns:1 240px}
  .hero-text h1{font-size:34px}
}
/* Force white text for the CTA in the top nav */
.nav-links .btn{
  color:#fff;
  opacity:1;            /* cancel the .nav-links a opacity */
}
.nav-links .btn:hover{
  color:#fff;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right 12px center;
  background-repeat: no-repeat;
}
/* Footer — mobile layout fix */
@media (max-width: 680px){
  .footer-grid{
    flex-direction: column;      /* stack text above links */
    align-items: center;         /* center horizontally */
    gap: 10px;
    text-align: center;          /* center text lines */
  }
  .footer p{
    margin: 0;
    white-space: normal;         /* avoid weird word-by-word breaks */
    max-width: 100%;
  }
  .footer-links{
    flex-wrap: wrap;             /* allow links to go to 2 lines if needed */
    justify-content: center;
    gap: 12px;
  }
}
/* Blink / pulse for the "Appeler" button */
.btn-call{
  position: relative;
  animation: callPulse 1.8s ease-in-out infinite, callBlink 1.8s ease-in-out infinite;
  will-change: box-shadow, background, color, transform;
}

/* soft expanding shadow */
@keyframes callPulse{
  0%   { box-shadow: 0 0 0 0 rgba(0,0,0,.22); transform: translateY(0); }
  60%  { box-shadow: 0 0 0 12px rgba(0,0,0,0); transform: translateY(-1px); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); transform: translateY(0); }
}

/* quick invert to create a visible blink */
@keyframes callBlink{
  0%, 100% { background: transparent; color: var(--text); }
  40%      { background: var(--accent); color: #fff; } /* your accent is pure black */
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce){
  .btn-call{ animation: none; }
}
																																															
/* Inline validation states */
.form .is-error{
  border-color:#ef4444 !important;
  box-shadow:0 0 0 3px rgba(239,68,68,.08);
}
.form .error-msg{
  display:block;
  color:#ef4444;
  font-size:12px;
  margin:6px 0 0 2px;
}

/* Lang switch button */
.lang-btn{
  display:inline-block; padding:8px 12px; border:1px solid #000;
  border-radius:12px; text-decoration:none; color:#000; font-weight:600;
}
.lang-btn:hover{ opacity:.9; }
@media (max-width:980px){
  .lang-btn{ padding:8px 10px; }
}
																																															
																																															
																																															
/* (Optional) only blink on small screens
@media (max-width:980px){
  .btn-call{ animation: callPulse 1.8s ease-in-out infinite, callBlink 1.8s ease-in-out infinite; }
}
*/
