/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;
}

body {
    overflow-x: hidden;
    width: 100%;
}  
  
 
  

/*Styling for navigation bar*/
/* Base Styles */
nav {
    height: 16vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #233447;
    font-size: 1.5vmax;
    padding: 3vh;
    position: sticky;
    top: 0px;
    z-index: 5000;
}

.menu-toggle {
    display: none; /* Hidden by default */
    background-color: #C62828;
    color: #233447;
    border: none;
    font-size: 3vmax;
    cursor: pointer;
    padding: 10px;
    position: relative;
    right: 30%;
}

.left-side-logo {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1vh;
    position: relative;
    right: 5vw;
}

.left-side-logo img {
    height: 14vh;
}

.right-side-icons {
    display: flex;
    gap: 5vw;
    align-items: center;
    padding-bottom: 2vh;
    position: relative;
    right: 2vw;
}

.right-side-icons a {
    text-decoration: none;
    color: #F3E9DC;
}

/* Media Queries for 768px and below */
@media (max-width: 430px) {
    nav{
       height: 12vh;
       flex-direction: row;
    }
    .right-side-icons {
        display: none; /* Hide icons by default */
        flex-direction: column; /* Stack the links vertically */
        align-items: center;
        background-color: #233447;
        position: absolute;
        top: 12vh; /* Positioning below the navbar */
        left: 0;
        right: 0;
        width: 100%;
    }

    .right-side-icons.active {
        display: flex; /* Show icons when toggle is clicked */
        background-color: #233447;
        z-index: 100;
    }

    .nav-icons {
        margin: 10px 0; /* Add space between links */
    }

    .menu-toggle {
        display: block; /* Show toggle button */
    }
    .left-side-logo img {
        height: 10vh;
    }
    .left-side-logo {
        width: 100%;
        display: inline-block;
        padding-top: 2vh;
        position: relative;
        right: 5%;
    }
    

}

main {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 16vh);
    background: linear-gradient(135deg, #233447, #6B84A5);
    color: #fff;
  }
 .sticky-btn{
    background-color: #F3E9DC;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 120px;
    width: 100px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px black;
    padding: 1vh;
    position: fixed;
    top: 55vh;
    right: 1vw;
    z-index: 4000;
}
.sticky-btn img{
    height: 16vh;
}
.sticky-btn button{
    font-size: 1.2vmax;
    padding: 1vh;
    position: relative;
    top: -1vh;
}
button {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    background-color: #E53935;
    color: #0E1A2B;
    font-weight: 600;
    font-size: 1.5vmax;
    margin-top: 2.5%;
    cursor: pointer;
}

button:hover {
    background-color: #C62828;
    color: #233447;
    box-shadow: 2px 2px 2px black;
    transform: scale(0.95); /* Slightly faster scaling for a better interaction */
    transition: transform 0.5s ease; /* Faster for a snappier feel */
}
.sticky-btn button a{
    text-decoration: none;
    color: #0E1A2B;
}

  .coming-soon-container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background-color: #F3E9DC;
    color: #233447;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  h1 {
    font-size: 4vmax;
    margin-bottom: 10px;
  }
  
  .coming-soon-container p {
    font-size: 1.8vmax;
    margin-bottom: 30px;
  }
  
  .logo {
    margin-bottom: 30px;
  }
  
  /* Bike Icon Animation */
  .soon-icon {
    margin: 0 auto;
  }
  .soon-icon img{
    height: 10vmax;
  }

 /* /footer styling/ */
footer{
    background-color: #F3E9DC;
    color: #0E1A2B;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
}
.footer{
    padding: 3vh;
    display: flex;
    justify-content: space-evenly;
}

footer h1{
    font-size: 3vmax;
}
footer p{
    font-size: 1.5vmax;
}
.website-info{
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.address p{
    font-weight: 500;
}


.sitemap a{
    text-decoration: none;
    color: #0E1A2B;
}

.sitemap h1{
    margin-bottom: 4%;
}

.sitemap li{
    list-style: none;
    line-height: 1.8;
    font-size: 1.5vmax;
}

.list-align{
    display: flex;
    gap: 20px;
}

.icon-wrapper{
    margin-top: 2vh;
}

.icon-wrapper a{
    text-decoration: none;
    color: #0E1A2B;
    font-size: 1.5vmax;
}



/* .address{
    padding-top: 4vh;
    padding-left: 4vh;
} */

.address h1{
    margin-bottom: 4%;
}


.rights{
    background-color: #0E1A2B;
    color: #F3E9DC;
    padding: 1.5vh;
    text-align: center;
}
.rights p{
    font-size: 1.1vmax;
}
/* /Responsivness for footer/ */
@media (max-width: 430px){
    .footer{
        flex-direction: column-reverse;
    }
    .website-info{
        width: 100%;
    }

    .icon-wrapper{
        margin-top: 0;
    }
    
    .address {
        padding-top: 4vh;
    }
    .address h1 {
        margin-bottom: 1%;
    }
}