/* #2c3e50 -- blue */
/* #e67e22 -- orange */
/* #f4f4f4 -- white */
/* #ecf0f1 */
/* #ddd */
/* 
--barn-red: #520101;
--fire-brick: #c1121fff;
--papaya-whip: #fdf0d5ff;
--prussian-blue: #003049ff;
--air-superiority-blue: #669bbcff;
*/

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

* {
    font-family: "Source Serif 4", serif;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

/* Header */

header {
    background-color: #520101;
    color: #fdf0d5ff;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.bulletin {
    padding: 10px;
}

/* End of Header */

/* Login */

.login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 10px 40px;
}

.login-logo {
    min-height: 75px;
    max-width: 175px;
}

.login-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.login-text {
    margin-left: 15px;
    font-weight: bold;
}

/* End Of Login */

/* Banner */

.banner-image {
    width: 100%;
}

/* End Of Banner */

/* About  */

.about {
    background-color: #fdf0d5ff;
    color: #520101;
    padding: 80px 20px;
    text-align: center;
    width: 100%;
}

.title {
    font-size: 48px;
    font-weight: bold;
}

.info {
    margin: 20px auto;
    width: 70%;
}

/* End of Banner */


/* Featured Wines */

.section_wine {
    background-color: white;
    padding: 50px 0;
}

.featured_wines {
    color: #520101;
    font-family: "Source Serif 4", serif;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px;
}

.wine-card {
    background-color: #fdf0d5ff;
    border: 2px solid #520101;
    border-radius: 12px;
    box-shadow: 3px 3px 3px #520101;
    margin: 10px;
    padding: 20px;
    text-align: center;
    max-width: 375px;
}

.collection {
    border-radius: 10px;
    width: 250px;
}

.price {
    font-size: 24px;
    padding: 10px;
}

.btn {
    background-color: #003049ff;
    border: 2px solid black;
    border-radius: 25px;
    box-shadow: 5px 5px 7px black;
    color: whitesmoke;
    padding: 5px 7px;
    max-width: 150px;
}

/* End of Wine Features */

/* Specials */

.specials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fdf0d5ff;
    color: whitesmoke;
    padding: 40px 20px 80px;
}

.image-specials {
    margin: 10px;
    width: 425px;
}

/* End Of Specials */

/* Footer Info */

.footer-info {
    display: flex;
    /* align-items: top; */
    flex-wrap: wrap;
    background-color: #520101;
    color: #fdf0d5ff;
    padding: 30px;
}

.col {
    margin: 10px;
    width: 350px;
}

.statement {
    font-size: 20px;
}

.hours {
    /* min-width: 20%; */
}

.contact {
    /* min-width: 20%; */
}

.contactForm {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.footer {
    background-color: #520101;
    color: #fdf0d5ff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    padding: 20px;
}

.form-input {
    margin: 10px;
}

.social {
    text-decoration: none;
    color: #fdf0d5ff;
}

.business {
    color: #fdf0d5ff;
}

/* Enf Of Footer Info */









