/* ========== Base / reset ========== */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.5;
}

/* ========== Layout helpers ========== */
.container {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
}

/* ========== Header ========== */
.site-header {
  position: relative;
  min-height: 88px;
  overflow: hidden;
}

/* Background layer */
.header-bg {
  position: absolute;
  inset: 0;

  background-image: url("assets/header.jpeg");
  background-size: cover;
  background-repeat: no-repeat;

  /* Control where the image “sits” */
  background-position: center -50px;

  /* Optional: darken for readability */
  filter: brightness(1.00);
  z-index: 0;

  transform: scaleX(-1);
  transform-origin: center;
}

/* Foreground layer */
.header-inner {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;
  padding: 12px 16px;
}

/* Logo */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}

/* Nav */
.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px; /* touch-friendly */
  border-radius: 8px;
}

.nav a:hover {
  text-decoration: underline;
}

/* ========== Hero ========== */
.hero {
  padding: 56px 0;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
}

.hero p {
  margin: 0 0 18px;
  font-size: 16px;
  color: #333;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 10px;
}

.btn.primary {
  background: #111;
  color: #fff;
}

.btn.ghost {
  border: 2px solid #111;
  color: #111;
}

/* ========== Sections / footer ========== */
.section {
  padding: 44px 0;
}

.section.alt {
  background: #f5f5f5;
}

.footer {
  padding: 18px 0;
  background: #f5f5f5;
  color: #333;
  text-align: center;
}
/* ========== Mobile nav toggle ========== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  padding: 6px 10px;
}
/* ========== Responsive (desktop enhancements) ========== */
@media (min-width: 900px) {
  .site-header {
    min-height: 104px;
  }

  .brand-logo {
    height: 64px;
  }

  .nav a {
    font-size: 15px;
  }

  .hero {
    padding: 72px 0;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 18px;
  }
}
/* ========== Mobile adjustments ========== */
@media (max-width: 600px) {
  .site-header {
    min-height: 78px;
  }
.nav-toggle {
  display: block;
}

.nav {
  position: absolute;
  top: 100%;
  right: 0;

  background: rgba(0, 0, 0, 0.9);
  flex-direction: column;
  align-items: flex-start;

  padding: 10px;
  border-radius: 10px;

  display: none;
}

.nav a {
  width: 100%;
}
  .header-inner {
    padding: 10px 12px;
    gap: 10px;
  }

  .brand-logo {
    height: 46px;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    font-size: 13px;
    padding: 8px 8px;
  }

  .header-bg {
    background-position: center -10px;
  }
}
