body {
    background: black;
    color: white;
    font-family: serif;
    margin: 0;
    padding: 0;
    text-align: center; /* I-center tanan text sa page */
}

.header {
    background-color: #222;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 2px solid white;
    background-color: #333;
}

.logo img {
    width: 110px;
    height: auto;
}

.navbar a {
    text-decoration: none; 
    color: white; 
    font-size: 20px;
    font-style: Sans-serif; 
    font-weight: bold; 
    padding: 5px 20px; 
    border-radius: 3px; 
    transition: background 0.2s, color 0.1s; 
}

.navbar a:hover {
    background: brown; 
    color: white; 
}

.navbar div button {
    padding: 10px 15px;
    margin-left: 10px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.navbar div button:hover {
    background: white;
    color: black;
}

/* ABOUT SECTION */
.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 140vh; /* I-center vertically sa page */
}

.about h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
}

.about h2 {
    font-size: 60px; /* Dak-an ang font sa "BEST ORGANIC COFFEE" */
    font-weight: bold;
    color: rgb(250, 247, 247); /* I-highlight gamit ang brown */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about p {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
    text-align: center;
}
