/* Colors used
Dark Blue: #1E385B
Gold:  #FFD700
*/


body {
    /*font-family: Arial, sans-serif; */
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-weight: 700 !important;
    font-size: 1.2em;
    text-align: center;

}


header {
    transition: height .2s ease,background-color .2s ease,padding .2s ease,width .2s ease,margin .2s ease,top .2s ease,transform .2s ease;
    margin: 0!important;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    height: auto!important;
    max-width: 100%!important;
    min-width: 0!important;
    text-align: center!important;
    float: none!important;
    top: 0!important;
    left: 0!important;
    position: fixed!important;
    background-color: #1E385B;
    -webkit-font-smoothing: antialiased;
    border: 0 solid #333;
    box-sizing: border-box;
    display: block;
    color: #fff;
    position: relative;
    
    font-weight: 400;
    word-wrap: break-word;
    text-decoration-skip-ink: none;
    -webkit-text-size-adjust: 100%!important;
}
#email-a {
    color: #fff;
}
#hookemup-truck {
    width: 95%;
    max-width: 700px;
}
#tipsytow {
    width: 95%;

}

nav {
    position: fixed; /* Keeps the navbar fixed at the top */
    /* top: 0; */

    background-color:  #FFD700;
    overflow: hidden;
    width: 100%!important;
    height: 50px;
    position: fixed!important;
    padding: 0!important;
    text-align: center; /* Centers the links within the navbar */
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  nav li {
    display: inline-block; /* Keeps links on the same line */
    margin: 10px 10px; /* Adds spacing between links */
  }


  nav a {
    text-decoration: none;
    color: #fff; /* Customize link color */
    
    font-weight: 700 !important;
    font-size: 1.2em;

  }

nav a:hover {
    background-color: #ddd;
    color: black;
}

.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("images/top-background.jpg"); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    z-index: -1; /* Ensure background is behind content */
  }
  
  .scrollable-content {
    padding-top: 5px; /* Adjust based on your navbar height */
    overflow-y: scroll;
  }

.container {

    margin: 0 auto;
    overflow: hidden;
    background-color: #ffffff;
    padding: 10px;
}


.left-sidebar {
    float: left;

    min-width: 400px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    box-sizing: border-box;
    margin-left: 5%;
    color: #fff;
    font-weight: 700 !important;
    font-size: 1.2em;
}

.left-sidebar h1 {
    font-weight: 700 !important;
    font-size: 2.2em;
}

.sidebar {
    float: right;
    width: 20%;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    box-sizing: border-box;
    margin-right: 5%;
    color: #fff;
    font-weight: 700 !important;
    font-size: 1.2em;
}

.logo {
    height: 150px;
    width: 150px;
}

.icon {
    height: 30px;
    width: 30px;
}

.headerpart {
    position: relative;
    width: 33%;
    display: inline-block;
    vertical-align: top;
    padding: 0!important;
    font-weight: bold;
}

.socialIcon {
    font-family: 'dm-social-icons'!important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
}

#name {
    text-align: center!important;
}

.icon-small {
    height: 30px;
    width: 30px;
}

footer {
    background-color: #FFD700;
    color: white;
    text-align: center;
    padding: 1em 0;
}
.service-container {
    display: flex;
    flex-wrap: wrap; /* Allow tiles to wrap if needed */
    justify-content: center;
  }
  
  .serviceblock {
    float: left; /* Float tiles to create a grid-like layout */
    width: 85%; /* Equal width for each tile (adjust as needed) */
    padding: 10px; /* Add spacing around content */
    margin: 10px; /* Add spacing between tiles */
    
    max-width: 500px;
    text-align: left;

  }
  
  /* Clear floats to prevent content overlapping */
  .service-container::after {
    content: "";
    clear: both;
    display: block;
  }
  
.footerpart {
    position: relative;
    width: 30%;
    display: inline-block;
    vertical-align: top;
    padding: 0!important;
    font-weight: bold;
}

.mid-row {
    background-color: #1E385B;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

#toggleHeaderBtn {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}

@media (max-width: 800px) {
    nav {
        text-align: center;
    }

    nav a {
        float: none;
        display: inline-block;
    }

    .main-content,
    .sidebar {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) { /* For screens up to 480px wide */
    nav a {
        font-size: 16px; /* Smaller font size on small screens */
    }
    h1 {
        font-size: 1.2em;
    }
    .headerpart h2 {
        font-size: 1.1em;
    }
    .logo {
        height: 100px;
        width: 100px;
    }
    #home-top {
        font-size: 1.2em;
    }
    .left-sidebar {
        min-width: 200px;
    }
}