@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500;600;700;800&family=Inter:wght@200;300;400;500;600;700&display=swap');

/* Copyright fizzdev 2023 */

:root {
    --primary-color: #1F50D4;
    --accent-color: #3E8DE3;
    --secondary-color: #CCD0D8;
    --background-color: #FFFFFF;
    --text-color: #04060D;   
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: var(--text-color);
    background-color: #b6b6b6;
}
  
/* Container 01 */

  .navbar {
    background-color: var(--background-color);
    display: block;
    align-items: center;
    padding: 15px;
    max-height: 60px;
    width: calc(100vw - 30px);
  }
  
  .logo img {
    height: 40px;
    margin-right: 20px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    flex-grow: 1;
    margin: 0;
    padding: 0;
    align-items: flex-start;
}
  
  .nav-links li {
    margin-right: 20px;
  }
  
  .nav-links li:last-child {
    margin-right: 0;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 10px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content li {
    padding: 10px;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
.navbar-inline {
    display: flex;
    align-items: center;
    max-width: 100vw;
    margin: 0 100px;
    padding: 7.5px 0;
}

.navbar-buttons {
    display: flex;
    align-items: center;
  }

.navbar-buttons a, .button {
    text-decoration: none;
    margin: 0 10px;
    padding: 15px;
    border-radius: 20px;
    font-weight: 700;
}
  
  .login-button {
    margin-right: 10px;
    background-color: var(--background-color);
    border: 1px solid #b9b9b9;
    color: var(--text-color);
    padding: 8px 16px;
    text-decoration: none;
  }
  
  .business-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border: none;
    text-decoration: none;
  }
  

/* Container 02 */
  
.hero-container {
    position: relative;
    width: 100vw;
    height: 530px;
    overflow: hidden;
  }
  
  .background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #04174d, #87a5fa);
  }
  
  @keyframes scrollBackground {
    0% {
      transform: translate(-10%, -10%);
    }
    100% {
      transform: translate(10%, 10%);
    }
  }
  
  .hero-container .content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 800px;
    padding: 85px 200px;
    color: white;
  }
  
  .large-text {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    line-height: 0.95;
  }

  .vert-center {
    margin: auto 0;
  }
  
  .small-text {
    font-size: 1rem;
    font-weight: normal;
    color: white;
  }
  
  .sub-text {
    color: rgb(221, 221, 221);
    font-size: 1.25rem;
  }
  
  .search-widget {
    display: flex;
    align-items: center;
    width: 70vw; /* note to future me. change this */
    max-width: 600px;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    margin-top: 40px;
  }
  
  .search-widget input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: grey;
    padding: 5px;
    background-color: transparent;
  }
  
  .search-button {
    background-color: blue;
    color: white;
    border: none;
    outline: none;
    padding: 15px 15px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
  }

/* Container 03 */

.categories-container {
    background-color: var(--background-color);
    width: 100vw;
}

.text-container {
    display: flex;
    align-items: center;
    margin: 0 200px;
    padding: 30px 0;
    padding-top: 50px;
}

.text-container .text {
    flex: 1;
}

.text-container .text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}

.text-container .text p {
    font-size: 1.25rem;
    font-weight: 400;
    color: #525252;
    margin: 0;
    margin-top: 15px;
}

.button {
    text-align: right;
}

.button-wo {
    background-color: transparent;
    border: 1px solid rgb(66, 66, 66);
    color: var(--text-color);
    border-radius: 25px;
    padding: 15px 20px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.button-wo:hover {
    background-color: rgb(66, 66, 66);
    color: white;
}