* {
    scroll-behavior: smooth;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    background: #FFFBF5;
}

/* ============================================================== */
/* =========================== NAVBAR =========================== */
/* ============================================================== */

.nav {

    width: 100%;
    height: 120px;
    position: fixed;
    z-index: 5;
    justify-content: space-between;
    align-items: center;
    display: flex;
    padding: 0 10.4vw;
    font-family: 'Poppins', sans-serif;
    background: #FFFBF5;

    transition: 0.5s;
    
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container a span{
    font-weight: bold;
    font-size: 36px;
    color: #FFB649;

    transition: 0.3s;
}

.logo-container a{
    font-weight: 500;
    font-size: 36px;
    color: #372D24;
    text-decoration: none;
    padding: 0 20px;

    transition: 0.3s;
}

.logo-container img {
    width: 72px;
    height: 72px;
    
    transition: 0.3s;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
}

.menu li {
    padding: 0 25px;
}

.menu .active {
    font-weight: bold;
    font-weight: 500;
}

.menu li a {
    font-weight: 300;
    text-decoration: none;
    color: #372D24;
    font-size: 25px;
    letter-spacing: 0.2em;

    transition: 0.3s;
}

.menu svg {
    cursor: pointer;
}

/* ============================================================== */
/* =========================== HOME ============================= */
/* ============================================================== */

.home {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10.4vw;
    font-family: 'Poppins', sans-serif;

}

/* TEXT */

.home-text-container {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    letter-spacing: -0.055em;
}

.home-text-container h1{
    font-size: 96px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;

    color: #41352A;
}

.home-text-container h1 span:nth-of-type(1) {
    font-weight: 500;
    color: #FFB649;
}

.home-text-container h1 span:nth-of-type(2) {
    font-style: normal;
    font-weight: 300;
    color: #41352A;
}

.home-text-container h1 span:nth-of-type(3) {
    color: #FFB649;
}

.home-text-container p {
    padding: 45px 0;
    font-style: normal;
    font-weight: normal;
    font-size: 23px;
    color: #A09E9A;
}

.buttons {
    display: flex;
    text-align: center;
    margin-top: 50px;
}

.buttons button:nth-of-type(1) {
    height: 66px;
    width: 228px;
    background: #FFB649;
    border: none;
    font-style: normal;
    font-size: 25px;
    letter-spacing: 0.1em;
    color: white;
    font-weight: 500;

    transition: 0.3s;
}

.buttons button:nth-of-type(2) {
    margin: 0 60px;
    height: 66px;
    width: 228px;
    border: 2px solid #FFB649;
    font-size: 25px;
    letter-spacing: 0.1em;
    color: #FFB649;
    font-weight: 500;
    background: #FFFBF5;

    transition: 0.3s;
}

.buttons button:hover {
    cursor: pointer;
    letter-spacing: 0.15em;
}

/* IMGS */

.right-side {
    display: flex;
    justify-self: center;
    align-items: center;
    margin-top: 80px;
}

.right-side img {
    height: 500px;
    width: 632px;
}

/* ============================================================== */
/* =========================== SIDEBAR ========================== */
/* ============================================================== */

.sidebar {
    background: rgba(255, 255, 255, 0.925);

    width: 35vw;
    height: 100%;

    position: fixed;
    right: -100%;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;

    transition: 0.6s;
}

.close {

    width: 30px;
    height: 30px;

    position: absolute;
    top: 45px;
    margin-right: 58px;

    transition: 0.4s;

}

.sidebar ul {
    display: flex;
    justify-content: space-between;
    height: 50%;
    width: auto;
    text-align: center;
    flex-direction: column;
    list-style-type: none;

}


.sidebar a {
    font-family: 'Poppins', sans-serif;
    color: black;
    text-decoration: none;
    font-size: 32px;
    font-weight: 300;

    transition: 0.4s;
}

.line {
    position: absolute;
    width: 4px;
    height: 100%;
    background: #FFB649;
    right: 29px;
}

.offer-sidebar {
    background: #FFB649;
    border-radius: 30px;
    justify-content: space-between;
    align-items: center;
    width: 140px;
    height: 50px;
    display: flex;
    padding: 0 30px;

    transition: 0.3s;
}

.offer-sidebar img{
    width: 20px;
    height: 20px;
    background: #FFB649;
}

.offer-sidebar a{
    color: white;
    font-size: 20px;
    background: #FFB649; 
}

.explore-sidebar {
    border: 3px solid #FFB649;
    border-radius: 30px;
    justify-content: space-between;
    align-items: center;
    width: 140px;
    height: 50px;
    display: flex;
    padding: 0 20px;

    transition: 0.3s;
}

.explore-sidebar img{
    width: 10px;
    height: 10px;
}

.explore-sidebar a{
    color: black;
    font-size: 20px;
}

.explore-sidebar:hover {
    cursor: pointer;
    transform: scale(1.030);
}
.offer-sidebar:hover {
    cursor: pointer;
    transform: scale(1.030);
}

.ham {
    display: none;
    transition: 0.3s;
}

.ham:hover {
    cursor: pointer;
    transform: rotate(6deg);
}

.close:hover {
    cursor: pointer;
    transform: rotate(45deg);
}

/* CIRCLES */

.circle:nth-of-type(1) {
    position: absolute;
    width: 33px;
    height: 33px;
    background: #FFB649;
    border-radius: 50%;
    z-index: 5;
    right: -14px;
    top: 1%;
}

.circle:nth-of-type(2) {
    position: absolute;
    width: 43px;
    height: 43px;
    background: #FFB649;
    border-radius: 50%;
    z-index: 5;
    right: -19px;
    top: 9%;
}

.circle:nth-of-type(3) {
    position: absolute;
    width: 23px;
    height: 23px;
    background: #FFB649;
    border-radius: 50%;
    z-index: 5;
    right: -9px;
    top: 23%;
}

.circle:nth-of-type(4) {
    position: absolute;
    width: 43px;
    height: 43px;
    background: #FFB649;
    border-radius: 50%;
    z-index: 5;
    right: -19px;
    top: 30%;
}

.circle:nth-of-type(5) {
    position: absolute;
    width: 23px;
    height: 23px;
    background: #FFB649;
    border-radius: 50%;
    z-index: 5;
    right: -9px;
    top: 43%;
}

.circle:nth-of-type(6) {
    position: absolute;
    width: 33px;
    height: 33px;
    background: #FFB649;
    border-radius: 50%;
    z-index: 5;
    right: -14.5px;
    top: 51%;
}

.circle:nth-of-type(7) {
    position: absolute;
    width: 23px;
    height: 23px;
    background: #FFB649;
    border-radius: 50%;
    z-index: 5;
    right: -9px;
    top: 63%;
}

.circle:nth-of-type(8) {
    position: absolute;
    width: 33px;
    height: 33px;
    background: #FFB649;
    border-radius: 50%;
    z-index: 5;
    right: -14.5px;
    top: 69%;
}

.circle:nth-of-type(9) {
    position: absolute;
    width: 43px;
    height: 43px;
    background: #FFB649;
    border-radius: 50%;
    z-index: 5;
    right: -19px;
    top: 79%;
}

.circle:nth-of-type(10) {
    position: absolute;
    width: 33px;
    height: 33px;
    background: #FFB649;
    border-radius: 50%;
    z-index: 5;
    right: -14.5px;
    top: 94%;
}

/* ============================================================== */
/* =========================== OFFER ============================ */
/* ============================================================== */

.offer {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 12vh 0;
}

.offer-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-text-container h1{
    font-size: 96px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.055em;

    color: #41352A;
}

.offer-text-container h1 span {
    font-weight: 500;
    color: #FFB649;
}

.offer-text-container p {
    text-align: center;
    padding: 45px 0;
    font-style: normal;
    font-weight: normal;
    font-size: 23px;
    color: #A09E9A;
}

.cards {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10.4vw;
}

.tea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 296px;
    height: 443px;
    border-radius: 30px;
    box-shadow: 0px 10px 18px 10px rgba(0,0,0,0.1);
    background: #FFFBF5;
    padding: 50px 0;
    filter: none;

    transition: 0.3s;
}

.tea h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 146.5%;
    color: #41352A;
}


.tea p {
    color: #A09E9A;
    text-align: center;
}

.coffee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 296px;
    height: 443px;
    border-radius: 30px;
    box-shadow: 0px 10px 18px 10px rgba(0,0,0,0.1);
    background: #FFFBF5;
    padding: 50px 0;
    filter: none;

    transition: 0.3s;
}

.coffee h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 146.5%;
    color: #41352A;
}

.coffee p {
    color: #A09E9A;
    text-align: center;
}

.cakes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 296px;
    height: 443px;
    border-radius: 30px;
    box-shadow: 0px 10px 18px 10px rgba(0,0,0,0.1);
    background: #FFFBF5;
    padding: 50px 0;
    filter: none;

    transition: 0.3s;
}

.cakes h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 146.5%;
    color: #41352A;
}

.cakes p {
    color: #A09E9A;
    text-align: center;
}

.cookies {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 296px;
    height: 443px;
    border-radius: 30px;
    box-shadow: 0px 10px 18px 10px rgba(0,0,0,0.1);
    background: #FFFBF5;
    padding: 50px 0;
    filter: none;

    transition: 0.3s;
}

.cookies h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 146.5%;
    color: #41352A;
}

.cookies p {
    color: #A09E9A;
    text-align: center;
}

.tea:hover {
    cursor: pointer;
    transform: scale(1.020);
    filter: drop-shadow(0px 0px 20px rgba(231, 231, 231, 0.493));
}
.coffee:hover {
    cursor: pointer;
    transform: scale(1.020);
    filter: drop-shadow(0px 0px 20px rgba(231, 231, 231, 0.493));
}
.cakes:hover {
    cursor: pointer;
    transform: scale(1.020);
    filter: drop-shadow(0px 0px 20px rgba(231, 231, 231, 0.493));
}
.cookies:hover {
    cursor: pointer;
    transform: scale(1.020);
    filter: drop-shadow(0px 0px 20px rgba(231, 231, 231, 0.493));
}

/* ============================================================== */
/* =========================== ABOUT US ========================= */
/* ============================================================== */

.about {
    width: 100%;
    height: 100vh;
    padding: 0 10.4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    scroll-margin-top: 70px;
}

.left-side img {
    width: 46vw;
    height: 62.65vh;
}

.about-text-container h1{
    font-size: 96px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.055em;
    text-align: right;

    color: #41352A;
}

.about-text-container h1 span {
    font-weight: 500;
    color: #FFB649;
}

.about-text-container p {
    text-align: center;
    padding: 45px 0;
    font-style: normal;
    font-weight: normal;
    font-size: 23px;
    color: #A09E9A;
    text-align: right;
    width: 468px;
  
}

.about-text-container button {
    width: 228px;
    height: 66px;
    background: #FFB649;
    border: none;
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    color: #FFFFFF;

    transition: 1s;
}

.about-text-container button:hover {
    cursor: pointer;
    letter-spacing: 0.10em;
}

/* ============================================================== */
/* =========================== CONTACT ========================== */
/* ============================================================== */

.contact {
    width: 100%;
    height: 100vh;
    padding: 0 10.4vw;
    font-family: 'Poppins', sans-serif;
    scroll-margin-top: 100px;

    justify-content: center;
    align-items: center;
}

.contact-forms {
    width: 100%;
    height: 100%;
}

.contact-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-text-container h1{
    font-size: 96px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.055em;

    color: #41352A;
}

.contact-text-container h1 span {
    font-weight: 500;
    color: #FFB649;
}

.forms h4 {
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: 113%;
    letter-spacing: -0.055em;

    color: #979797;
    padding: 5px 0;
}

.forms {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 10px 0;
}

::placeholder {
    color: #c0beb9;
}

.contact-forms input {
    width: 35vw;
    border-radius: 10px;
    border: 1px solid #666666;
    padding: 0 10px;
    font-size: 20px;
    outline: none;
    
    transition: 0.5s;
}

.name {
    height: 6vh;
}

.subject {
    height: 6vh;
}

.email {
    height: 6vh;
}

.forms textarea {
    height: 20vh;
    resize: none;
    width: 35vw;
    padding: 10px 10px;
    outline: none;

    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;

    border-radius: 10px;
    border: 1px solid #666666;

    transition: 0.5s;
}

.forms input:focus {
    transform: scale(1.010);
    filter: drop-shadow(0 0 6px #3c48f7c0);
}

.forms textarea:focus {
    transform: scale(1.010);
    filter: drop-shadow(0 0 6px #3c48f7c0);
}

.contact img {
    margin-top: 50px;
    width: 763px;
    height: 694px;
}

.contact-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.contact-forms button {
    width: 8vw;
    height: 5vh;
    border-radius: 10px;
    background: #FFB649;
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 128.5%;
    color: #FFFFFF;
    border: none;
    margin-top: 20px;

    transition: 0.3s;
}

.contact-forms button:hover {
    cursor: pointer;
    letter-spacing: 0.10em;
}


/* ============================================================== */
/* =========================== FOOTER =========================== */
/* ============================================================== */

.footer {

    background: #FFEBCE;
    height: 15vh;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;

}

.footer-text-container {

    color: black;
    letter-spacing: .1vw;
    font-size: 20px;

}

.footer-text-container a {

    color: black;
    font-weight: bold;
    text-decoration: underline;
    font-size: 20px;

}
