:root {
    --headercolor: #6E421F;
    --headerbg: #F7F5ED;
    --text_bgcolor: #F7F5ED;
    --textcolor2: #232323;
    --textshadow: rgba(255, 255, 255, 0.25);
    --buttonbg: rgba(245, 142, 142, 0.25) rgba(0, 0, 0, 0.25);
    --quotebg: url(imgs/quote-bg.png);
}

.darkmode {
    --headercolor: #F7F5ED;
    --headerbg: #6E421F;
    --text_bgcolor: #232323;
    --textcolor2: #F7F5ED;
    --textshadow: rgba(0, 0, 0, 0.25);
    --buttonbg: rgba(247, 245, 237, 0.25);
    --quotebg: url(imgs/quote-bg-dark.png);
}

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

body {
    margin: 0 auto;
}

/* text styles */

h2 {
    font-size: 64px;
    font-family: "EB Garamond";
    font-weight: 700;
    font-style: normal;
    color: var(--textcolor2);
}

h3 {
    font-size: 32px;
    max-width: 365px;
    color: var(--textcolor2);
    font-style: normal;
    font-weight: 700;
    text-align: center;
    font-family: "EB Garamond";
}

h4 {
    font-size: 24px;
    font-family: Merriweather;
    font-style: normal;
    font-weight: 900;
    color: var(--headercolor);
}

h5 {
    font-size: 20px;
    font-family: Merriweather;
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--textcolor2);
}

h6 {
    color: var(--textcolor2);
    text-align: center;
    font-family: "EB Garamond";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

p {
    font-size: 14px;
    font-style: normal;
}

.merriweather-blackitalic {
    font-family: Merriweather;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 1px 2px var(--textshadow);
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: var(--headercolor);
    color: var(--text_bgcolor);
}

.lato-regular {
    font-weight: 400;
    font-family: Lato;
    color: var(--textcolor2);
}

.merriweather-regular {
    color: var(--headercolor);
    font-family: Merriweather;
    font-weight: 700;
}

/* text styles */

/* header start */

header {
    background-color: var(--headerbg);
    height: 100px;
    display: flex;
    flex-direction: row;
    padding-left: 100px;
    padding-right: 100px;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

button {
    border-radius: 20px;
    background: var(--headercolor);
    box-shadow: var(--buttonbg);
    padding: 10px 20px;
    font-family: Merriweather;
    font-size: 16px;
    font-weight: 900;
    color: var(--text_bgcolor);
}

/* header end */


/* section start */

section {
    background-image: url(imgs/bg1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    padding-top: 75px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 130px;
    padding-right: 130px;
}

.drink-section {
    background-image: url(imgs/drink-bg.svg);
    height: 425px;
    width: 490px;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 60px;
    align-items: center;
    justify-content: center;
    padding-bottom: 70px;
}

img {
    height: 242px;
}

.section-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.genre-box {
    background-color: var(--text_bgcolor);
    height: 150px;
    width: 425px;
    gap: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-box {
    background-image: var(--quotebg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 298px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding-bottom: 74px;
}

/* section end */


