/* ------------------------------
   FONT IMPORTS
------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&family=Roboto:wght@300;400;500&display=swap');

/* ------------------------------
   COLOR VARIABLES
------------------------------ */
:root {
    --olive: #4B5320;
    --gold: #C9A635;
    --black: #0D0D0D;
    --offwhite: #F2F2F2;
    --overlay: rgba(0, 0, 0, 0.55);
}

/* ------------------------------
   GLOBAL STYLES
------------------------------ */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--offwhite);
    color: var(--black);
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

/* ------------------------------
   NAVIGATION BAR (TRANSPARENT)
------------------------------ */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    z-index: 10;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--gold);
}

nav a.active {
    border-bottom: 2px solid var(--olive);
    padding-bottom: 3px;
}

/* ------------------------------
   HERO SECTION (MEDIUM HEIGHT)
------------------------------ */
.hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-logo {
    width: 320px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin: 10px 0;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* CTA BUTTON */
.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: var(--olive);
    color: white;
}

/* ------------------------------
   SERVICES SECTION
------------------------------ */
.services {
    padding: 60px 40px;
    text-align: center;
}

.services h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background-color: white;
    border: 2px solid var(--gold);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: brightness(0.75); /* tactical darker tone */
}

.service-card h3 {
    background-color: var(--olive);
    color: white;
    padding: 12px;
    margin: 0;
}

.service-card p {
    padding: 15px;
    font-size: 0.95rem;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    nav {
        justify-content: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        width: 250px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.service-card {
    background: transparent;
    padding: 0;
}

.services-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
/* Sticky mobile call button */
.sticky-call {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: env(safe-area-inset-bottom, 12px);
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  background: #c59a2a; /* gold CTA */
  color: #0d0d0d;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.sticky-call .call-phone { font-weight: 600; }
@media (min-width: 768px) {
  .sticky-call { display: none; } /* hide on tablet/desktop */
}
/* Reset default body margin so nav isn't clipped */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Nav container: spacing and safe-area support for iPhone notches */
nav {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
  padding: 12px calc(16px + env(safe-area-inset-right));
  padding-left: calc(16px + env(safe-area-inset-left));
  background: transparent;
  z-index: 1000;
  position: relative;
}

/* Make each link easier to tap and avoid clipping */
nav a {
  display: inline-block;
  padding: 8px 10px;
  color: #fff; /* adjust for contrast */
  text-decoration: none;
  line-height: 1;
}

/* If nav overlaps hero image, push hero content down */
.hero {
  padding-top: 12px; /* increase if nav still overlaps */
}

/* Ensure no parent is hiding overflow unexpectedly */
header, .site-header, .hero {
  overflow: visible;
}
/* Logo: ensure transparent background displays cleanly */
.hero-logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
  width: 120px;
  height: auto;
  object-fit: contain;
  display: inline-block;
}

/* Nav: prevent links from being clipped and support safe areas */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
  padding: 12px calc(16px + env(safe-area-inset-right));
  padding-left: calc(16px + env(safe-area-inset-left));
  position: relative;
  z-index: 1000;
  background: transparent;
}

nav a {
  display: inline-block;
  padding: 8px 10px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

/* If nav overlaps hero, add top padding to hero */
.hero {
  padding-top: 12px;
}

/* Hide sticky mobile CTA on desktop if used */
@media (min-width: 768px) {
  .sticky-call { display: none; }
}
/* Reset default margins */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fix nav layout */
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: transparent;
  position: relative;
  z-index: 1000;
}

/* Style nav links */
nav a {
  color: #fff; /* or #c59a2a for gold */
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

nav a:hover {
  background: rgba(255,255,255,0.1);
}
nav {
  position: sticky;
  top: 0;
  background: rgba(13,13,13,0.95); /* dark semi-transparent */
  backdrop-filter: blur(4px);
}
nav {
  position: relative;
  z-index: 9999;
}
nav {
.hero {
  position: relative;
  z-index: 1;
  padding-top: 80px; /* ensures nav has breathing room */
}
html, body {
  margin: 0;
  padding: 0;
}
nav a {
  color: #ffffff;
  font-weight: 600;
  padding: 8px 12px;
  text-decoration: none;
}
/* NAVIGATION FIX */
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding: 20px 30px;
  position: relative;
  z-index: 9999;
  background: transparent;
}

nav a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Ensure hero doesn't cover nav */
.hero {
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

/* Reset margins to prevent clipping */
html, body {
  margin: 0;
  padding: 0;
}



