/* Site Design and Global Settings */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    /* margin: 0;
    padding: 0; */
    box-sizing: border-box;
}


:root {
    --headfont: "Playfair Display", serif;
    --bodyfont: "DM Sans", sans-serif;
    --headsize: 48px;
    --bodysize: 18px;
    --black: #0e0e0e;
    --white: #ffffff;
    --grey: #717171;
    --lightgrey: #efefef;
    --red: #7f0000;
    --yellow: #ff9d00;
    --line: 110%;
}

body {
    margin: 0;
    padding: 0;
    justify-content: center;
    width: 100%;
}

.layout {
    width: 1200px;
    align-self: center;
    justify-self: center;
}

.horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--headfont);
    font-weight: 500;
    text-transform: uppercase;
    line-height: var(--line);
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 90px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 48px;
}

h4 {
    font-size: 36px;
}

h5 {
    font-size: 28px;
}

h6 {
    font-size: 24px;
}

p {
    font-family: var(--bodyfont);
    font-size: var(--bodysize);
    font-weight: 400;
}

.bread {
    display: flex;
    justify-content: left;
    gap: 20px;
    padding: 16px 0;
}

.anch, .angle {
    color: var(--grey);
    font-size: 14px;
    font-family: var(--bodyfont);
    text-decoration: none;
}

.base {
    color: var(--yellow);
    font-size: 14px;
    font-family: var(--bodyfont);
}




/* Header */

header {
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
}

header .logo {
    width: 160px;
}

.logo img {
    width: 100%;
}

nav {
    width: 440px;
    width: 440px;
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: start;
}

nav a {
    font-family: var(--bodyfont);
    font-size: 16px;
    text-decoration: none;
    color: var(--black);
}

nav a:hover, nav a:active {
    color: var(--yellow);
}

.side-nav {
    width: 440px;
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: end;
} 

.side-nav img {
    width: 20px;
}





/* Footer */

footer {
    background-color: var(--black);
    padding: 80px 0;
}

.foot-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.foot {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.foot p, .foot a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--bodyfont);
    font-size: 16px;
    padding: 0;
    margin: 0;
}

.foot h6 {
    color: var(--white);
    padding-bottom: 8px;
}

.foot img {
    width: 160px;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.copyright {
    background-color: var(--yellow);
    margin-top: 80px;
    padding: 16px;
    display: flex;
    justify-content: center;
}

.copyright p {
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-align: center;
}





/* Homepage */

.hero {
    width: 100%;
    display: flex;
    flex-direction: row; 
}

.left {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding: 50px 0;
    background-color: var(--lightgrey);  
}

.left .box {
    box-sizing: border-box;
    width: 540px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 60px;
    height: 540px;
}

.right {
    width: 50%;
    height: 640px;
}

.right img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.featured {
    padding: 60px 0;
}

.ver-feature {
    gap: 40px;
}

.section-top {
    display: flex;
    width: 100%;
    justify-content: left;
}



/* Homepage Collection */


.collections-blk {
    width: 100%;
    gap: 40px;
}

.blk-left, .blk-right {
    width: 50%;
}

.blk-left {
    height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9)), url('/img/site/sparkling.jpg');background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.col-card {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    color: var(--white);
    text-decoration: none;
    padding: 40px;
    gap: 16px;
    justify-content: end;
}

.blk-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
} 

.card-up {
    height: 280px;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9)), url('/img/site/white-wine.jpg');background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.card-down {
    height: 280px;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9)), url('/img/site/rose_wine_bucket.webp');background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.coll {
    width: 100%;
    height: 280px;
    display: flex;
    flex-direction: column;
    color: var(--white);
    text-decoration: none;
    padding: 40px;
    gap: 16px;
    justify-content: end;
}

.collections-blk h5, .collections-blk p {
    padding: 0;
    margin: 0;
}

/* More / About Page */

.column {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.col {
    background: none;
    width: 50%;
}

.col h6 {
    font-size: 16px;
    font-family: var(--bodyfont);
    letter-spacing: 8%;
    color: var(--yellow);
    padding-bottom: 4px;
    
}

.column-left {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 8px;
}

.col img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.team-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-blk {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-blk img {
    width: 100%;
}

.team-blk h5 {
    font-family: var(--bodyfont);
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
}

.team-blk p {
    font-size: 16px;
}


/* Partners Page */

.ptn {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ptn img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}



/* Contact */

.contact {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0;
}

.contact-body {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.cnt-crd {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--lightgrey);
}

.cnt-crd p {
    color: var(--black);
    text-decoration: none;
    font-family: var(--bodyfont);
    font-size: 16px;
    padding: 0;
    margin: 0;
}

.cnt-crd h6 {
    color: var(--black);
    padding-bottom: 8px;
}

.maps {
    width: 100%;
}

.maps iframe {
    width: 100%;
    height: 480px;
    border: none;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px;
    border: 1px solid var(--lightgrey);
    box-sizing: border-box;
    gap: 40px;
}

.contact-form-content {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    gap: 12px;
}


#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--bodyfont);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    outline: none;
    font: inherit;
    font-family: var(--bodyfont);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: var(--bodyfont);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #555;
}

.error-message {
    min-height: 16px;
    font-size: 12px;
    font-family: var(--bodyfont);
    color: var(--red);
}

.submit-button {
    width: 100%;
    padding: 14px 30px;
    border: none;
    cursor: pointer;
    font-family: var(--bodyfont);
    font-size: 16px;
    background: var(--red);
    color: var(--white);
}

.submit-button:hover {
    color: var(--black);
    background-color: var(--yellow);
}

.form-success {
    font-size: 14px;
    font-weight: 600;
}
