/* =============================================
   Amijs en Amelis ICT — Main Stylesheet
   ============================================= */

:root {
  --blue: #00659c;
  --blue-dark: #004f7a;
  --blue-light: #e0f0f8;
  --gold: #be8300;
  --gold-light: #f7edcc;
  --dark: #1a1e2e;
  --mid: #3d4358;
  --muted: #6b7280;
  --light: #f7f8fc;
  --white: #ffffff;
  --border: #e2e8f0;

  --font-display: 'Urbanist', sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;

  --radius: 6px;
  --shadow: 0 2px 16px rgba(0, 101, 156, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 101, 156, 0.15);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ---- Layout ---- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.logo-link {
  display: flex;
  align-items: center;
}
.logo {
  height: 75px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mid);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  transition:
    color var(--transition),
    background var(--transition);
  letter-spacing: 0.02em;
}
.main-nav a:hover {
  color: var(--blue);
  background: var(--blue-light);
}
.main-nav a.active {
  color: var(--blue);
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
  padding-bottom: 0.35rem;
}
.lang-toggle {
  margin-left: 0.5rem;
  background: var(--gold-light) !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
  border: 1px solid var(--gold) !important;
}
.lang-toggle:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ---- Hero Banner ---- */
.page-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  position: relative;
}

/* ---- Home Hero ---- */
.home-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.home-hero p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
  max-width: 780px;
  margin: 0 auto 2rem;
  line-height: 1.5;
  position: relative;
  opacity: 0.95;
}
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #9a6a00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---- Content Sections ---- */
.section {
  padding: 4.5rem 0;
}
.section-alt {
  background: var(--light);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.section-grid.reverse {
  direction: rtl;
}
.section-grid.reverse > * {
  direction: ltr;
}

.section-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 1.1rem;
  line-height: 1.25;
}
.section-text h2 .accent {
  color: var(--gold);
}
.section-text p {
  color: var(--mid);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.section-text p:last-child {
  margin-bottom: 0;
}

/* ---- Venn Diagram (Approach) ---- */
.venn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
}
.venn-wrap svg {
  max-width: 380px;
  width: 100%;
}

/* ---- Services List ---- */
.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.2rem;
}
.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 1.05rem;
  color: var(--mid);
  transition: box-shadow var(--transition);
}
.services-list li:hover {
  box-shadow: var(--shadow);
}
.services-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ---- Solutions Cards ---- */
.solutions-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.2rem;
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  font-size: 1.05rem;
  color: var(--mid);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.solution-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* ---- About ---- */
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--blue-light);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}
.about-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.about-feature p {
  margin: 0;
  color: var(--mid);
}

/* ---- Pillars (Approach) ---- */
.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.45rem 1rem;
  border-radius: 99px;
  letter-spacing: 0.03em;
}
.pillar::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.65rem;
}

/* ---- Platform Badge ---- */
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--blue-light), var(--gold-light));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 1.05rem;
}
.platform-badge span {
  color: var(--gold);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.footer-logo {
  height: 45px;
  filter: brightness(0) invert(1);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}
.footer-address {
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}
.footer-cta {
  background: var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  text-align: center;
}
.footer-cta p {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

/* ---- Divider ---- */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section-grid.reverse {
    direction: ltr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-cta {
    grid-column: 1 / -1;
  }
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .nav-open .main-nav {
    display: flex;
  }
  .main-nav a.active {
    border-bottom: none;
    border-left: 3px solid var(--gold);
    padding-left: 0.7rem;
  }
  .solutions-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Privacy Page ---- */
.privacy-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.privacy-block h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--gold-light);
}
.privacy-block p {
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.75;
}
.privacy-block p a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-block p a:hover {
  color: var(--gold);
}
.privacy-contact {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}
.privacy-contact h2 {
  border-bottom: none;
  padding-bottom: 0;
}
