html,
body {
  margin: 0;
  padding: 0;
}

body {
  scroll-behavior: smooth;
  font-family: Arial, sans-serif;
}

h2 {
  margin-top: 30px;
}

textarea {
  resize: none;
}

button {
  margin-bottom: 15px;
}

#success-msg {
  color: #000;
  padding: 10px;
  display: none;
  font-size: 1.3rem;
  text-align: center;
}

#contactMe {
  width: 40%;
  display: block;
  padding: 0 25px;
  text-align: center;
  margin: 30px auto;
  border-radius: 7px;
  border: 2px solid #f1f1f1;
}

#contact h2 {
  margin-top: 60px;
}

#contactMe label {
  width: 100%;
  margin-top: 20px;
  text-align: left;
}

#foot {
  width: 100%;
  padding: 7px 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 12px;
  color: #f3ecd1;
  background-color: #000;
}

#foot p {
  margin: 0;
  padding: 5px;
}

#foot a {
  color: #f3ecd1;
  text-decoration: none;
}

#foot a:hover {
  color: #f3ecd1;
  transform: scale(1.1);
}

.field-space {
  margin: 15px 0;
}

.centerMe {
  display: block;
  text-align: center;
}

.shopcart-icon {
  margin-left: 25px;
  width: 48px;
  height: auto;
}

.btn-style {
  width: 150px;
  margin: 20px 0;
}

.site-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: fixed;
  background: #000;
}

.header-inner {
  /* max-width: 1400px; */
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  justify-content: space-between;
}

.site-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-brand img {
  display: block;
  height: 95px;
  width: auto;
  max-width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 30px;
  margin-right: 35px;
  padding-left: 0 34px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #f3ecd1;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  /* white-space: nowrap; */
}

.main-nav a:hover {
  color: #ffffff;
  padding-bottom: 3px;
  border-bottom: 2px solid #fff;
}

/* HERO / FIXED BACKGROUND */
.hero-section {
  /* min-height: 100vh; */
  min-height: calc(100vh - 80px); /* match navbar height */
  background: url("../images/pnw_scene_r2.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OR LIGHT OVERLAY */
.hero-overlay {
  width: 100%;
  min-height: 100vh;
  background: rgba(255, 255, 255, 0.6); /* change to darker if needed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;
  box-sizing: border-box;
}

/* TEXT INSIDE HERO */
.hero-content {
  max-width: 900px;
  text-align: center;
  color: #111;
}

.hero-panel {
  width: 60%;
  display: block;
  text-align: center;
  /* align-items: center;
  justify-content: center; */
}

.hero-panel h2 {
  margin-bottom: 15px;
}

.hero-panel p {
  width: 100%;
  text-align: center;
  /* align-items: center; */
  /* justify-content: center; */
  font-size: clamp(0.8rem, 2vw, 1.15rem);
  line-height: 1.5;
}

/* SCROLLING CONTENT SECTIONS */
.content-section {
  background: #ffffff;
  padding: 80px 20px;
  position: relative;
  z-index: 2;
}

.content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.alt-section {
  background: #f3f3f3;
}

/* Large laptop / small desktop */
@media (max-width: 1280px) {
  .header-inner {
    padding: 12px 18px;
    gap: 16px;
  }

  .site-brand img {
    height: 82px;
  }

  .main-nav {
    gap: 18px;
    padding-left: 18px;
  }

  .main-nav a {
    font-size: 1rem;
  }
}

/* Tight laptop range */
@media (max-width: 1080px) {
  .site-brand img {
    height: 72px;
  }

  .main-nav {
    gap: 14px;
    padding-left: 14px;
  }

  .main-nav a {
    font-size: 0.95rem;
  }
}

/* Tablet and below */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
  }

  .site-brand {
    justify-content: center;
  }

  .site-brand img {
    height: auto;
    width: min(100%, 360px);
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    padding-left: 0;
    gap: 12px 18px;
  }

  .main-nav a {
    font-size: 1rem;
  }
}

/* Phones */
@media (max-width: 480px) {
  .header-inner {
    padding: 10px 12px;
  }

  .site-brand img {
    width: min(100%, 300px);
  }

  .main-nav {
    gap: 10px 14px;
  }

  .main-nav a {
    font-size: 0.92rem;
  }
}
