
/* 
    Created on : Dec 31, 2024, 9:58:57 PM
    Author     : Yonas W.
*/
body{
    padding: 0;
    margin: 0 auto;
}
#home-header{    
    background-color: #e98f3e;
    background-image: url('../images/contact-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;
}


/*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=textarea]:focus {
  outline: none;
  border: 1px solid #e98f3e;
}
.in-row, #colors, #depth, #length, #width{
    width: 30%;
    margin-right: 3%;
}
#colors{
    display: none;
}
#info-qoute{
    width: 100%;
    margin: 0 auto;
    /*background-color: #d4e6f1;
    padding: 40px;*/
    padding-bottom: 100px;
}
.column { 
    float: left;    
    border-radius: 5px;  
    width: 46%;
    padding: 20px;  
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;  
    background-color: whitesmoke;
    border-radius: 8px;
}
.info-column{  
    padding-top: 40px;    
    background-color: #fad7a0;
    margin: -50px 2% 100px 2%;
}
.qoute-column{
    float: right;
    width:46%;
    padding: 40px;   
    margin: -50px 2% 100px 0%;
}
.info{
    width: 96%;
    margin: 2%;    
}
 iframe{
        width: 600px;
        height: 450px;
    }

/*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;
    }
  
    .info-column {
        margin: auto;
        padding-top: 0;
        background-color: #fad7a0;
    }
    iframe{
        width: 100%;
        height: 450px;
    }
    .column {
        width: auto;
    }
    .qoute-column {
        margin: auto;
        margin-top: 10px;
    }
    #info-qoute{
        padding: 20px;
    }
}

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

    .column {
        width: 100%;
        margin-bottom: 40px;
    }
}