* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background-color: #fefefe;
    min-height: 600px; 
}

.title {
    font-family: Poppins;
    font-size: 70px;
    color: #1A1A1A;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    margin-left: 35px;
    padding-top: 20px;
}

.title-2 {
    font-family: Poppins;
    font-size: 45px;
    color: #1A1A1A;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    margin-left: 35px;
}

.subtitle {
    color: #2C1810;
    font-size: 25px;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    margin-left: 35px;
}

button {
    position: relative;
    top: 10px;
    left: 30px;
    background-color: #925924;
    color: #FFFF;
    border-radius: 50px;
    width: 15%;
    height: 50px;
    border: none;
    font-size: 20px;
    transition: box-shadow 0.5s, font-size 0.5s, color 0.5s, height 0.5s, transform 0.5s, background-color 0.5s;
}
button:hover {
    cursor: pointer;
    font-size: 25px;
    color: #000000;
    transform: scale(1.05) translateY(-10px);
    height: 55px;
    background-color: #c7762a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.coffee {
    border-radius: 20%;
    position: absolute;
    right: 100px;
    top: 15%;
    width: 500px;
}

.title-3 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    color: #1A1A1A;

    display: flex;
    align-items: center;
    text-align: center;
}

.title-3::before, 
.title-3::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid #1A1A1A;
}

.about {
    background-color: #fefefe;
    min-height: 450px; 
}

.about-text {
    text-align: center;
    padding-bottom: 15px;
}


.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
}

.card {
    height: 250px;
    background-color: rgba(255, 255, 255, 0.459);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-radius: 50px;

    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.coffee-icon {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
}

.organic-icon {
    width: 70px;
    height: auto;
    margin-bottom: 20px;
}

.city-center {
    width: 70px;
    height: auto;
    margin-bottom: 20px;
}

.cards-text {
    font-size: 25px;
    font-family: Poppins;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2px;
}

.menu {
    background-color: #fefefe;
    min-height: 350px; 
}

.drinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    width: 1000px;
    margin: 0 auto;
    font-size: 20px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.drink {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.down {
    background-color: #F5F1ED;
    min-height: 100px; 
}

.footer {
    background-color: #4d2515;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFF;
}


/* MOBILE OPTIMIZATION  */
@media (max-width: 768px) {

    .container {
        padding: 0 15px;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .coffee {
        position: static;
        width: 100%;
        max-width: 300px;
        margin-top: 20px;
    }

    .title, .title-2, .subtitle {
        margin-left: 0;
        text-align: center;
    }

    .title { font-size: 40px; }
    .title-2 { font-size: 25px; }
    .subtitle { font-size: 18px; }

    button {
        width: 60%;
        font-size: 18px;
        height: 45px;
        left: 0;
        top: 10px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card {
        width: 100%;
    }

    .drinks {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 20px;
    }

}