@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Limelight&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ms+Madi&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Herr+Von+Muellerhoff&display=swap");

:root {
    /* --gold: rgb(243, 207, 0); */
    --gold: #d79a2c;
    --silver: #555454;
    --platinum: #c4c2c2ce;
    --slate: #2f303a;
  }

  * {
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 0;
  }

  body {
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  /* HEADER SECTION */

  .header-container {
      color: white;
      background-color: var(--slate);
      display: flex;
      align-items: center;
      justify-content:space-between;
      height: 20%;
      padding: 1rem;
      border-bottom: solid .25rem var(--gold);
  }

  .logo {
      display: flex;
  }

  .logo-img {
    margin-left: 10px;
    display: flex;
    align-items: center;
    height: 25%;
    width: 25%;
  }

  .logo-title {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-left: -30px;
    font-size: 1.5rem;
    font-family: "Limelight", sans-serif;
  }

  .logo-sub-title {
    display: flex;
    align-items: center;
    margin-top:80px;
    margin-left: -188px;
    font-size: 1.2rem;
    font-family: "Ms Madi", cursive;
  }

  /* TOP NAV */

  .top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
  }

  .nav-links .current {
    color: var(--gold); 
  }

  .nav-links ul {
    margin: 0;
    padding: 0;
    display: flex;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links li a {
    text-decoration: none;
    padding: .75rem;
    display: block;
    color: white;
  }

  .nav-links a:active {
    color: var(--platinum); 
    font-style: italic;
  }

  .nav-links a:hover {
    color: var(--gold); 
    text-decoration: underline;
  }

    .toggle-nav-btn {
    position: absolute;
    top: .75rem;
    right: 2rem;
    font-size: 2rem;
    flex-direction: column;
    justify-content: space-between;
    width: 1.8rem;
    height: 1.3rem;
    display: none;
  }

  .fas {
    color: var(--gold);
  }

  .fas:hover {
    color: var(--platinum); 
    text-decoration: none;
  }
  .fas:active {
    color: #c4c2c2f5; 
  }


  /* CONTENT SECTION */

  .main-container {
    background-color: white;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 3rem;
  }

  /* ? WHAT-WE-DO */

  .what-we-do {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .web-dev-section {
    display: flex;
    flex-direction: column;
    margin-right: 2rem;
  }

  .web-host-section {
    display: flex;
    flex-direction: column;
    margin-right: 2rem;
  }

  .domain-names-section {
    display: flex;
    flex-direction: column;

  }

  .web-dev-img {
    width:100px;
    height:100px;
  }

  .web-host-img {
    width:100px;
    height:100px;
  }

  .dom-name-img {
    width:100px;
    height:100px;
  }

  .web-dev-text {
    padding-top: 1rem;
    font-size: 1.2rem;
  }

  .web-host-text {
    padding-top: 1rem;
    font-size: 1.2rem;
  }

  .dom-name-text {
    padding-top: 1rem;
    font-size: 1.2rem;
  }

   /* ? LEFT-BOX */

.left-box {
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-right: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.business-title {

}

.business-sub-title {

}

.business-location {
  font-family: "Ms Madi", cursive;
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
}


  /* ? RIGHT-BOX */

  .right-box {
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 5rem;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2.5rem 3rem 3rem;
    border-right: solid .5rem rgba(185, 184, 184, 0.418);
    border-bottom: solid .5rem rgba(219, 217, 217, 0.418);
    border-radius: 0.5rem;
    /* background-color: var(--platinum); */
    background-image:
    -webkit-repeating-linear-gradient(top,
      hsla(0,0%,100%,0) 0%,
      hsla(0,0%,100%,0) 3%,
      hsla(0,0%,100%,.1) 4.5%),
    -webkit-repeating-linear-gradient(top, 
      hsla(0,0%,0%,0) 0%,
      hsla(0,0%,0%,0) 2%,
      hsla(0,0%,0%,.03) 2.5%),
    -webkit-repeating-linear-gradient(top,
      hsla(0,0%,100%,0) 0%,
      hsla(0,0%,100%,0) 0.6%,
      hsla(0,0%,100%,.15) 1.2%),
    linear-gradient(80deg,
      #a6a6a6 0%,
      #d9d9d9 45%,
      #e0e0e0 55%,
      #e0e0e0 65%,
      #d9d9d9 75%,
      #a6a6a6 100%);
}

  /* ? CALL TO ACTION SECTION */

.call-to-action h1 {
  font-size: 3.125rem;
}

.call-to-action h2 {
  font-size: 2.25rem;
}

.call-to-action h3 {
  font-size: 1.25rem;
}

.call-to-action .cursive {
  font-family: "Ms Madi", cursive;
  color: black;
  margin-bottom: 2.5rem;
  text-align: center;
}

.call-to-action .sub-title {
  font-family: Montserrat, sans-serif;
  color: black;
  margin: 2.5rem 0 1.5rem;
  text-align: center;
}

.call-to-action .title {
  font-family: "Limelight", sans-serif;
  padding-bottom: 0.25rem;
  background: linear-gradient(90deg, #020202, #ffffff, #030303);
  background-color: var(--silver);
  background-repeat: no-repeat;
  background-size: 80%;
  animation: animate 3s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #ffffff00;
  font-size: 3em;
  text-align: center;
}

@keyframes animate {
  0% {
    background-position: -500%;
  }
  100% {
    background-position: 500%;
  }
}

.button{
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  text-align: center;
  font-family: "Limelight", sans-serif;
  font-size: 1.8em;
  text-decoration: none;
  color: var(--silver);
  padding: 1rem 1rem;
  border: 0;
  border-radius: 0.5rem;
  box-shadow: 0 3px 0 rgba(42, 42, 42, 0.5);
  transition: all 0.2 ease;
  overflow: hidden;

  background: conic-gradient(
    #edc800,
    #e3b600,
    #f3cf00,
    #ffe800,
    #edc800,
    #e3b600,
    #f3cf00,
    #ffe800,
    #edc800,
    #e3b600,
    #f3cf00,
    #ffe800,
    #edc800,
    #e3b600,
    #f3cf00,
    #ffe800
  );
}

.btn:focus {
  outline: 0;
}

.btn:hover {
  color: rgba(0, 0, 0, 0.774);
  cursor: pointer;
  background: conic-gradient(
    #d7d7d7,
    #c3c3c3,
    #cccccc,
    #c6c6c6,
    #d7d7d7,
    #c3c3c3,
    #cccccc,
    #c6c6c6,
    #d7d7d7,
    #c3c3c3,
    #cccccc,
    #c6c6c6,
    #d7d7d7,
    #c3c3c3,
    #cccccc,
    #c6c6c6
  );
}

.btn:active {
  transform: scale(0.98);
  box-shadow: 1.5px 1.5px 0 rgba(66, 66, 66, 0.35);
}

  /* FOOTER SECTION */

  footer {
    margin-top: auto;
  }

  .footer-container {
    color: white;
    background-color: var(--slate);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: solid .15rem var(--gold);
    padding: 1rem;
  }

  /* FOOTER NAV */

  .footer-nav {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 2rem;
  }

  .fa-brands{
    cursor: pointer;
    color: white; 
    text-decoration: none;
    font-size: 1.5rem;
    margin-right: 1rem;
  }

  .fa-brands a  {
    text-decoration: none;
  }

  .fa-brands:visited  {
    color: white; 
    text-decoration: none;
  }

  .fa-brands:hover {
    color: var(--gold); 
    text-decoration: none;
}
  .fa-brands:active {
    color: var(--platinum); 
    border-bottom: solid .1rem var(--gold);
}

/* MEDIA QUERIES */


  /* ? 731-1090 SCREEN SIZE */

  @media screen and (max-width: 1090px) and (min-width: 731px) {

    .what-we-do {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
  }

/* ? 840 SCREEN SIZE */

@media screen and (max-width: 840px) {
  .logo-title {
    display:flex;
    top: 1rem;
    margin-left: -.5%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .logo-sub-title {
    display: flex;
  }
}

/* ? 730 SCREEN SIZE */

@media screen and (max-width: 730px) {
  .main-container{
    flex-direction: column;
    padding: 1rem;
  }

  /* 730 HEADER */

.header-container {
  display: inline;
  justify-content: center;
}

  .logo-img {
    display: flex

  }

  .logo-title {
    display:flex;
    top: 1rem;
    margin-left: -12.5%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .logo-sub-title {
    display: flex;
  }

    /* 730 NAV */ 

  .top-nav{
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    width: 100%;
  }

  .nav-links ul {
    flex-direction: column;
    width: 100%;
  }

  .nav-links li {
    text-align: center;
  }

   .nav-links.active {
    display: flex;
  }

  .nav-links a:hover{
    color: var(--gold);

    background-color: #555;
  }

  .toggle-nav-btn {
      display: flex;
  }

  

  .what-we-do {
    align-items: flex-start;
  }

  .web-dev-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .web-host-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .domain-names-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .business-location {
    margin-top: .3rem;
    margin-bottom: 3rem;
  }

  .business-title {
    font-size: 3rem;
  }
  
  .business-sub-title {
    font-size: 2.2rem;
  }
  
  .business-location {
    font-family: "Ms Madi", cursive;
    font-size: 2rem;
  }
  

  .web-dev-img {
    width: 5rem;
    height: 5rem;
  }

  .web-host-img {
    width: 5rem;
    height: 5rem;

  }

  .dom-name-img {
    width: 5rem;
    height: 5rem;

  }

  .web-dev-text {
    font-size: 1.2rem;
  }

  .web-host-text {
    font-size: 1.2rem;

  }

  .dom-name-text {
    font-size: 1.2rem;
  }

  .left-box {
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: .5rem;
    text-align: center;
  }

  .right-box {
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2.5rem;
    text-align: center;
  }

  .call-to-action .title {
    font-size: 3.5rem;
  }
    
    .call-to-action .sub-title {
      font-size: 2rem;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    
    .call-to-action .cursive {
      font-size: 2.8rem;
      margin-top: 0;
      margin-bottom: 2rem;
    }

    .btn {
      width: 100%;
    }

    .copyright {
      display: flex;
      margin-right: auto;
    }

  }

  /* ? 415-640 SCREEN SIZE */

  @media screen and (max-width: 640px) and (min-width: 415px) {
    .logo-title {
      display:flex;
      top: 1rem;
      margin-left: -5%;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
  
    .logo-sub-title {
      display: flex;
    }
  }

  /* ? 414px SCREEN SIZE*/

@media screen and (max-width: 414px) {
  .main-container{
    flex-direction: column;
    padding: 1rem;
  }

  /* 414 HEADER */

.header-container {
  display: inline;
  justify-content: center;
}

  .logo-img {
    display: none;

  }

  .logo-title {
    display:flex;
    top: 1rem;
    margin-left: 25%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .logo-sub-title {
    display: flex;
  }

    /* 414 NAV */ 

  .top-nav{
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    width: 100%;
  }

  .nav-links ul {
    flex-direction: column;
    width: 100%;
  }

  .nav-links li {
    text-align: center;
  }

   .nav-links.active {
    display: flex;
  }

  .nav-links a:hover{
    color: var(--gold);

    background-color: #555;
  }

  .toggle-nav-btn {
      display: flex;
  }

  

  .what-we-do {
    align-items: flex-start;
  }

  .web-dev-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .web-host-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .domain-names-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .business-location {
    margin-top: .3rem;
    margin-bottom: 1rem;
  }

  .web-dev-img {
    width: 3rem;
    height: 3rem;
  }

  .web-host-img {
    width: 3rem;
    height: 3rem;

  }

  .dom-name-img {
    width: 3rem;
    height: 3rem;

  }

  .web-dev-text {
    font-size: 1rem;
  }

  .web-host-text {
    font-size: 1rem;

  }

  .dom-name-text {
    font-size: 1rem;
  }

  .left-box {
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: .5rem;
    text-align: center;
  }

  .right-box {
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: .5rem;
    text-align: center;
  }

  .call-to-action .title {
    font-size: 2.8rem;
  }
    
    .call-to-action .sub-title {
      font-size: 1.6rem;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    
    .call-to-action .cursive {
      font-size: 2rem;
      margin-top: 0;
      margin-bottom: 2rem;
    }

    .btn {
      width: 100%;
    }

    .copyright {
      display: none;
    }
    .footer-container {
      justify-content: center
    }   
  }

  /* ? 360px */

@media screen and (max-width: 360px) {

  .main-container{
    flex-direction: column;
    padding: .5rem;
  }

  .header-container {
    padding: 0;
    margin: 0;
  }

  .logo {
    justify-content: flex-start;
  }

  .logo-img {
   display: none;
  }

  .logo-title {
    display:flex;
    top: 1rem;
    margin-left: 15%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .logo-sub-title {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links a:hover{
    color: var(--gold);
    background-color: #555;
  }

  .toggle-nav-btn {
      display: flex;
  }

  .what-we-do {
    align-items: flex-start;
  }

  .web-dev-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .web-host-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .domain-names-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .business-location {
    margin-top: .3rem;
    margin-bottom: 1rem;
  }

  .web-dev-img {
    width: 3rem;
    height: 3rem;
  }

  .web-host-img {
    width: 3rem;
    height: 3rem;

  }

  .dom-name-img {
    width: 3rem;
    height: 3rem;

  }

  .web-dev-text {
    font-size: 1rem;
  }

  .web-host-text {
    font-size: 1rem;

  }

  .dom-name-text {
    font-size: 1rem;
  }

  .left-box {
    margin-top: .5rem;
    margin-bottom: .5rem;
    margin-left: .5rem;
    margin-right: .5rem;
    text-align: center;
    padding: .5rem;
  }

  .right-box {
    margin-top: .5rem;
    margin-bottom: .5rem;
    margin-left: .5rem;
    margin-right: .5rem;
    text-align: center;
    padding: .5rem;
  }

  .call-to-action .title {
    font-size: 2.8rem;
  }
    
    .call-to-action .sub-title {
      font-size: 1.6rem;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    
    .call-to-action .cursive {
      font-size: 2rem;
      margin-top: 0;
      margin-bottom: 2rem;
    }

    .btn {
      width: 100;
    }

    .copyright {
      display: none;
    }
    .footer-container {
      justify-content: center
    }

}
