/* ==========================
   Google Fonts
========================== */
@import url('https://fonts.googleapis.com/css2?family=Anaheim&family=Fira+Sans:ital,wght@0,100..900;1,100..900&family=Hepta+Slab:wght@1..900&family=Kanit:ital,wght@0,100..900;1,100..900&family=Oleo+Script:wght@400;700&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

/* ==========================
   Base / Reset Styles
========================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /*background-color: #2e363d;*/
}

li, a, button {
    font-family: 'Anaheim', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #e8e7da;
    text-decoration: none;
}

/* ==========================
   Header / Navigation
========================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #2e363d;
}

.logo {
    font-family: 'Anaheim', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #e8e7da;
    cursor: pointer;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #f07986;
}

.nav_links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav_links li a {
    transition: color 0.3s ease;
}

.nav_links li a:hover {
    color: #f07986;
}

/* ==========================
   Buttons
========================== */
button {
    padding: 9px 25px;
    background-color: #e8e7da;
    color: #2e363d;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: #f07986;
    color: #e8e7da;
}

/* ==========================
   Landing Page
========================== */
section.homepage {
    width: 100%;
    min-height: 91vh;
    background-color: #2e363d;
}

.home-text {
    width: 45rem;
    padding: 11rem 0 0 5rem;
    font-family: 'Anaheim', sans-serif;
    color: #e8e7da;
}

.home-text .greetings {
    font-weight: 500;
    font-size: 2rem;
}

.home-text .store-name {
    font-size: 5rem;
}
.home-text .store-smallDescription{
    line-height: 1.6;
}

.button-orderNow {

    padding-left: 5rem;
    padding-top: 2rem;
}

.store-image {
    position: absolute;
    top: 4rem;
    right: 0;
    z-index: 0;
}

/* ==========================
   About Section
========================== */
.about-store {
    width: 100%;
    min-height: 100vh;
    background-color: #e8e7da;
    padding: 5rem 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'anaheim';
}

.about-title {
    font-family: 'Anaheim', sans-serif;
    font-size: 2.5rem;
    background-color: transparent;
    font-weight: bold;
}
.about-store .img-barista{
    display: grid;
    grid-template-columns: repeat(2,200px);
    gap: 20px;
    justify-content: start;
    padding: 30px;
    padding-left: 70px;
}
.about-store .img-barista img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
/*Has error*/
.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-left: 70px;
}

.about-content .barista-description{
    text-align: center;
    padding-top: 50px;
}
.about-content .barista-description .barista-title{
    font-size: 2rem;
    font-weight: 4rem;
}
.about-content .barista-description .store-description{
    width: 45rem;
    padding-top: 2rem;   
    text-align: left;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.8;
    
}
.feedbacks {
    width: 100%;
    height: 100vh;
    background-color: #2e363d;
    color: #e8e7da;
}
