
/* ---------------------------------- */
/* AFP home page stylesheet. 01/05/21 */
/* ---------------------------------- */



body {
display: flex;
flex-direction: column;
font-family: 'Comfortaa', cursive;
margin: 0;
padding: 0;
}

hr {
width: 100%;
border: 2px solid #BBBBBB;
margin: 0;
}

#navbar {
position: fixed;
height: 60px;
width: 100%;
background-color: #5EBFB5;
display: flex;
justify-content: space-around;
align-items: center;
}

#navbar a {
color: #F2075D;
text-decoration: none;
font-size: 18px;
}


/* landing page w just logo centered */
#landing {
height: 100vh;
background-color: #EAEAEA;
display: flex;
justify-content: center;
align-items: center;
}

#landing img {
margin-top: 40px;
height: 200px;
width: 300px;
}



/* portraits section w carousel and short text box */
#portraits {
height: 500px;
background-color: #EAEAEA;
text-align: center;
padding: 2px;
}

#portraitCar {
background-color: darkgray;
width: 200px;
height: 300px;
margin: auto;
padding: 2px;
}

#port {
margin: 5px;
}

#portPrev, #portNext {
background-color: darkgray;
width: 20px;
cursor: pointer;
display: inline-block;
}
#portPrev {float: left; color: #F2075D;}
#portNext {float: right; color: #F2075D;}



/* landscape section w carousel and short text box */
#landscapes {
height: 500px;
background-color: #EAEAEA;
text-align: center;
padding: 2px;
}

#landscapeCar {
background-color: darkgray;
width: 200px;
height: 300px;
margin: auto;
padding: 2px;
}

#land {
margin: 5px;
}

#landPrev, #landNext {
background-color: darkgray;
width: 20px;
cursor: pointer;
display: inline-block;
}
#landPrev {float: left; color: #F2075D;}
#landNext {float: right; color: #F2075D;}



/* form section w PHP mail on submit */
#contact {
display: flex;
flex-direction: column;    
height: auto;
background-color: #EAEAEA;
padding: 4px;
text-align: center;
justify-content: center;
}

#f {
display: flex;
flex-direction: column;
width: 250px;
margin: auto;
justify-content: center;
}
#name, #email {
height: 20px;
padding: 4px;
margin-bottom: 8px;
color: black;
}
#f input::placeholder {color: black;}
#f textarea::placeholder {color: black;}

#f label {
display: inline-block;
margin-right: 10px;
font-size: 15px;
}

#occasion {
width: 250px;
height: 30px;
}

#submit {
width: 50%;
height: 30px;
margin: auto;
background-color: #5EBFB5;
border: none;
border-radius: 4px;
font-size: 16px;
color: #F2075D;
}


/* footer section */
footer {
display: flex;
height: 60px;
background-color: #BBBBBB;
justify-content: space-around;
align-items: center;
font-size: 12px;
}

#badges {
width: 70px;
display: flex;
justify-content: space-between;
}

#badges ion-icon {
width: 30px;
height: 30px;
}
#badges a {
color: #F2075D;
}
#badges a:hover {
color: #E34B8F;
}

#ws {
width: 70px;
text-align: center;
}




