@import url("foundation.css");
@import url("foundation-float.css");
@import url("foundation-prototype.css");
@import url("foundation-rtl.css");
/* Imported style sheets MUST be the first item listed. */

/* Reset styles. */

* {
    margin: 0;
    padding: 0;
}

/* Set variables. */

:root {
    --text: #ffff3d;
    --box: rgba(255, 0, 127, .40);
}

/* General page element styles. */

html, body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    height: 100%;
    margin: 0;
}

html {
    background-color: rgb(34, 34, 34);
}

body {
    position: relative;
    opacity: 0;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    /* Safari */
    height: 110%;
}

.hero-img {
    background-image: url("../images/bg_recipes.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

header {
    background-color: var(--box);
    color: var(--text);
    border-bottom: 4px dotted var(--text);
}

.header-title {
    margin-bottom: 0rem;
    font-family: 'Pacifico', cursive;
    font-size: 4em;
}

main {
    color: var(--text);
}

.column-container {
    background-color: var(--box);
    /* backdrop-filter: saturate(180%) blur(1rem); */
    margin: 15px;
    padding: 15px;
    border: 1px groove var(--text);
    color: var(--text);
    border-radius: 15px;
}

.centertext {
    text-align: center;
}
/* Footer Styles */

footer {
    color: var(--text);
    background-color: var(--box);
    width: 100%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    position: fixed;
}

footer h2 {
    font-weight: bold;
    font-size: 1.5em;
    color: var(--text);
    margin-right: 10px;
}

.footer-btn {
    padding: 5px 10px;
    font-size: 16px;
    background: var(--text);
    color: var(--box);
    border-radius: 15px;
    text-shadow: none;
    border: 3px;
    border-style: inset;
    border-color: var(--box);
}

.footer-btn:not(:last-child) {
    margin-right: 5px;
}

footer a {
    color: var(--box);
}

footer a:hover {
    text-shadow: 0 0 3px var(--box);
    color: var(--box);
}

#footer-container {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    text-align: center;
}

.fancy-heading {
    font-family: 'Pacifico', cursive;
}

.centerelement {
    margin: 0 auto;
}
/*end footer styles*/

/* search bar and base liquor div*/
.sidebar-heading {
    font-size: 1.5em;
    font-weight: bold;
}

.drink-icon {
    font-size: 1.3em;
    min-height: 25px;
    padding: 1px;
}

.sidebar-interactions {
    padding: 25px;
}
/*drink searched and video divs*/
.box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgwrap {
    width: 50%;
    /*or whatever you choose*/
    margin: auto;
}

.imgwrap img {
    display: block;
    width: 100%;
    max-width: 500px;
    /*actual image width*/
    height: auto;
    /* maintain aspect ratio*/
    margin: auto;
    /*optional centering of image*/
}

.drink-img {
    border: 3px outset var(--text);
    border-radius: 15px;
    justify-self: center;
    max-width: 300px;
    max-height: 300px;
}

.recipe-content {
    border-bottom: 1px solid;
    margin: 20px auto 10px auto;
    width: 30%;
    color: var(--text);
    text-align: center;
}

.recipe-content-h2 {
    border-bottom: 2px solid;
    margin: 20px auto 10px auto;
    width: 50%;
    color: var(--text);
}

.video-size {
    height: 600px;
    width: 96.4%;
    padding-left: 3%;
}

.video-size:after {
    content: '';
    display: block;
}

iframe {
    width: 99%;
    height: 85%;
}

.video {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 20px;
}

#youtube {
    display: none;
}

#dynamic-content-block {
    display: none;
}

/* Presearch */
#presearch-placeholder {
    display: inline-block;
}

.static-quote {
    text-align: center;
    opacity: 65%;
}

.static-quote span {
    font-size: .65em;
}

/* Button Styles */

.btn {
    padding: 10px;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background: var(--text);
    color: var(--box);
    text-shadow: none;
    border: var(--background);
    border: 2px;
    border-style: dotted;
}

.search-btn {
    padding: 5px 5px;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background: var(--text);
    color: var(--box);
    text-shadow: none;
    border: var(--background);
    border: 2px;
    border-style: dotted;
}

.search-btn:hover {
    text-shadow: 0 0 3px var(--box);
    cursor: pointer;
}

.recent-search-terms {
    padding: 10px 10px;
    font-size: 18px;
    background: none;
    color: var(--text);
    text-shadow: none;
    border: 2px;
    border-style: dotted;
    margin: 0px 5px 5px 0px;
}

.recent-search-terms:hover {
    text-shadow: 0 0 3px var(--text);
    cursor: pointer;
}

.drinks-suggested {
    padding: 10px 10px;
    margin: 5px;
    font-size: 18px;
    font-weight: bold;
    background: var(--text);
    color: var(--box);
    text-shadow: none;
    border: 2px outset var(--box);
}

.drinks-suggested:hover {
    text-shadow: 0 0 3px var(--box);
    cursor: pointer;
}

.is-grouped {
    display: block;
    margin-top: 15px;
}

.is-grouped>.drinks-suggested:not(:last-child) {
    margin-right: 10px;
}

.btn:hover {
    /* font-weight: bolder; */
    color: var(--box);
    cursor: pointer;
    text-shadow: 0 0 3px var(--box);
}

#clear-btn {
    background-color: var(--text);
    display: none;
    width: auto;
    cursor: pointer;
    margin-top: 20px;
}

#dropdown {
    display: inline-block;
}

.push {
    height: 5em;
}



/* Dropdown Content (Hidden by Default) */
#drop-list {
    background-color: var(--text);
    color: rgba(66, 0, 33, .75);
    font-weight: bolder;
    margin-bottom: -.25rem;
    opacity: .75;
    border-radius: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
    text-align: center;
    font-size: 1em;
}
/*.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}*/

/* Links inside the dropdown */

/*.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}*/

.error {
    color: red;
}

@media screen and (max-width: 980px) {
    .push {
        height: 0em;
    }
    .sidebar-heading {
        font-weight: bolder;
        font-size: 2.15em;
        margin-bottom: .5em;
    }
    .static-quote {
        font-size: 2em;
        font-weight: bolder;
    }
    footer {
        position: static;
    }
}

@media screen and (max-width:768px) {
    .push {
        height: 0em;
    }
    .sidebar-heading {
        font-weight: bolder;
        font-size: 2.15em;
        margin-bottom: .5em;
    }
    .subheading {
        font-weight: bolder;
        font-size: 1.55em;
    }
    .sidebar-interactions {
        align-items: center;
        padding: 30px;
    }
    .recipe-content {
        font-size: 1.45em;
        width: 75%;
    }
    #cocktail-name-main {
        font-size: 2em;
    }
    #ingredients-list-div {
        padding-left: 175px;
        margin: auto;
        font-size: 1.2em;
    }
    #directions {
        margin: auto;
        font-size: 1.2em;
    }
    .static-quote {
        font-size: 2em;
        font-weight: bolder;
    }
    /* Footer Styles */
    footer h2 {
        font-weight: bold;
        font-size: 2em;
        color: var(--text);
    }
    .footer-btn {
        padding: 10px 10px;
        font-size: 1.5em;
        margin-top: 10px;
        margin-left: 10px;
        width: 80%;
    }
    #footer-container {
        justify-content: center;
    }
}

@media screen and (max-width: 575px) {
    .push {
        height: 0em;
    }
    .static-quote {
        font-size: 2em;
        font-weight: bolder;
    }
    #cocktail-name-main {
        font-weight: bolder;
        font-size: 2.25em;
    }
    .sidebar-heading {
        font-weight: bolder;
        font-size: 2.15em;
        margin-bottom: .5em;
    }
    .subheading {
        font-weight: bolder;
        font-size: 1.55em;
    }
    .sidebar-interactions {
        align-items: center;
        padding: 30px;
    }
    .column-container {
        align-items: center
    }
    #ingredients-list-div {
        padding-left: 70px;
        margin-bottom: 15px;
    }
    /* Button Styles */
    .recent-search-terms {
        font-weight: bolder;
        font-size: 1.5em;
    }
    #clear-btn {
        width: 100%;
        font-weight: bolder;
        padding: 12px 12px;
        border-radius: 15px;
    }
    /* Footer Styles */
    footer {
        height: auto;
        margin: auto;
        text-align: center;
        /* display: flex; */
    }
    footer h2 {
        font-weight: bold;
        font-size: 2em;
        color: var(--text);
    }
    .footer-btn {
        justify-content: center;
        text-shadow: none;
        width: 80%;
    }
    footer a {
        color: var(--box);
    }
    #footer-container {
        justify-content: center;
    }
}