/* =====================================================
  Mauler Contracting LLC
  Triple Fine Boot Stitch with Collage Restored
  ===================================================== */

/* === BASE BODY === */
body {
  margin: 0;
  background-color: #4f2e13; /* dark leather */
  color: #fff;
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  text-align: center;
  overflow-x: hidden;
}

/* === HEADER === */
.site-header {
  background: url("images/backgroundfooterheader.png") no-repeat center/cover;
  padding: 20px 5%;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}
.logo img {
  height: 300px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
@media (max-width: 760px) {
  .logo img {
    height: 45px;
    max-width: 120px;
  }
}
.header-right {
  text-align: left;
}
.company-name {
  font-size: 28px;
  margin: 0;
}
.address,
.phone,
.email {
  margin: 2px 0;
}

/* === NAVBAR === */
.navbar ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 10px;
  margin: 10px 0 0;
  background: rgba(0, 0, 0, 0.3);
}
.navbar li {
  margin: 5px 15px;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.navbar a:hover {
  color: #4ccbf6;
}

/* === STITCHING (HEADER/FOOTER TRANSITIONS) === */
.stitch-line {
  width: 100%;
  height: 6px;
  position: relative;
  background: transparent;
}
.stitch-line::before,
.stitch-line::after,
.stitch-line span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  border-top: 1px dashed #d3a255;
}
.stitch-line::before {
  top: 0;
}
.stitch-line::after {
  top: 2px;
}
.stitch-line span {
  top: 4px;
}

/* === MAIN WRAPPER === */
.main-wrapper {
  position: relative;
  background-color: rgba(146, 105, 52, 0.82); /* tan */
  margin: 0 auto;
  padding: 40px 0;
  max-width: 1200px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

/* TRIPLE STITCH BORDER AROUND MAIN CONTENT */
.triple-stitch,
.triple-stitch::before,
.triple-stitch::after {
  content: "";
  position: absolute;
  border: 1px dashed #b69747;
  border-radius: 3px;
  pointer-events: none;
}
.triple-stitch {
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.triple-stitch::before {
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
}
.triple-stitch::after {
  top: 6px;
  bottom: 6px;
  left: 6px;
  right: 6px;
}

/* === SECTIONS === */
.section {
  padding: 60px 10%;
}
.section h2 {
  border-bottom: 2px solid #ae6e07;
  color: #e7e5e2;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === IMAGE COLLAGE / SLIDER === */
.slider {
  position: relative;
  overflow: hidden;
  background-color: #efefef;
  border: 4px solid #d3a255;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin: 40px auto;
  max-width: 1000px;
}
.slides img {
  width: 100%;
  height: 500px;
  display: none;
  object-fit: cover;
}
.slides img.active {
  display: block;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
}
.prev:hover,
.next:hover {
  background-color: rgba(233, 233, 231, 0.8);
}
.prev {
  left: 15px;
}
.next {
  right: 15px;
}

/* === INTERNAL DIVIDERS === */
.divider {
  border-top: 3px solid #4f2e13;
  width: 80%;
  margin: 0 auto;
}

/* === FORM === */
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80%;
  max-width: 600px;
}
.contact-section input,
.contact-section textarea {
  width: 100%;
  font-size: 18px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.contact-section button {
  background-color: #353a45;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 20px;
  border-radius: 4px;
  cursor: pointer;
}
.contact-section button:hover {
  background-color: #4d5666;
}

/* === FOOTER === */
.site-footer {
  background: url("images/logo.JPG") no-repeat center/cover;
  color: #fff;
  padding: 40px 20px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  height: 70px;
  margin-bottom: 10px;
}
.footer-content h3 {
  font-size: 26px;
  margin: 5px 0;
}
.footer-content p {
  margin: 3px 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  .header-right {
    text-align: center;
  }
  .section {
    padding: 40px 5%;
  }
  .slides img {
    height: 300px;
  }
}
/* =====================================================
  Mauler Contracting LLC — Weathered 3D Leather Upgrade
  ===================================================== */

/* === Add leather-like texture and light grain === */
body {
  background: radial-gradient(circle at top left, #5b3820 0%, #3a2010 100%),
    url("images/backgroundfooterheader.png"); /* optional texture overlay */
  background-blend-mode: overlay;
  background-size: cover;
  background-attachment: fixed;
  color: #f8f3eb;
}

/* === Slight lighting gradient for depth === */
.main-wrapper {
  background: linear-gradient(
    180deg,
    rgba(150, 102, 50, 0.9) 0%,
    rgba(110, 78, 35, 0.88) 100%
  );
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6),
    inset 0 3px 6px rgba(255, 255, 255, 0.1),
    inset 0 -4px 6px rgba(0, 0, 0, 0.6);
}

/* === Weathered edges and subtle vignette === */
.section {
  background: linear-gradient(
    180deg,
    rgba(146, 105, 52, 0.88) 50%,
    rgba(110, 70, 30, 0.92) 100%
  );
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
  border-radius: 6px;
}

/* === Text & color balance pop === */
.section h2 {
  color: #efeeeb; /* warmer gold */
  text-shadow: 1px 1px 2px #2a1400;
}
.section p,
.section li {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* === Stitching glow for thread realism === */
.triple-stitch,
.triple-stitch::before,
.triple-stitch::after,
.stitch-line::before,
.stitch-line::after,
.stitch-line span {
  border-color: #d8c37a; /* softer gold */
  filter: drop-shadow(0 0 1px rgba(255, 229, 150, 0.6))
    drop-shadow(0 0 3px rgba(255, 229, 120, 0.25));
  opacity: 0.95;
}

/* === Collage elevation with embossed border === */
.slider {
  border: 3px solid rgba(211, 162, 85, 0.8);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5),
    inset 0 1px 4px rgba(255, 255, 255, 0.2);
}

/* === Buttons and input areas weathering === */
input,
textarea {
  background-color: rgb(164, 163, 163);
  color: #fff;
  backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15),
    inset 0 -2px 4px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
input:focus,
textarea:focus {
  border-color: #d4a55a;
  box-shadow: 0 0 6px rgba(245, 244, 244, 0.5),
    inset 0 0 6px rgba(255, 255, 200, 0.3);
  outline: none;
}

/* === Buttons with dimensional pop === */
button {
  background: linear-gradient(180deg, #906013 0%, #b5843b 100%);
  box-shadow: inset 0 2px 4px rgba(11, 11, 11, 0.3),
    0 4px 6px rgba(0, 0, 0, 0.5);
  color: #2b1805;
  transition: transform 0.1s ease-in;
}
button:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.3),
    0 6px 12px rgba(0, 0, 0, 0.6);
}

/* === Footer gloss and scuff === */
.site-footer {
  background: linear-gradient(
      180deg,
      rgba(80, 42, 17, 0.95) 0%,
      rgba(45, 20, 9, 0.95) 100%
    ),
    url("images/backgroundfooterheader.png");
  background-size: cover;
  box-shadow: inset 0 8px 16px rgba(0, 0, 0, 0.8),
    0 -6px 20px rgba(0, 0, 0, 0.6);
}
.footer-content h3,
.footer-content p {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
