body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8em;
    font-weight: 300;
}

p {
    margin-bottom: 2.5em;
}

h1,
h2,
h5 {
    font-family: "parkside", cursive;
    font-weight: 900;
    font-style: normal;
    text-transform: lowercase;
}

h1 {
    text-align: center;
    font-size: 8em;
    color: #fff;
    text-shadow: 3px 4px #000;

}

.page-heading {
    font-size: 5.5em;
}

h2 {
    font-size: 3.5em;
    margin-bottom: 1.4em;
    text-align: center;
}

h3 {
    font-size: 1.6em;
    font-weight: 600;
    margin: 0.6em 0;
}

h4 {
    font-size: 1.2em;
    font-weight: 600;
}

h5 {
    font-size: 1.8em;
}

.button-primary {
    font-size: 0.9em;
    font-weight: 600;
    display: block;
    padding: 12px 35px;
    background-color: #ffda18;
    border: 1px solid #000;
    border-radius: 50px;
    box-shadow: 2px 2px #000;
    transition: transform .05s ease-out;
    margin: 3em auto;
}

.button-primary:hover {
    cursor: pointer;
    transform: translate(1px, 1px);
    box-shadow: none;
}

.button-secondary {
    font-size: 0.8em;
    font-weight: 600;
    display: inline-block;
    padding: 5px 35px;
    border: 1px solid #000;
    border-radius: 50px;
    box-shadow: 2px 2px #000;
    transition: transform .05s ease-out;
}

.button-secondary a {
    color: #000;
    text-decoration: none;
}

.button-secondary:hover {
    transform: translate(1px, 1px);
    box-shadow: none;
}

section {
    margin: 0 auto;
}

.section-content {
    padding-top: 5em;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 7em;
}

/* ----------------------------------NAV---------------------------------- */
nav,
footer {
    background-color: #000;
    color: #fff;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    position: fixed;
    width: 100%;
    z-index: 1;
}

nav a,
footer a {
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.235px;
}

nav a:hover,
footer a:hover {
    font-weight: 600;
    letter-spacing: 0;
}

nav a::before {
    display: block;
    content: attr(title);
    font-weight: 600;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.navbar {
    display: flex;
    align-items: center;
    margin-right: 100px;

}

.nav-menu {
    display: flex;
    padding-right: 95px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.nav-list {
    display: flex;
    gap: 25px;
    margin-right: 20px;
}

.nav-buttons {
    display: flex;

}

.nav-button {
    background-color: #ffda18;
    box-shadow: 3px 3px #fff;
    border-radius: 50px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    margin-left: 20px;
    transition: transform .05s ease-out;
}

.round {
    width: 20px;
}

.long {
    width: 110px;
    display: flex;
    justify-content: space-around;
    color: #000;
    font-weight: 400;
}

.nav-button span {
    color: #000;
}

.nav-button:hover {
    transform: translate(2px, 2px);
    box-shadow: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    height: 2px;
    width: 20px;
    border-radius: 5px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

/* ----------------------------------HEADER---------------------------------- */
header {
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 700px;
}

.page-hero {
    height: 400px;
    padding-top: 40px;
}

#services {
    background-image: url("../img/services.png");
}

/* ----------------------------------PAGES---------------------------------- */
.light,
.dark {
    padding: 5em 15%;
}

.dark {
    background-color: #000;
    color: #fff;
}


/* ----------------------------------INTRO---------------------------------- */
.intro {
    margin: 0 10%;
}

.intro p {
    font-size: 1.2em;
    /* text-align: center; */
    line-height: 2em;
    margin-bottom: 0;
}


/* ----------------------------------SLIDER---------------------------------- */
.intro-slider {
    display: flex;
    align-items: stretch;
    height: 100vh;
}

.side-image {
    background-image: url("../img/intro-cocktails.jpg");
    background-size: cover;
    background-position: center;

    width: 50%;
}

.side-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.carousel-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel {
    position: relative;
    padding: 0 15%;
}

.carousel-track {
    position: relative;
    height: 300px;
    transition: transform 350ms ease-in-out;

}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    height: 10px;
}

.carousel-button img {
    height: 23px;
}

.left {
    left: 4%;
}

.right {
    right: 4%;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
    /* background-color: aqua;
    cursor: pointer; */
}

.carousel-indicator {
    border: none;
    border-radius: 50%;
    width: 10px;
    height: 12px;
    background-color: #d5d5d5;
    cursor: pointer;
}

.carousel-indicator.current-slide {
    background-color: #000;
}

.is-hidden {
    display: none;
}

/* -----------------------------COCKTAIL LINKS------------------------------ */
.cocktails {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    gap: 1.5em;
}

.cocktails a {
    color: #000;
    text-decoration: none;
    flex-basis: 260px;
}

.cocktail-card {
    border: 1px solid #000;
    border-radius: 20px;
    box-shadow: 3px 3px #000;
    height: 100%;
    flex-basis: 400px;
    transition: transform .05s ease-out;
}

.cocktail-card:hover {
    box-shadow: none;
    transform: translate(2px, 2px);
}

.cocktail-description {
    padding: 15px;
}

.cocktail-description p {
    font-size: 0.9em;
    line-height: 1.5em;
    padding-top: 0.5em;
    margin-bottom: 1em;
}

.cocktail-card-img {
    height: 200px;
    border-radius: 20px 20px 0 0;
}

#cocktail1 {
    background-image: url("../img/cocktail-1.png");
    background-size: cover;
    background-position: center;
}

#cocktail2 {
    background-image: url("../img/cocktail-2.png");
    background-size: cover;
    background-position: center;
}

#cocktail3 {
    background-image: url("../img/cocktail-3.png");
    background-size: cover;
    background-position: center;
}

#cocktail4 {
    background-image: url("../img/cocktail-4.png");
    background-size: cover;
    /* background-position: center; */
}

.ig-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
}

.ig-link:hover {
    font-weight: 600;
    cursor: pointer;
}

/* -----------------------------CONTACT------------------------------ */

.contact-section {
    display: flex;
    flex-direction: row-reverse;
    background-color: #f1f1f1;
}

.contact-image {

    background-size: cover;
    width: 35%;
}

#contact-home {
    background-image: url("../img/contact1.png");
}

#contact-services {
    background-image: url("../img/contact2.png");
    background-position: center;
}

.contact-form {
    margin: 5em 5%;
    width: 65%;
}

.form-row {
    display: flex;
}

.form-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 15px;
}

.contact-section label,
.contact-form legend {
    padding: 0 10px;
    font-size: 0.8em;
}

.contact-section input,
.contact-section select {
    border: 1px solid #000;
    border-radius: 20px;
    height: 38px;
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    margin-bottom: 10px;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
}

.contact-section textarea {
    border: 1px solid #000;
    border-radius: 20px;
    height: 38px;
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    margin-bottom: 10px;
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    height: 50px;
    width: 90%;
}

.contact-section .check-label {
    font-weight: 400;
    font-size: 0.9em;
}

.contact-section .check {
    height: 15px;
    width: 15px;
    border-radius: 3px;
    background-color: #ffda18;
    margin-right: 10px;
}

.checkbox-row input .check {
    width: 30px;
    height: 30px;
}

.form-row-check {
    padding-left: 16px;
    margin-bottom: 10px;
}

/* .checkbox-row {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */

/* .checkbox-row input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ffda18;
} */

/* .contact-form input:active,
.contact-form input:focus {
    border-color: #ffda18;
} */

/* .contact-section select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(https://stackoverflow.com/favicon.ico) 96% / 15% no-repeat #EEE;
} */



/* -----------------------------FOOTER------------------------------ */
footer {
    flex-direction: column;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 70%;
    padding: 2em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    width: 100%;
}

.tv {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.footer-socials img {
    height: 20px;
}

.tv img {
    width: 22px;
}

.copywrite {
    font-size: 0.8em;
    color: #afafaf;
}