/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root{
    --primary-accent: #7d916c;
    --secondary-accent: #9580A4;
    --primary-text: #29261E;
    --secondary-text: #5E5A54;
    --light-background: #FFFCF2;
    --card: #fdf6df;
    --dark-background: #1a1a1a;
    --font-secondary: 'Quicksand', sans-serif;
    --font-primary: "Bpmf Huninn", "Arial", sans-serif;
    --border: 2px solid var(--dark-background);
}

/* typography */
h1, h2, h3{
    font-family: var(--font-secondary);
    font-weight: bold;
    color: var(--primary-text);
    font-size: 2.5rem;
}

h3{
    font-size: 2.5em;
}

p, li{
    font-family: var(--font-primary);
    color: var(--primary-text);
}

.italic{
    font-style: italic;
}

/* layout */
header, footer{
    background-color: var(--light-background);
    padding: 10px;
}

body{
    background-color: var(--light-background);
}

img{
    max-width: 100%;
    height: auto;
}

svg, .socials{
    height: 45px;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rightNav{
    display: flex;
    align-items: center;
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 30px;
}

.logo img{
    border-radius: 100%;
    height: 60px;
    padding: 0px 2px;
}

.navButtons{
    display: flex;
    gap: 15px;
}

.navButtons a{
    background-color: var(--primary-text);
    color: var(--light-background);
    padding: 15px;
    border-radius: 50px;
    outline: 2px solid var(--card);
}

nav a:focus {
    outline: 3px solid var(--light-background);
    outline-offset: 3px;
}

.hero-img{
    padding: 3px 0px;
}

h2{
    font-size: 2rem;
}

.aboutInformation{
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

address p, #locations div p{
    color: #1a1a1a;
}

#locations{
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: var(--font-secondary);
    background-color: var(--card);
    border: 2px solid var(--dark-background);
    padding: 20px 50px 70px 30px;
    border-radius: 25px;
    box-shadow: 10px 10px var(--dark-background);
}
#story{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#story h2{
    font-size: 4rem;
}

#story p:last-child{
    
    max-width: 460px;
}

.accent{
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: var(--primary-accent);
    font-weight: bold;
    
}
#locations h2{
    text-align: center;
    padding-left: 20px;
    color: #1a1a1a;
}

#story p{
    max-width: 500px;
}

.bold{
    font-family: var(--font-secondary);
    font-weight: 800;
}

a[href="tel:"]{
    color: #543e63;
    text-decoration: underline;
}

#featuredDrinks h2 {
    font-size: 3em;
}

#featuredDrinks{
    display: flex;
    flex-direction: column;
    padding:2rem 5rem 5rem;
    gap: 20px;
}

.drinkDisplay{
    display: flex;
    gap: 20px;
}

.drinkContainer{
    width: 450px;
    height: 450px;
    overflow: hidden;
}

.drinkContainer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#drinkInfo p{
    margin-top: 25px;
    max-width: 500px;
    font-size: 1.3rem;
    line-height: 30px;
}
.gamePlay{
    background-color: var(--secondary-accent);
    padding: 100px 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gamePlay h2{
    font-size: 3em;
    padding: 0px 20px 20px;
}

.gamePlay p{
    text-align: center;
    max-width: 550px;
    margin-bottom: 15px;
}


#gameInput input{
    max-width: 75px;
    padding: 13px;
    border-radius: 50px;
    border: var(--border);
}

#gameMessage{
    font-style: italic;
    padding: 10px;
}

/* #franchising{
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--card);
    padding: 20px;
}

.franchTop{
    display: flex;
    gap: 25px;
    margin-top: 20px;
}



.franchTop div{
    flex: 1;
}

#franchising h2{
    font-size: 3rem;
    margin-bottom: 20px;
}

.franchisingLeft, .franchisingRight{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.question{
    font-size: 20px;
    padding: 10px 0px;
}

.indent{
    margin-left: 25px;
}

.franchBottom{
    padding: 0px 20px;
}

.franchBottom p:last-of-type{
    padding-top: 15px;
} */

#contact{
    background-color: var(--light-background);
    margin: 70px 0px;
}

#contact h2{
    color: #29261E;
    font-size: 4rem;
    text-align: center;
}

.formContainer{
    font-family: var(--font-secondary);
    font-weight: bold;
    border: var(--border);
    border-radius: 25px;
    padding: 2rem;
    margin: 2rem 15rem;
    background-color: var(--primary-accent);
    width: 650px;
    margin: 0 auto;
    
}

#contactForm{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-left: 110px;
}

#contactForm > div{
    display: flex;
    align-items: center;
    width: 100%;
    gap: 7px;
}

#contactForm label{
    width: 150px;
    text-align: right;
}

#contactForm input, #contactForm textarea{
    flex: .4;
    padding: 5px 10px;
    border-radius: 5px;
    box-sizing: border-box;
    
}
fieldset, #submitBtn, #thanksMsg{
    margin-right: 110px;
}

fieldset{
    display: flex;
}

footer{
    background-color: var(--light-background);
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p{
    color: #787878;
}

footer a{
    width: auto;
    height: 100px;
}

.required{
    font-weight: bold;
    color: #29261E;
    font-family: var(--font-primary);
    font-size: 1.5rem;
}
/* buttons & links */
a{
    text-decoration: none;
    color: inherit;
}

button{
    background-color: transparent;
    border: transparent;
    cursor: pointer;
    color: #1a1a1a;
}

.drinkButtons {
    display: flex;
    gap: 15px;
}

.drinkButtons li{
    flex: 1;
    text-align: center;
    padding: 15px;
    border: 2px solid var(--dark-background);
    border-radius: 3px;
}

.drinkButtons button{
    font-size: 1rem;
    font-family: var(--font-secondary);
    color: var(--dark-background);
}

.drinkButtons button:hover{
    text-decoration: underline;
}

#gameInput button{
    border-radius: 50px;
    padding: 10px 50px;
    border: 2px solid black;
    background-color: #543e63;
    color: white;
    font-family: var(--font-secondary);
    font-weight: bolder;
}

#contactForm button{
    border: var(--border);
    border-radius: 45px;
    background-color: var(--card);
    padding: 10px 20px;
}

body.darkMode{
    --light-background: #1a1a1a;
    --primary-text: #FFFCF2;
    --card: #959595;
    --dark-background: #FFFCF2;; 
}

.errorMsg{
    color: white;
    margin-top: 5px;
}