/*
Theme Name: Cilurzo Child
Template: hello-elementor
Version: 1.0
Description: Cilurzo Digital child theme met custom header, nav en footer
Author: Cilurzo Digital
*/

/* ===== RESET & BASIS ===== */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --accent-dark: #c73652;
  --light: #f8f9fa;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  margin: 0;
  padding: 0;
}

/* ===== HEADER ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.site-logo .logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1;
}

.site-logo .logo-text span {
  color: var(--accent);
}

.site-logo .logo-tagline {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

/* NAVIGATIE */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav ul li a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  display: block;
}

.main-nav ul li a:hover {
  color: var(--accent);
  background: rgba(233,69,96,0.06);
}

.main-nav ul li.current-menu-item a,
.main-nav ul li.current_page_item a {
  color: var(--accent);
  font-weight: 600;
}

.nav-cta a {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}

.nav-cta a:hover {
  background: var(--accent-dark) !important;
  color: var(--white) !important;
}

/* HAMBURGER MOBIEL */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  margin-top: 80px;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand .logo-text span { color: var(--accent); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0 0 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-contact-item:hover { color: var(--accent); }

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--accent); }

/* Social icons */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--white);
}

/* ===== MOBIEL ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9998;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    align-items: stretch;
  }

  .main-nav ul li a {
    padding: 12px 16px;
    border-radius: var(--radius);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
