/* =========================================================
   GLOBAL VARIABLES
========================================================= */

:root {
  --accent: #7A8F7B;
  --black: #000000;
  --white: #ffffff;
  --text: #1f1f1f;
  --muted-text: #555555;
  --soft-bg: #f8faf8;
  --border-soft: rgba(122, 143, 123, 0.18);

  --radius-md: 20px;
  --radius-lg: 28px;

  --shadow-soft:
    0 1px 2px rgba(0,0,0,0.04),
    0 10px 28px rgba(0,0,0,0.06),
    0 20px 60px rgba(0,0,0,0.04);

  --shadow-strong:
    0 24px 70px rgba(0,0,0,0.35);
}


/* =========================================================
   BASE / RESET
========================================================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h4,
p,
li,
a {
  font-family: "Montserrat", Arial, sans-serif;
}

h1 {
  font-size: clamp(3.25rem, 8vw, 5.25rem);
  color: var(--white);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

h4 {
  font-size: 1.05rem;
}

p,
li {
  line-height: 1.7;
}


/* =========================================================
   BUTTONS
========================================================= */

.nav-button,
.button1,
.footer-button {
  display: inline-block;
  padding: 0.7rem 1.1rem;

  background: var(--accent);
  color: var(--white);

  border: none;
  border-radius: 999px;

  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.button1 {
  width: 150px;
  margin-top: 15px;
  text-align: center;
}

.nav-button:hover,
.nav-button:focus,
.button1:hover,
.button1:focus,
.footer-button:hover,
.footer-button:focus {
  background: var(--black);
  transform: translateY(-1px);
}


/* =========================================================
   HEADER / NAVIGATION
========================================================= */

.site-header {
  padding: 1rem;
  background: var(--white);
}

.nav-bar {
  margin: 0 auto;
  padding: 0.85rem 1.2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  background: var(--white);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: max-content;
}

.logo-wrap {
  width: clamp(220px, 24vw, 400px);

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.shr_hero_wrapper {
  width: calc(100% - 2rem);
  min-height: 620px;
  margin: 0 auto;
  padding: clamp(8rem, 15vw, 18rem) 2rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  border-radius: var(--radius-md);

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../Images/MtShasta.jpg");

  background-size: cover;
  background-position: center;
}

.shr_hero_wrapper h1 {
  margin: 0;
}

.shr_hero_wrapper img {
  width: min(320px, 80%);
  margin-bottom: 1.5rem;
}


/* =========================================================
   MOUNTAIN ICON
========================================================= */

.mountain_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.mountain_icon img {
  width: 120px;
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services_grid {
  background-color: var(--black);
  padding: 90px 24px;
}

.services_offered1,
.services_offered2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.services_offered1 {
  margin-top: 100px;
  margin-bottom: 2rem;
}

.services_offered2 {
  margin-bottom: 2rem;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;

  min-height: 320px;
  padding: 2rem;

  background:
    linear-gradient(
      180deg,
      var(--white) 0%,
      var(--soft-bg) 100%
    );

  border-radius: 24px;
  border: 1px solid var(--border-soft);

  cursor: pointer;
  box-shadow: var(--shadow-strong);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122,143,123,0.75);

  background:
    linear-gradient(
      145deg,
      rgba(122,143,123,0.22),
      rgba(255,255,255,0.95)
    );
}

.card-content {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content ul {
  margin: 0;
  padding-left: 1.2rem;

  color: var(--muted-text);
  line-height: 1.5;
}

.card-image {
  width: clamp(120px, 16vw, 200px);
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  max-width: 175px;
  height: auto;
  object-fit: contain;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why_choose_us_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 50px);

  margin-top: 100px;
  padding: clamp(2rem, 5vw, 4rem);

  color: var(--white);
  border-radius: var(--radius-md);

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/Images/Siskiyou_dusk.jpg");

  background-size: cover;
  background-position: center;

  box-shadow: var(--shadow-soft);
}

.why_choose_us,
.why_choose_us_info1,
.why_choose_us_info2 {
  flex: 1;
}

.why_choose_us p {
  line-height: 1.6;
}

.whycard1 {
  margin-top: 25px;
  padding: 20px;

  border-radius: 20px;

  background:
    linear-gradient(
      160deg,
      rgba(255,255,255,0.07) 0%,
      rgba(120,140,170,0.06) 30%,
      rgba(20,24,30,0.35) 72%,
      rgba(255,255,255,0.015) 100%
    );

  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}


/* =========================================================
   ICONS
========================================================= */

.icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  margin-bottom: 30px;

  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.09);

  color: var(--accent);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  margin-top: 100px;
  padding: 2.4rem 1.2rem 1.4rem;

  background: var(--white);
  color: var(--black);
  border-top: 1px solid rgba(0,0,0,0.08);

  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.footer-container {
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-logo-wrap {
  width: 280px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;

  color: rgba(0,0,0,0.68);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.3rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;

  padding-top: 1.2rem;

  color: rgba(0,0,0,0.54);
  font-size: 0.88rem;
}


/* =========================================================
   RESPONSIVE: TABLETS AND BELOW
   Stack large content sections
========================================================= */

@media (max-width: 1000px) {
  .services_offered1,
  .services_offered2,
  .why_choose_us_wrapper,
  .footer-top,
  .footer-brand,
  .footer-bottom {
    display: flex;
    flex-direction: column;
  }

  .services_offered1,
  .services_offered2 {
    gap: 2rem;
  }

  .why_choose_us_wrapper {
    align-items: stretch;
  }

  .why_choose_us,
  .why_choose_us_info1,
  .why_choose_us_info2 {
    width: 100%;
  }

  .footer-top,
  .footer-brand,
  .footer-bottom {
    align-items: flex-start;
  }
}


/* =========================================================
   RESPONSIVE: MOBILE NAV
========================================================= */

@media (max-width: 850px) {
  .nav-bar {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .nav-brand,
  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.9rem;
  }

  .nav-button {
    width: 100%;
    text-align: center;
  }

  .logo-wrap {
    width: min(320px, 90%);
  }
}


/* =========================================================
   RESPONSIVE: MOBILE
========================================================= */

@media (max-width: 700px) {
  .shr_hero_wrapper {
    width: calc(100% - 1rem);
    min-height: 480px;
    padding: 5rem 1.25rem;
    border-radius: 16px;
  }

  .shr_hero_wrapper h1 {
    font-size: 2.75rem;
  }

  .services_grid {
    padding: 4rem 1.25rem;
  }

  .services_offered1 {
    margin-top: 2rem;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 1.5rem;
  }

  .card-content ul {
    text-align: left;
  }

  .card-image {
    width: 140px;
  }

  .button1,
  .nav-button,
  .footer-button {
    width: 100%;
    text-align: center;
  }
}
