
/* Stoma Studio — Premium Medical (clean, neutral) */
:root{

  /* PRIMARY */
  --text:#2E4A36;      /* Deep Navy - text principal */
  --primary:#3F6B4F;
  --accent:#C6A86B;    /* Warm Gold */

  /* BACKGROUNDS */
  --bg:#F4F2EE;        /* Soft Ivory */
  --card:#ffffff;
  --soft:#E8DFC9;      /* Light Sand */
  --dark:#1F3528;      /* Charcoal Blue */

  /* UI */
  --line:#D8C08A;      /* Metallic accent */
  --muted:#567462;

  --radius:16px;
  --radius-lg:22px;
  --max:1100px;
}
*{box-sizing:border-box} html,body{margin:0;padding:0}
body{font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;color:var(--text);background:var(--bg);line-height:1.6}
a{color:inherit;text-decoration:none} a:hover{text-decoration:underline}
.container{width:min(var(--max),calc(100% - 2rem));margin:0 auto}
header.site-header{position:sticky;top:0;z-index:30;background:rgba(244,242,238,.9);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.navbar{display:flex;align-items:center;flex-start:space-between;padding:1.5rem 0;gap:1rem}
.brand{display:flex;align-items:center;gap:.75rem;font-weight:700}
.brand-mark{width:34px;height:34px;border-radius:10px;border:1px solid var(--line);display:grid;place-items:center}
.navlinks{display:flex;gap:1rem;flex-wrap:wrap}
.navlinks a{padding:.45rem .6rem;border-radius:10px;color:var(--muted);font-weight:600;font-size:14px}
.navlinks a.active{background:var(--soft);color:var(--text);border:1px solid var(--line)}
.cta{
  padding:.55rem .85rem;
  border-radius:12px;
  border:1px solid var(--accent);
  background:var(--accent);
  color:#2c4736;
  font-weight:700;
}
main{padding:2rem 0 3rem}
.hero-image{position:relative;border-radius:22px;overflow:hidden;min-height:420px;
background:linear-gradient(
  135deg,
  rgba(49, 63, 47, 0.95),
  rgba(120, 150, 118, 0.75)
),
url("images/hero.jpg");
background-size:cover;background-position:center;display:flex;align-items:center}
.hero-content{color:#fff;padding:60px;max-width:700px}
.hero-content h1{color:#fff}
.lead{max-width:72ch;color:var(--muted)}
.grid{display:grid;gap:1rem}
.grid.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
@media (max-width:900px){.grid.cols-3,.grid.cols-2{grid-template-columns:1fr}}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:1.1rem;
  box-shadow:0 8px 24px rgba(30,42,53,.06);
}
.photo{
  width:100%;
  aspect-ratio:1/1;
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
  overflow:hidden;
}
.section-title{margin:2rem 0 .6rem;font-size:18px}
.divider{height:1px;background:var(--line);margin:1.4rem 0}
.badge{display:inline-flex;padding:.2rem .55rem;border-radius:999px;border:1px solid var(--line);background:var(--soft);color:var(--muted);font-weight:800;font-size:12px}
footer.site-footer{border-top:1px solid var(--line);background:#fff;padding:1.6rem 0}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr 1fr;gap:1rem}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr}}
.small{color:var(--muted);font-size:13px}

.photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:inherit;
  display:block;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

/* icon */
.logo-icon{
  height:84px;
  width:auto;
}

/* text logo */
.logo-text{
  height:120px; width:auto; } @media (max-width:700px){ .logo-text{ display:none; }
  .logo-icon{
    height:38px;
  }
}

/* =========================
   MOBILE MENU (PREMIUM)
========================= */

/* HAMBURGER */
.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:30px;
  height:25px;
  background:none;
  border:none;
  cursor:pointer;
  z-index:40;
}

.menu-toggle span{
  display:block;
  height:3px;
  width:100%;
  background:var(--text);
  border-radius:2px;
  transition:0.3s ease;
}

/* animatie -> X */
.menu-toggle.open span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2){
  opacity:0;
}
.menu-toggle.open span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}


/* =========================
   MOBILE NAV
========================= */

@media (max-width:768px){

  .menu-toggle{
    display:flex;
  }

  .navlinks{
    position:absolute;
    top:80px;
    right:20px;

    flex-direction:column;
    gap:10px;

    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);

    padding:18px;
    border-radius:var(--radius);
    border:1px solid var(--line);

    box-shadow:0 12px 30px rgba(0,0,0,0.08);

    /* animatie */
    opacity:0;
    transform:translateY(-10px) scale(0.98);
    pointer-events:none;
    transition:all .25s ease;
  }

  .navlinks.active{
    opacity:1;
    transform:translateY(0) scale(1);
    pointer-events:auto;
  }

  .navlinks a{
    padding:.6rem .8rem;
    border-radius:10px;
    width:100%;
  }

  .navlinks a:hover{
    background:var(--soft);
  }
}


/* =========================
   SOCIAL SVG ICONS PREMIUM
========================= */

.socials{
  display:flex;
  align-items:center;
  gap:10px;
}

.socials a{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;

  border-radius:50%;
  border:1px solid var(--line);

  background:var(--card);
  color:var(--muted);

  transition:all .25s ease;
}

/* SVG */
.socials svg{
  width:18px;
  height:18px;
  fill:currentColor;
}

/* hover premium */
.socials a:hover{
  color:var(--text);
  border-color:var(--accent);
  background:var(--soft);
  transform:translateY(-2px);
}

/* MOBILE */
@media (max-width:768px){
  .socials{
    margin-top:10px;
    justify-content:center;
  }
}none

@media (max-width:768px){
  .hero-image{
    background:linear-gradient(
      180deg,
      rgba(31,53,40,0.75),
      rgba(31,53,40,0.95)
    ),
    url("images/hero.jpg");
    background-size:cover;
    background-position:center;
  }
}

@media (max-width:768px){

  .hero-content{
    padding:22px;
  }

  .hero-content h1{
    font-size:20px;
    margin-bottom:10px;
  }

  .hero-content h2{
    font-size:14px;
    margin-bottom:22px;
  }

  .hero-content div{
    margin-top:35px;
    display:flex;
    flex-direction:column;
    gap:12px;
  }
