* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    scroll-behavior: smooth;
    transition: .3s;
    font-family: "Open Sans", sans-serif;

}

body {
    height: 100%;
    width: 100%;
}

/* --------HEADER-------- */
header {
    padding: .5rem 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: fixed;
    align-items: center;
    background: white;
    z-index: 999;
}

a {
    font-size: 16px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin: .5rem 1rem;
}

a:hover {
    font-size: large;
    text-decoration: overline;
    color: rgb(124, 97, 62);
}

/* --------HERO-------- */
.home {
    padding-top: 5rem;
    background: url(coffee\ first.png) no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    margin-top: 15rem;
    margin-left: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.container h3 {
    letter-spacing: 4px;
    font-weight: lighter;
    text-transform: uppercase;
    font-size: xx-large;
}

.container button {
    margin-top: 1rem;
    padding: .5rem 2rem;
    background-color: #6f4e37;
    color: white;
    border: none;
}

.container button:hover {
    background: #7c7c7c;
    font-weight: bold;
}

/* Section layout */
.coffee {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    gap: 60px;
    height: 90vh;
    width: 100%;
    padding-top: 5rem;
}

/* Containers */
.leftcontainer {
    width: 50%;
}

.rightcontainer {
    width: 50%;
}

/* Images */
.coffee img {
    width: 40rem;

}

/* About heading */
.about {
    position: relative;
    margin-bottom: 25px;
    letter-spacing: 4px;
}

.about h1 {
    font-size: 60px;
    color: #c7a17a;
}

.about h3 {
    position: absolute;
    top: 65%;
    left: 6%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Description */
.aboutdes {
    position: relative;
}

.aboutdes h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: #777;
    position: absolute;
    letter-spacing: 2px;
    left: -15%;
    margin-bottom: 1rem;
    top: 0;
}

.aboutdes h5 {
    position: absolute;
    font-size: 16px;
    color: #777;
    left: -8%;
}

.aboutdes p {
    padding: 2rem 1rem;
    line-height: 1.6;
    color: #444;
}

/* Button */
.aboutdes button {
    margin-top: 1rem;
    padding: .5rem 2rem;
    background-color: #6f4e37;
    color: white;
    border: none;
}

.aboutdes button:hover {
    background: #7c7c7c;
    font-weight: bold;
}

/*-------- MENU-------- */

.MENU {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 2rem 5%;
    margin: 0;
    padding-top: 5rem;
}

.menuhead {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
}

.menuhead h1 {
    font-size: 60px;
    color: #c7a17a;
    letter-spacing: 4px;
}

.menuhead h3 {
    position: absolute;
    top: 50%;
    left: 2.5%;
    background: #fff;
    padding: 0;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: 400;

}

.menucontainer {
    display: flex;
    justify-content: space-between;
    gap: 5rem;

}

.menu-box {
    position: relative;
    display: flex;
    flex-direction: column;

}

.menu-box h6 {
    padding: 1rem 0;
    font-size: 18px;
    font-weight: bold;
    color: #c7a17a;
    letter-spacing: 1px;
}

.menu-box p {
    margin-left: 2rem;
    font-size: 12px;
    font-weight: 400;
}

.menu-box span {
    display: inline-block;
    color: #da3aaa;
    font-size: 22px;
    margin-left: 2rem;
}

.MENU button {
    margin-top: 4rem;
    padding: .5rem 2rem;
    background-color: #6f4e37;
    color: white;
    border: none;
}

.MENU button:hover {
    background: #7c7c7c;
    font-weight: bold;
}

/* section 7 */

.social-media {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;

}

.instagram {
    position: relative;
    transform: translateX(45%);
}

.instagram p {
    position: absolute;
    color: beige;
    padding: .5rem 1rem;
    background: black;

}

.images {
    width: 100%;
    display: flex;
    padding: .5rem 2rem;
}

.images img {
    width: 100%;
}

/* FOOTER */

footer {
    width: 100%;
    height: 40vh;
    padding: 3rem 5%;
    display: flex;
    justify-content:space-between;
    background: url(images\ \(3\).jpeg) center;
    background-size: cover;
    backdrop-filter: 20%;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 1);
    color: #d9d9d9;
    gap: 0 1rem;
}

footer h5 {
    margin: .6rem 0;
    font-weight: 400;
}
footer i {
    margin-right: 10px;
}