@font-face {
  font-family: 'Libre Franklin';
  src: url('fonts/LibreFranklin-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Libre Franklin';
  src: url('fonts/LibreFranklin-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
/* ============================================================
   Twenty Seventeen Child – main.css
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Libre Franklin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Layout helper ---------- */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

h1 {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* Nav – desktop */
.nav-menu {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-menu a {
  color: #eee;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-menu a:hover { color: #fff; }

/* Hamburger button – hidden on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: #eee;
  border-radius: 2px;
  transition: background 0.2s;
}

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ============================================================
   SECTIONS – shared
   ============================================================ */
.panel-content {
  padding: 6rem 0;
}

.panel-content p {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

/* ============================================================
   PANEL WITH PARALLAX BACKGROUND IMAGE
   (Twenty Seventeen scroll / parallax effect)
   ============================================================ */
.panel-with-image {
  position: relative;
  padding: 8rem 0;
  background-image: var(--panel-bg);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;   /* ← Twenty Seventeen fixed/parallax effect */
}

/* Dark overlay via ::before so background-attachment: fixed is not broken
   by overflow:hidden (which would cancel the effect on a child element) */
.panel-with-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.section-title--light {
  color: #fff;
}

.text-light {
  color: rgba(255,255,255,0.92);
}

.text-light ul {
  list-style-position: inside;
}

/* ============================================================
   WELCOME SECTION (no background image)
   ============================================================ */
#welcome {
  background: #f7f7f7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000;
  color: #ccc;
  padding: 3.5rem 0 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col {
  font-size: 0.85rem;
  color: #fff
}

.partner-logos {
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.75rem;
}



.partner-logos img:hover {
  opacity: 1;
}

/* ---------- Social Icons ---------- */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #fff;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon--facebook,
.social-icon--instagram,
.social-icon--whatsapp  { background: #444; }

.social-icon:hover {
  background: #666 !important;
}

.site-info {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem 0;
  border-top: 1px solid #444;
  font-size: 0.85rem;
  color: #888;
}

/* ============================================================
   RESPONSIVE – Hamburger menu
   ============================================================ */
@media (max-width: 768px) {

  /* Show hamburger, hide inline menu */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    background: #333;
    padding: 0.5rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,.4);
    z-index: 99;
  }

  .site-navigation { position: static; }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu li a {
    display: block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-bottom: 1px solid #444;
  }

  .nav-menu li:last-child a { border-bottom: none; }

  /* Disable fixed-attachment parallax on mobile (performance + iOS glitch) */
  .panel-with-image {
    background-attachment: scroll; /* disable fixed on mobile – iOS glitch */
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
