:root {
  --orange: #ee5e46;
  --dark: #222;
  --muted: #7d7d7d;
  --max-width: 1100px;
  --radius: 26px;
  --container-padding: 20px;
  --hero-height: 85vh;
}

/* basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: #222;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}

/* container */
.container {
  width: calc(100% - 40px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding) 0;
}

.bg {
  background-image: url("./images/Laptop.jpg");
  background-size: cover;
  background-position: center center;
}

.bg-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(61, 28, 17, 0.9),
    /* dark burnt orange on the left */ rgba(34, 34, 34, 0.9) 55%
      /* fades into your original dark */
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 13%;
}

/* header */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 56px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.brand {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin-left: -18%;
}

.main-nav {
  margin-right: -18%;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin-left: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

/* HERO */
.hero {
  height: var(--hero-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 56px;
}

.hero-content {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}
.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  padding-top: 20%;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.orange-line {
  border: 1px solid var(--orange);
  width: 6%;
}

.lead {
  padding-top: 3%;
  max-width: 700px;
  margin: 10px auto 28px;
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 26px;
  text-decoration: none;
  font-weight: bolder;
  letter-spacing: 0.6px;
  font-size: 13px;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.08);
}
.btn-secondary {
  background: #fff;
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  font-weight: bolder;
}

/* Orange callout */
.callout {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 60px 0;
  width: 100%;
}

.callout h2 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 700;
}

.white-line {
  border: 1px solid #fff;
  width: 3%;
  /* margin-bottom: 12px; */
  margin: 0 auto;
}
.callout-text {
  max-width: 820px;
  margin: 12px auto 20px;
  opacity: 0.95;
  font-size: 20px;
}

/* Features */
.section-title {
  text-align: center;
  margin: 48px 0 18px;
  font-weight: 600;
  color: #333;
  font-size: 25px;
}

.feature-line {
  border: 1px solid var(--orange);
  width: 4%;
  margin: 0 auto 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 18px 0 60px;
}
.feature {
  text-align: center;
  padding: 10px;
}
.fa {
  font-size: 40px;
  margin-bottom: 12px;
  color: var(--orange);
}
.feature h4 {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 16px;
}
.feature p {
  color: var(--muted);
  font-size: 17px;
  font-weight: bold;
}

/* Gallery */

#gallery img {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  display: block;
}
/* Dark CTA */
.dark-cta {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 40px 0;
}

.dark-cta h3 {
  font-weight: bold;
  margin-bottom: 40px;
}
.btn-pill {
  background: #fff;
  color: #222;
  border-radius: 32px;
  padding: 10px 22px;
  display: inline-block;
  font-weight: bolder;
  margin-top: 14px;
}

/* Contact */
.contact {
  padding: 60px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.contact h3 {
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-text {
  color: var(--muted);
  margin-bottom: 20px;
  width: 50%;
}
.contact-cards {
  display: flex;
  gap: 200px;
}
.card {
  display: flex;
  /* gap: 14px; */
  align-items: center;
  padding: 14px 18px;
}
.card-icon .fa {
  font-size: 30px;
  color: #333;
}
.strong {
  font-weight: 700;
  margin-top: 6px;
}

.mail {
  color: var(--orange);
}

/* Responsive */
@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content h1 {
    font-size: 34px;
  }
}
@media (max-width: 540px) {
  .main-nav {
    display: none;
  }
  .container {
    width: calc(100% - 30px);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 26px;
  }
  .lead {
    font-size: 14px;
  }
  .hero {
    height: 60vh;
  }
}
