@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&family=Vidaloka&display=swap');

/*General text style*/
*{
    margin: 0;
    padding: 0;
    border: 0;
}
body{
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #354142;
}

h3, h2{
    letter-spacing: 4px;
}

.logo-style {
    font-family: 'Vidaloka', sans-serif;
    letter-spacing: 4px;
    color: #354142;
    margin: 10px;
}

/* Header Style */

header {
    width: 100%;
    letter-spacing: 4px;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
}

header a {
    text-decoration: none;
    color:inherit;
}

/*Mobile Menu - Drop Menu */

.menubtn {
    color: #354142;
    padding: 5px;
    font-size: 30px;
    cursor: pointer;
  }
  
.menudrop {
    position: relative;
    display: inline-block;
}
  
.menucontent {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    right: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
  
.menucontent a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
.menucontent a:hover {background-color: #f1f1f1}
  
.menudrop:hover .menucontent {
    display: block;
}
  
.menudrop:hover .menubtn {
    color: #000000;
}

.active {
    font-weight: 600;
}

/*Footer Styling*/

footer {
    width:80%;
    text-align: center;
    margin: auto;
}
footer h3 {
    margin-bottom: 5px;
}

footer div{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

table{
    margin: auto;
    width: 250px;
}

table th{
    font-weight: lighter;
}

.social-network {
    font-size: 250%;
    color: #3a3a3a;
}

.icons {
    flex-direction: row;
}

.icons a{
    margin: 10px;
}

/*Home Page*/

.homepage-container {
    min-width: 300px;
    width: 100%;
    height: 1650px;
    position: relative;
    background-color: #3a3a3a;
    display: flex;
    justify-content: center;
}

.homepage-background{
    background-image: url(../images/jeans-selection.jpg);
    position: absolute;
    width: 100%;
    height: 300px;
    background-position: center;
    background-size:cover;
}

.homepage-overlay {
    position: absolute;
    color: #fafafab7;
    width: 100%;
    height: 100%;
    font-size: 120%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.homepage-overlay h2 {
    font-size: 300%;
    color:#f1f1f1dc;
    text-align: center;
}

.introduction-container{
    max-width: 400px;
    min-height: 300px;
    text-align: center;
    display: flex;
    justify-content:center;
    align-items: center;
    flex-direction: column;
}

.introduction-container h2 {
    font-size: 300%;
}

.introduction-container p {
    font-size: large;
    font-weight: bold;
}

.about-background{
    background-color: rgba(53, 65, 66, 0.7);
    width: 100%;
    padding-bottom: 50px;
    padding-top: 50px;
}

.about-container {
    max-width: 800px;
    color:#354142;
    font-size: medium;
    text-align: center;
}

.about-content {
    border-radius: 5px;
    margin: 10px 10px 10px 10px;
    padding: 20px;
    max-width: 500px;
    background-color: #f1f1f1dc;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.6);
}

.about-content p {
    text-align: left;
    margin-bottom: 30px;
}

.about-content h3 {
    margin: 15px;
}

.link-btn{
    background-color: #ff8a43;
    border: solid 2px #ff8a43;
    cursor: pointer;
    border-radius: 25px;
    padding: 15px;
    text-decoration: none;
    color: #f9f9f9;
    font-size:medium;
    font-weight: bold;
}

.link-btn:hover {
    background-color: #edc3a9;
    border: #f9f9f9 2px solid;
    color: rgba(53, 65, 66, 1);
}

.about-imgs{
    height: 200px;
    width: 250px;
    background-size: cover;
    background-position: center;
    margin: auto;
    border-radius: 45%;
}

.sustainability-img{
    background-image: url(../images/recycling-fabric.jpg);
}

.expertice-img{
    background-image: url(../images/unfolding-jeans.jpg);
}

.uniqueitems-img{
    background-image: url(../images/jeans-hanger.jpg);
}

/* Services Page*/
#services-border {
    background-color: rgba(238, 240, 240, 1);
    margin: auto;
    width: 100%;
    padding-bottom: 30px;
    padding-top: 30px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

#services-border h2 {
    font-size: 300%;
    margin-bottom: 30px;
}

#services-title {
    padding: 10px;
}

.services {
    width: 90%;
    background-color: rgba(255, 255, 255, 1);
    max-width: 600px;
    margin-bottom: 15px;
    color: #354142;
    font-size: 110%;
    box-shadow: 1px 5px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.services h3{
    padding-top: 15px;
    padding-bottom: 5px;
}

.pricing{
    text-decoration: none;
    font-weight: 700;
    color:  rgba(53, 65, 66, 0.5);
}

.services-text-box {
    height: fit-content;
    padding: 5px 30px 30px 30px;
}

hr{
    border: #f19963 solid 2px;
    margin-bottom: 15px;
    margin-top: 5px;
    width: 75%;
}

.img-settings{
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.fit-style-img{
    background-image: url(../images/picking-jeans.jpg) ;
}
.alterations-img{
    background-image: url(../images/rolling-jeans.jpg) ;
}
.repairs-img{
    background-image: url(../images/worn-out-denim.jpg);
}
.upcycling-img{
    background-image: url(../images/box-of-jeans.jpg);
}

/*Query Form Style*/
.form-container {
    background: url(../images/jeans-windowsill.jpg);
    background-size: cover;
    background-position: center;
    height: 900px;
    position: relative;
}

.form-overlay{
    width: 100%;
    height: 100%;
    position:absolute;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-overlay > h2 {
    font-size: 300%;
    color: #fff;
}

.signup-form {
    text-align: left;
    color: #354142ea;
    font-size: medium;
    font-weight: bold;
    background-color:  #f9f9f9f1;
    max-width: 800px;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.6);
    margin: 5%;
}

.form-field{
    background: rgba(53, 65, 66, 0.135);
    color:#354142;
    padding: 5px;
    width: 100%;
    height: 30px;
    margin: 5px 0 20px;
    border-radius: 5px;
    font-size: medium;
}

.drop-down-text{
    font-size: medium;
}

.form-field:hover{
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3) inset;
}

.form-field:focus{
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3) inset;
    outline: none !important;
}

#your-query{
    height: 100px;
}

.send-query-button{
    margin-top: 20px;
    border-radius: 2px;
    padding: 15px 32px 15px 32px;
    text-align: center;
    font-size: 100%;
    background-color: #ff8a43;
    font-weight: bold;
    border-radius: 25px;
    color: #fafafa;
    display: block;
}

.send-query-button:hover{
    background-color: #cb692c;
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3) inset;
}

/*Succesful submission*/

.succesful-message{
    font-size: xx-large;
    font-weight: bold;
    background-color:  #f9f9f9f1;
    max-width: 500px;
    padding: 50px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.succesful-message a{
    text-decoration: none;
    font-size: medium;
}

