/* =========================================
   Base Styles & Typography
========================================= */

/*--== Body ==--*/
body {
  min-height: 100vh;
  
  background-position: center;
  color: white;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

@media (min-width: 601px) {
  body {
    background-image: url(bg-stars.png);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media (max-width: 600px) {
  body {
    background-image: url(bg-phone.png);
    background-attachment: scroll;
    background-size: cover;
  }
}

p {
  font-size: 18px;
}

h1 {
  text-shadow: 0px 2px 5px black, 0px 2px 5px rgb(27, 27, 27);
}

h5 {
  color: #FFB91F;
} 

.service-p-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Service page paragraph width */
.service-p-col .service-p {
  width: 100%;
  max-width: 800px;
}

/* =========================================
   Layout Containers
========================================= */

.contact-body {
  width: 100%;
  max-width: 550px;
}

.learn {
  width: 50%;
}

.about {
  width: 25%;
}

.send {
  width: 50%;
}

/* Privacy page body width */
.privacy.body-content {
  max-width: 800px;
}

/* =========================================
   Links / Text Styles
========================================= */

.container a {
  color: white;
  text-decoration: none;
}

.container a:hover {
  color: rgb(200, 200, 200);
}

.contactLink h4 a {
  color: #FFB91F;
  text-decoration: none;
  transition: all ease 0.3s;
}

.contactLink h4 a:hover {
  color: rgb(255, 150, 50);
  text-shadow: 0px 1px 10px #FFB91F;
}

/* =========================================
   Images & Backgrounds
========================================= */

/* Global img fallback radius */
main img {
  border-radius: 8px;
  border: 2px solid rgba(192, 131, 0, 0.24);
  box-shadow: 0px 2px 10px black;
}

/* Circular code image block */
.bg-code-img {
  border-radius: 50%;
  max-width: 250px;
  box-shadow: 0px 2px 10px black;
  border: 2px solid rgba(192, 131, 0, 0.466);
}

/* Home page image section */
.home-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.home-img img {
  border-radius: 50%;
  max-width: 500px;
  width: 100%;
  border: 2px solid rgba(192, 131, 0, 0.24);
  box-shadow: 0px 2px 10px black;
}

/* =========================================
   Responsive Layout
========================================= */

@media (max-width: 768px) {
  .privacy.body-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about {
    width: 50%;
  }
}

/* =========================================
   Navigation Bar
========================================= */

/*--== NavBar ==--*/
nav {
  background-image: url(bg-sun-color.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 5px #C46A28;
  border-bottom: 1px solid rgba(192, 131, 0, 0.24);
}

@media (max-width: 766px) {
.offcanvas {
  background: linear-gradient(to bottom right, #C46A28, #F1B55B);
}
}

.dropdown-menu {
  background: linear-gradient(to bottom right, #C46A28, #F1B55B);
  border: 1px solid rgba(192, 131, 0, 0.24);
}

.dropdown-item {
  color: #FFB91F;
  text-shadow: 0px 1px 3px black;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: rgb(255, 150, 50);
}

nav .nav-link {
  color: #FFB91F;
  text-shadow: 0px 1px 3px black;
}

nav .nav-link:hover {
  color: rgb(255, 150, 50);
}

nav .nav-item .active-nav {
  color: rgb(255, 150, 50);
} 

nav .nav-item .active-nav:hover {
  color: #FFB91F;
}

/* Active dropdown item */
.drop-active {
  color: rgb(255, 150, 50);
}

.drop-active:hover {
  color: #FFB91F;
}

/*--== Dropdown Menu Hover (Desktop) ==--*/
@media (min-width: 768px) {
  .navbar .nav-item.btn-group:hover > .dropdown-menu {
    display: block !important;
    position: absolute;
    top: 100%;
    margin-top: 0px;
  }
}

/*--== Dropdown Toggle Margin Fix ==--*/
.dropdown-toggle {
  margin-left: -10px;
}

/* Navbar link alignment */
.navbar .nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: bold;
}

/* =========================================
   Footer
========================================= */

/*--== Footer ==--*/
footer {
  margin-top: auto;
  border-top: 1px solid rgba(192, 131, 0, 0.24);
  background: linear-gradient(to top, #0d182679, #0a0f1979);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);


}

footer a {
  color: rgb(68, 68, 68);
  text-decoration: none;
}

footer a:hover {
  color: rgb(49, 49, 49);
}

/* Active footer links */
.activeLink .active {
  color: rgb(49, 49, 49);
}

.activeLink .active:hover {
  color: rgb(68, 68, 68);
}

footer p {
  color: rgb(68, 68, 68);
}

.location {
  color: rgb(68, 68, 68);
}

footer img {
  width: 80%;
  max-width: 125px;
}

.copyright {
  color: rgb(68, 68, 68);
}
