
/* 
    Created on : Dec 28, 2024, 4:51:01 PM
    Author     : Yonas W.
*/
#home-header{
    clear: both;
    background-color: #e98f3e;
    background-image: url('../images/products-banner.jpg');
    padding: 20px;
    margin-bottom:  20px;
    background-size: cover;
    background-repeat: no-repeat;
}
p#title{
    font-size: 60px; font-family: 'Kaushan Script', Lato; padding-left: 50px; color: white;  font-weight: 900;
}
p#subtitle{
    font-size: 30px; font-family: 'Kaushan Script', Lato;  padding-left: 50px; color: black; 
}
#items-qoute{
    width: 100%;
    margin: auto;
    background-color: #d4e6f1;
    padding: 40px;
}

#product-section-text{
    text-align: center;
    padding: 100px;
}
#product-section-text #subtext{
    width: 60%;
    margin: 0 auto;
}
.flip-product-card {
    background-color: transparent;
    width: 300px;
    height: 375px;
    border: 1px solid #f1f1f1;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-product-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-product-card:hover .flip-product-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-product-card-front, .flip-product-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-product-card-front {
    background-color: whitesmoke;
    color: black;
}

/* Style the back side */
.flip-product-card-back {
    background-color: wheat;
    color: dimgrey;
    transform: rotateY(180deg);
}

/*PRODUCT CARD STYLING*/

div.product-card-menu{
    /*background-color:#ccffcc; */
    width: 100%;
    margin: 0 auto;
    float: left;
    text-align: center;
    display: block;
}
div.product-card{
    padding-top: 20px;
}
div.prd-spec-card:hover {
    margin-left: 100px;
    transform: scale(1.75); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
div.prd-spec {
    width: 100%;
    margin: 0 auto;
}
div.prd-spec-card{
    /*background-color:#ccffcc; */
    /*width: 20%;*/
    margin: 20px;
    float: left;
    text-align: center;
    display: block;
    padding: 20px;
}

/*QUOTATION/CONTACT FORM STYLING*/
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
input[type=submit] {
    background-color: #e98f3e;
    color: black;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input[type=submit]:hover {
    opacity: 0.8;
}
input[type=text]:focus, input[type=select]:focus, input[type=textarea]:focus {
    outline: none;
    border: 1px solid #e98f3e;
}
.in-row, #colors, #depth, #length, #width{
    width: 30%;
    margin-right: 3%;
}
#colors{
    display: none;
}
.ind-container{
    padding:  0 16px;
    height: 25px;
    text-align: left;
}
.column {
    float: left;
    margin: auto;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 100px;
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 200px;
    background-color: whitesmoke;
    border-radius: 8px;
}
.card-column{
    width: 60%;
    padding-top: 40px;
    background-color: #fad7a0;
}
.qoute-column{
    float: right;
    width:38%;
    padding: 40px;
}

/*CONTACT FORM STYLING END*/

#footer{
    clear: both;
}


@media only screen and (max-width: 1045px) {

    #home-header {
        padding: 0;
        height: 200px;
    }
   #heading-banner-text{
        display:inline;
    }
    p#title{
        font-size: 30px;            
    }    
    p#subtitle{
        font-size: 20px;        
        margin-top: 0;
        padding-right: 30px;
        float: right;
        background-color: white;
        opacity: 0.7;
    }  
    #quote-button{
        margin-top: -50px;
        margin-left: 30px;
    }
    #browse-button{
        margin-top: 10px;
        margin-left: 50px;
    }
    #product-section-text{
        text-align: center;
        padding: 20px;
    }
    #product-section-text #subtext{
        width: 90%;
        margin: 0 auto;
    }

    .card-column {
        margin: auto;
        padding-top: 0;
        background-color: #fad7a0;
    }
    .column {
        width: auto;
    }
    .qoute-column {
        margin: auto;
        margin-top: 100px;
    }
}

@media only screen and (max-width: 649px) {

    .column {
        width: 100%;
        margin-bottom: 40px;
    }
    div.prd-spec-card {
        padding-top: 20px;
        width: 80%;
    }
}