/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    text-align: center;
    background-color: #eb510a;
    color: white;
    padding: 1em 0;
    
}
.logo_busName{
    display: flex;
    align-items: center; /* Vertically center the logo and text */
        
    }


.headText{
    align-items: center;
}


.logo{
    margin-right: 10px;/*Space between logo and text*/
    border-radius:8px;
    width: 120px;;
    height: auto;
    float:left;
    margin-left:35%;
    
}
img, video, iframe{
    border-radius: 6px;
}
.slogan {
    font-style: italic;
    
}
a{
    text-decoration: none;
}
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e17338;
}

#nav-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

#nav-menu li a {
    color: white;
    text-decoration: none;
}
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    padding: 0.5rem;
}

/* Main Section */
main {
    padding: 1em;
    margin-left: 5%;
    margin-right: 5%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column {
    flex: 1;
    margin: 0.5rem;
}

.description {
    flex-basis: 48%;
}

video {
    flex-basis: 48%;
    width: 350px;
    height:350px;
}

.products {
    text-align: center;
}

.product {
    flex-basis: 30%;
    margin: 0.5rem;
}


.product img {
    max-width: 100%;
}
button{
    width: auto;
    height:auto;
    background-color:#e2f110;
    font-weight: bold;
    }
.toTheTop{
    text-align:center;
}


.aboutPageImages{
    width:20%;
    height:15%;
    float:right;
    clear:right;
    padding: 2px;
}
/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li a {
    color: white;
    text-decoration: none;
}
.socialMedia{
    width: 20px;
    height:auto;
}


/* Responsive Design */
@media (max-width: 768px) {
 /*   .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #444;
        width: 100%;
    }
*/        
    #nav-menu{
        display: block;
    }
 /*   .nav-menu.active {
        display: flex;
    }
*/
    .hamburger {
        display: block;
    }

    .description, .video, .product {
        flex-basis: 100%;
    }
    .logo{
        display:none;
    }
    form{
        width: auto;
    }
    .form-grid{
        display: grid;
        grid-template-columns: auto auto;
        grid-gap: 20px;
    }
    iframe{
        display: none;
    }
    .btn{
        grid-column: 1/span ;
    }
    #contactInfo{
        float:left;
    }
    #addInfo{float:auto;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    video{
        display:none;
    }
    .logo{
        display:none;
    }
 
    #nav-menu{
        display: none;
    }
   

    .hamburger {
        display: block;
    }
    
    iframe{
        display: none;
    }
    #contactInfo{
        width:50%;
    }
    #addInfo{
        width: 25%;
        height: auto;
    }
    .aboutPageImages{
        display:none;
    }
}