:root {
  --light-blue: #38b6ff; /* 56, 182, 255 */
  --light-blue-emphasis: rgb(34, 143, 206);
  --light-blue-subtle: rgb(180, 228, 255);
  --red: #cf0025; /* 207, 0, 37 */
  --red-emphasis: #a5001e;
  --red-subtle: #f35874;
}

body {
  background: #333;
  color: #fff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.navbar {
  border-bottom: #6c757d 3px solid;
  opacity: 1;
}

/* Colors */
.black {
  color: #000;
}
.bg-black {
  background-color: #000;
}
.light-blue {
  color: var(--light-blue);
}
.bg-light-blue {
  background-color: var(--light-blue);
}
.red {
  color: var(--red);
}
.bg-red {
  background-color: var(--red);
}

/* Buttons */
.btn-light-blue {
  background-color: var(--light-blue);
  color: #fff;
  border: solid 1px #fff;
}
.btn-red {
  color: #fff;
  background-color: var(--red);
  border-color: var(--red);
  font-weight: 650;
}

/* Navbar */
.navbar {
  border-bottom: none;
  padding: 1rem 1rem;
  font-weight: 650;
}
#main-nav h3 {
  font-weight: 800;
}
#main-nav a {
  font-weight: 650;
}

/* Home */
#home-section {
  background: url(../img/Gemini_Generated_Image_vgw64fvgw64fvgw6.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 700px;
}

#home-section .dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 700px;
  background-color: rgba(0, 0, 0, 0.3);
}

#home-section .home-inner {
  padding-top: 250px;
}

#home-section h1 {
  font-weight: 900;
  font-size: 5em;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #000;
}
#home-section h3 {
  font-weight: 700;
  font-size: 2em;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
}
#home-section .btn {
  font-weight: 620;
  font-size: 1.5em;
  padding: 0.5em 0.75em;
}
#home-section-mobile {
  margin-top: 75px;
  background: url(../img/Gemini_Generated_Image_vgw64fvgw64fvgw6.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: local;
  background-position: 0px 0px;
}
#home-section-mobile h1,
#home-section-mobile h3 {
  font-weight: 700;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
}

/* About */
#about {
  position: relative;
  top: -60px;
}
#about-head-section h3 {
  font-weight: 700;
}

/* Services */
#services {
  position: relative;
  top: -60px;
}
@media (max-width: 768px) {
  #services-section .col-lg-6 {
    margin: 5px 0;
    padding: 5px 5px 5px 10px;
  }
  #services-section h5 {
    font-size: 1rem;
  }
  #services-section div.p-4 {
    padding: 0.5rem !important;
  }
}

/* Footer */
#main-footer {
  font-weight: 600;
}
#main-footer a {
  color: var(--light-blue);
}
#main-footer img {
  max-height: 100px;
}
