/*Wash N Go Css*/
html{
    width: 100%;
    margin:0;
    padding:0;
}


body{
    margin: 0;
    padding:0; 
    background-color: #fff5b9;
    font-family: 'Nunito', sans-serif;
}

/*top menu*/
.navigation{ 
    
    display: flex;
    justify-content: space-between;

    position: fixed;

    width: 100%; 
    height: 150px;

    font-family: 'Nunito', sans-serif; 

    background-color: #3497fb;
    color: white;

    margin: 0; 
    padding: 0;
    top: 0;
    z-index: 2; 

    overflow: hidden;
    transition: height 0.3s ease; 
    
}

.navigation.shrink {
    height: 70px;
    transition: height 0.3s ease;
}

.topLeft{

    font-family: 'Montserrat', sans-serif;


    width: 50%;
    height: 100%;

    display: flex;
    gap: 10px;
    align-content: center;
    align-items: center;

    padding: 0; 
    padding-left: 20px;
    margin: 0; 

    font-size: clamp(30px, 3vw, 60px);
}

.topLeft img{
    width: auto;
    height: 50%;
}


.rightNav{

    color: white; 
    height: 100%;
    width: 50%;
    font-size: clamp(5px, 1.9vw, 25px);
    overflow: hidden; 
    align-content: center;
    text-align: right;
    padding-right: 10px;

}


.navigation ul{
    list-style-type: none; /*takes out the default bullet point when using ul*/
    
}

.navigation ul li{
    display: inline-block; /*need this line here so that the list goes horizontally*/

}

.navigation ul li a{
    font-size: 25px;
    padding: 15px;
}

a{
    text-decoration: none; 
    color: white; 
    
}

a:hover{
    color: gold;
    cursor: pointer;
    font-weight: bold;
}


/*website content box/container*/
.contentContainer{
    margin-top: 200px; /*used for the margin between container and container above it, padding is moving around content inside of the container*/
    background-color: #fefefe;
    width: 70%;
    min-height: 100vh; 
    margin-left: 15%;    
    overflow: visible;
    box-shadow:10px 10px 10px 10px rgba(0, 0, 0, 0.5);

}

.contentContainer h1{
    align-items: center;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    
}

.contentContainer p{
    text-align: center;
}

/* heading of the content container */
.headline{
    background-color: rgb(192, 237, 255);
    margin: 0;
    padding: 0;
    align-items: center;
    
}

.headline h1{
    margin: 0;
    padding: 0;
    padding-left: 40px;
    padding-right: 20px; 
    padding-top: 20px;

    font-size: 70px;
    color: rgb(1, 1, 252);
    
}

.headline p{
    padding-left: 40px;
    margin: 0;
    font-size: 23px; 
    padding-bottom: 25px; 
    padding-top: 10px;
    font-weight: bold; 
}


/* services icons shown in homepage */
.homeServices{ 
    
    padding-top: 5%;
    padding-left: 5%; 
    width: 90%; 
    display: flex; 
    justify-content: space-around;
    
    gap: 30px; /*can use instead of justify content to manually space content*/
    flex-wrap: wrap; /*once the end of the parent container is reached, the content wraps and goes to the next line*/
}


.homeServiceContainer{
    border-radius: 10px;
    background-color: rgb(252, 230, 104);    
    overflow: hidden;
    padding: 20px;
    width: 130px;
    max-width: 200px;
    font-size: 20px;
    font-weight: bold; 
    align-content: center; /*align-content, align-items, justify-content difference?*/
    color: rgb(1, 1, 252);
    height: 220px; 
    margin-top: 20px;

    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;

    /* display: flex;
    align-items: center;
    justify-content: center; */
}


.homeServiceContainer:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    background-color: rgb(252, 230, 104);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    color: rgb(1, 1, 252);
    text-align: center;
    box-sizing: border-box;
}


.flip-card-back {
    transform: rotateY(180deg);
}




/* content right below service icons */
.lowerContent{
    display: block; /*block fills full width of the parent container unless another width is set and also starts on new line*/
    padding-top: 10%;
    text-align: center; /*remember justify content is only usually able to be used in flex*/
    width: 100%;
    font-size: 25px;
    
}

.lowerContent p{ 
    margin: 0;
    padding: 0; 
    font-size: 20px;
}

.servicesButton{
    display: inline-block;
    background-color: gold; 
    color: black; 
    border: none; 
    text-align: center;
    text-decoration: none; 
    font-size: 16px;
    cursor: pointer;
    margin: 20px 2px;
    font-size: 20px;
    box-shadow: 1px 1px 20px 0px gold;
    border-radius: 10px;
    padding: 15px 20px; 
    font-family: inherit; /*have to add in some extra lines in order to offset default presets of the <a> or anchor tag which makes it look more like a link, we want it to look like a regular button*/
}

.servicesButton:hover{
    font-weight: bold; 
    color: black; 
    background: gold; 
    text-decoration: none;
}

.servicesButton:active{
    transform: translateY(2px) scale(0.98);
    background-color:rgb(170, 145, 2)
}


a.servicesButton{
    text-decoration: none;
    font-size: 20px
}


/* About Us Section on homepage */
.aboutHeader h1{
    padding-left: 10px; 
    margin-bottom: 20px; 
    text-align: center; 
}

.aboutContainer{
    width: 100%; 
    display: flex;
    justify-content: space-around;
}

.aboutContainer img{
    margin-bottom: 60px;
}


.aboutContainer h1{
    padding-left: 10px; 
    margin-bottom: 10px; 
}

.textContainer{
    width: 35%; 
    word-wrap: break-word;
    text-align: center;
    align-content: center;
    border-radius: 10px;
    background-color: rgb(252, 230, 104);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    padding: 40px;
    font-size: 17px;
    margin-bottom: 100px;
}

/* container for the entire services page */
.servicesContainer{
    width: 100%; 
    display: flex;
    justify-content: space-around;
    margin-top: 5%;
    margin-bottom: 5%;
}

.serviceImage{
    width: 20%;
    height: 20%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    background-color: rgb(252, 230, 104);
    margin-bottom: 20px;
}

.servicesContainer img{
    width: 100%; 
    height: 100%;
    
}

.servicesText{
    width: 35%; 
    word-wrap: break-word;
    text-align: center;
    align-content: center;
    border-radius: 10px;
    background-color: rgb(252, 230, 104);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    padding: 40px;
    font-size: 17px;
    margin-bottom: 20px;
}




/* footer section */
.footer{
    display: flex;
    justify-content: space-around;
    background-color:#333;
    color: white;
    padding: 20px 0; /*vertical padding and horizontal padding*/
    width: 100%;
    align-content: center;
    align-items: center;;
    margin-top: 50px;
    font-size: 20px;

}

html{
    scroll-behavior: smooth;
}