.html, body {
    max-width: 100vw;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: rgb(192, 192, 192);
    font-family: "inter", system-ui, sans-serif;
    scroll-behavior: smooth;
}

.logo-container {
    display: flex;
    gap: 1rem;
    color: white;
    align-items: center;
    }

    .logo {
      height: 2.5rem;
    }

    .logo-text {
      font-size: 1.25rem;
      font-weight: bold;
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 4rem;
      background-color: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(10px);
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 2rem;
      z-index: 10000;
      transform: translateY(0);
      transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
      will-change: transform, opacity;
    }

    .main-nav.hidden {
      transform: translateY(-100%);
      opacity: 0;
    }

    .logo-container {
      display: flex;
      gap: 1rem;
      color: white;
      align-items: center;
    }

    .logo {
      height: 2.5rem;
    }

    .logo-text {
      font-size: 1.25rem;
      font-weight: bold;
    }

    .main-nav > ul {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .main-nav a {
      color: white;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .main-nav a:hover {
      color: #e9b934;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      padding: 10px;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      height: 2px;
      width: 25px;
      background: #e9b934;
      border-radius: 2px;
      transition: all 0.3s ease-in-out;
    }

    .hamburger.active span:first-child {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:last-child {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 4rem;
      left: 0;
      right: 0;
      background: linear-gradient(145deg, #242424 0%, #2a2a2a 100%);
      padding: 2rem;
      transform: translateY(-100%);
      transition: transform 0.3s ease-in-out;
      z-index: 999;
    }

    .mobile-menu.show {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      transform: translateY(0);
    }

    .mobile-menu a {
      color: #e9b934;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 500;
      padding: 0.5rem 0;
      transition: color 0.2s ease;
    }

    .mobile-menu a:hover {
      color: #ffd700;
    }

.icon-element{
    padding: 0.5rem;
    border-radius: 50%;
    background-color: rgb(71, 71, 71);
    margin: 1rem 0 2rem 45%;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    scale: 1.5;
}

.hero{
    z-index: 2;
    position: relative;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-color: rgba(204, 204, 204, 0);
    padding-left: 2rem;
    overflow: hidden;
    box-shadow: 0 0 35px rgb(0, 0, 0)
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index:-1;
    background-color: rgb(102, 102, 102);
    height: 100vh;
    width: 100vw;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) brightness(0.5);   
}

#main-title-Line1, #main-title-Line2, #main-title-Line3 {
    color: rgb(255, 255, 255);
    font-style: normal;   
    font-weight: 400;
    font-family:  "Rubik Lines", system-ui;
    font-style: thin;
    font-size: 5rem;
    margin: -1rem 0;
    text-shadow: 5px 5px 5px rgb(0, 0, 0);
}

.hero > h6 {
    margin-top: auto;
    font-family: "rubik Lines", system-ui;
    font-weight: 400;
    font-size: 1rem;
    padding-left: 0.3rem;
    margin-bottom: 0.2rem;
    color: #e9b934;
    text-shadow: 0px 0px 10px rgba(236, 227, 158, 0.74);
}

.walk {
    display: flex;
    font-size: 1.2rem;
    column-gap: 0.2rem;
    margin-left: 3rem;
    margin-bottom: 2rem;
    animation: slideIn 0.6s ease-in-out forwards;
    opacity: 0;
}

#walk1, #walk3{
    color: white;
}

#walk2 {
    color: #e9b934;
}

#walk4 {
    color: #34e94c;
}

@keyframes slideIn {
    from {
        transform: translateX(12%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1
    }
}

@media screen and (max-width: 1023px) {
    .main-nav > ul {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-menu.show {
        display: flex;
      }
    
    #main-title-Line1, #main-title-Line2, #main-title-Line3 {
        font-size: 3rem;
        margin: -5px 0;
    }

    .hero > h6 {
        font-size: 0.8rem;
        margin: 0;
    }

    .walk {
        margin-left: 0.3rem;
        margin-bottom: 1rem;
    }  
}

@media screen and (max-width: 600px) {
    
    
    .hero {
        padding-left: 1.5rem;        
    }
    
    #main-title-Line1, #main-title-Line2, #main-title-Line3 {
        font-size: 1.8rem;
        margin: -3px 0;
    }

    .hero > h6 {
        font-size: 0.5rem;
        margin: 0;
    }

    .walk {
        font-size: 0.8rem;
        margin-left: 0.2rem;
        margin-bottom: 8rem;
    }
}
