/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background: #fff;
}

a { color: #f07020; text-decoration: none; }
a:hover { text-decoration: underline; color: #d05a10; }
img { max-width: 100%; height: auto; display: block; }

/* ===== LAYOUT ===== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SITE HEADER ===== */
#site-header {
  position: relative;
  background: #111;
  width: 100%;
  line-height: 0;
}

#site-header img.header-img {
  width: 100%;
  height: auto;
  display: block;
}

#site-header .header-tagline {
  position: absolute;
  bottom: 14px;
  left: 28px;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}

/* ===== NAVIGATION ===== */
#main-nav {
  background: #111;
  border-bottom: 2px solid #f07020;
  position: sticky;
  top: 0;
  z-index: 100;
}

#main-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

#main-nav .nav-logo {
  color: #f07020;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
}

#main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

#main-nav ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

#main-nav ul li a:hover { color: #f07020; text-decoration: none; }
#main-nav ul li.active a { color: #f07020; }

.nav-divider {
  width: 1px;
  height: 16px;
  background: #333;
  margin: 0 4px;
}

#main-nav ul li.tattoo-link a { color: #888; font-size: 12px; }
#main-nav ul li.tattoo-link a:hover { color: #b0a0ff; }
#main-nav ul li.tattoo-link.active a { color: #b0a0ff; }

/* ===== HERO ===== */
.hero-section {
  background: #111;
  padding: 56px 24px;
  text-align: center;
}

.hero-section h1 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.hero-section h1 span { color: #f07020; }

.hero-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.hero-left { text-align: left; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: #f07020;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s;
}
.btn:hover { background: #d05a10; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #f07020 !important;
  border: 1px solid #f07020;
  padding: 11px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
}
.btn-outline:hover { background: rgba(240,112,32,0.1); }

.btn-purple {
  display: inline-block;
  background: #534ab7;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
}
.btn-purple:hover { background: #3e359e; }

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 36px 0;
  border-bottom: 1px solid #eee;
}

.content-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid #f07020;
}

.content-section p { color: #555; margin-bottom: 10px; font-size: 15px; }

/* ===== OPENINGSTIJDEN ===== */
.hours-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 10px; }
.hours-table td { padding: 8px 10px; border-bottom: 1px solid #eee; }
.hours-table td:first-child { color: #888; width: 220px; }
.hours-table td:last-child { font-weight: 600; color: #222; }

/* ===== PARTNERS BAR ===== */
.partners-bar { background: #f5f5f3; padding: 20px 0; border-top: 1px solid #e8e8e4; }
.partners-bar .label { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.partner-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 99px;
  padding: 7px 16px 7px 10px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.partner-pill:hover { border-color: #f07020; color: #222; text-decoration: none; }
.partner-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-orange { background: #f07020; }
.dot-purple { background: #7f77dd; }

/* ===== TEAM ===== */
.team-member {
  display: flex;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}

.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1c1c1c;
  border: 2px solid #f07020;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #f07020;
}

.team-member-name { font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.team-member-role { font-size: 13px; color: #f07020; margin-bottom: 10px; font-weight: 600; }
.team-member-bio { font-size: 15px; color: #666; line-height: 1.7; }

/* ===== DARK SECTION (tattoo op over-ons) ===== */
.dark-section {
  background: #111;
  padding: 36px 0;
}

.dark-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #7f77dd;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 4px solid #7f77dd;
}

.dark-section p { color: rgba(255,255,255,0.6); margin-bottom: 8px; font-size: 15px; }
.dark-section a { color: #b0a0ff; }

.sub-name {
  color: #b0a0ff;
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 6px;
}

.contact-mini { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 16px; line-height: 1.8; }

.dark-flex { display: flex; gap: 24px; align-items: flex-start; }
.dark-flex img { width: 140px; height: 140px; object-fit: cover; border-radius: 8px; flex-shrink: 0; border: 1px solid #333; }

/* ===== DIEET PAGINA ===== */
.dieet-hero {
  background: #111;
  padding: 32px 0;
  border-bottom: 1px solid #222;
}

.dieet-hero-inner {
  display: flex;
  gap: 24px;
  align-items: center;
}

.dieet-hero img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f07020;
  flex-shrink: 0;
}

.dieet-hero h1 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.dieet-hero p { color: rgba(255,255,255,0.5); font-size: 14px; }

.samen-banner { background: #f07020; padding: 18px 0; }
.samen-banner .samen-inner { display: flex; align-items: center; gap: 16px; }
.samen-banner img { height: 64px; width: auto; flex-shrink: 0; }
.samen-banner p { font-size: 20px; font-weight: 700; color: #fff; }

/* ===== TATTOO PAGINA ===== */
.tattoo-body { background: #0e0d18; }

.tattoo-hero {
  background: #0e0d18;
  padding: 48px 0;
  border-bottom: 1px solid #1a1a2e;
}

.tattoo-hero h1 { font-size: 30px; font-weight: 700; color: #b0a0ff; margin-bottom: 8px; }
.tattoo-hero p { color: rgba(255,255,255,0.45); font-size: 15px; }

.tattoo-section {
  background: #0e0d18;
  padding: 32px 0;
  border-bottom: 1px solid #1a1a2e;
}

.tattoo-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: #7f77dd;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid #7f77dd;
}

.tattoo-section p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 8px; }
.tattoo-section a { color: #b0a0ff; }

.tattoo-img-row { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.tattoo-img-row img { width: 180px; height: 180px; object-fit: cover; border-radius: 8px; border: 1px solid #333; }

/* ===== CONTACT PAGINA ===== */
.map-container { width: 100%; height: 260px; background: #e8e4de; border-bottom: 1px solid #ddd; overflow: hidden; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-item { margin-bottom: 16px; }
.contact-label { font-size: 12px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-value { font-size: 15px; color: #222; }

/* ===== FOOTER ===== */
#site-footer {
  background: #111;
  padding: 22px 0;
  display: flex;
  align-items: center;
}

#site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-logo { color: #f07020; font-size: 15px; font-weight: 700; }
#site-footer p { color: rgba(255,255,255,0.25); font-size: 12px; }

.tattoo-footer { background: #0a0918; }
.tattoo-footer .footer-logo { color: #7f77dd; }

/* ===== RESPONSIVE ===== */
@media (max-width: 680px) {
  #main-nav .nav-inner { flex-direction: column; height: auto; padding: 10px 16px; gap: 8px; }
  #main-nav ul { gap: 2px; justify-content: center; }
  .hero-section h1 { font-size: 26px; }
  .team-member { flex-direction: column; }
  .dark-flex { flex-direction: column; }
  .dieet-hero-inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 0; }
  .samen-banner img { height: 50px !important; }
  .tattoo-img-row img { width: 100%; height: auto; }
}

/* ===== SALON FOTO'S ===== */
.salon-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.salon-photos img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .salon-photos {
    grid-template-columns: 1fr;
  }
  .salon-photos img {
    height: 220px;
  }
}

/* ===== DIENSTEN GRID ===== */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.dienst-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f9f9f7;
  border: 1px solid #eee;
  border-left: 3px solid #f07020;
  border-radius: 6px;
  padding: 14px 16px;
}

.dienst-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.dienst-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.dienst-item p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* ===== PAKKET GRID ===== */
.pakket-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pakket-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 99px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

/* ===== NAV AFSPRAAK KNOP ===== */
#main-nav ul li a.btn-nav {
  background: #f07020;
  color: #fff !important;
  padding: 7px 14px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 12px;
  transition: background 0.2s;
}
#main-nav ul li a.btn-nav:hover {
  background: #d05a10;
  text-decoration: none;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 4px solid #f07020;
}

/* ===== SOCIAL LINKS IN FOOTER ===== */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55) !important;
  font-size: 13px;
  text-decoration: none !important;
  transition: color 0.2s;
}

.social-link:hover {
  color: #f07020 !important;
}

#site-footer .footer-inner {
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== HAAR GALERIJ ===== */
.haar-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.haar-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.haar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.3s ease;
}

.haar-item:hover img {
  transform: scale(1.03);
}

.haar-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 24px 12px 10px;
}

@media (max-width: 600px) {
  .haar-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .haar-item {
    aspect-ratio: 4/3;
  }
}
