body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
}
header {
    background: #3E2723;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #FFD54F;
}
.hero {
    height: 100vh;
    background: url('../assets/images/hero.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .overlay {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.5);
}
.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
}
.hero .btn {
    background: #FFD54F;
    color: #3E2723;
    padding: 0.7rem 1.5rem;
    margin-top: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}
.hero .btn:hover {
    background: #FFC107;
}
section {
    padding: 6rem 0 4rem 0;
    width: 90%;
    margin: 0 auto;
}
.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}
.about-content img {
    max-width: 400px;
    border-radius: 8px;
}
.coffee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.coffee-item {
    background: #EFEBE9;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}
.coffee-item img {
    max-width: 100%;
    border-radius: 8px;
}
.coffee-item:hover {
    transform: scale(1.05);
}
.testimonials {
    background: #F5F5F5;
    padding: 4rem 0;
}
.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.testimonial-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
footer {
    background: #3E2723;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}