*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Inter',sans-serif;
    background:#faf8f4;
    color:#111;
    line-height:1.6;
}

/* Fixed Navigation */
nav{
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 244, 0.62);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e8e0d4;
}
nav .logo{
    font-weight: 700;
    font-size: 1.35rem;
    color: #2f5b42;
}
nav a{
    margin-left: 28px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
nav a:hover{
    color: #2f5b42;
}

/* Hero */
.hero{
    height:55vh;
    margin-top: 68px;
    background:url('img/hero.webp') center center/cover no-repeat;
    background-size: cover;
    display:flex;
    justify-content:center;
    align-items:center;
}
.hero-content{
    background:rgba(255,255,255,0.62);
    padding:30px 50px;
    text-align:center;
    border-radius:4px;
}
.hero h1{
    font-size:3rem;
    letter-spacing:6px;
    text-transform:uppercase;
    margin-bottom:10px;
}
.hero p{
    color:#666;
    letter-spacing:2px;
}

.container{
    width:80%;
    max-width:1400px;
    margin:0 auto;
    padding:80px 20px;
}
.section-title{
    font-size:2rem;
    margin-bottom:40px;
    text-transform:uppercase;
    letter-spacing:3px;
    border-bottom:1px solid #ddd;
    padding-bottom:15px;
    color: #2f5b42;
}
.section-center{
    font-size: 1.6rem;
    text-align: center;
    color: #2f5b42;
    margin: 40px 0 20px;
    font-weight: 600;
}

/* Coffee & Drinks */
.item{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:18px 0;
    border-bottom:1px solid #ececec;
}
.item h3{
    font-size:18px;
    font-weight:500;
    margin-bottom:4px;
}
.item p{
    color:#777;
    font-size:14px;
}

/* Tooltip Info Icon */
.info-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    margin-left: 8px;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
}
.info-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    white-space: normal;
    max-width: 280px;
    text-align: center;
    z-index: 200;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.info-icon:hover::before {
    content: '';
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
}

/* Filter */
.filter-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:24px;
    margin-top:40px;
}
.filter-card{
    background:#fff;
    padding:28px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}
.filter-card h3{
    color: #2f5b42;
    margin-bottom:8px;
    font-size:23px;
}
.filter-card p{
    color:#666;
    margin-bottom:10px;
}
.notes{
    font-style:italic;
    color:#555;
    margin:12px 0 18px;
    line-height:1.5;
}

/* Brunch & Sweet */
.food-list{
    display:flex;
    flex-direction:column;
    gap:70px;
}
.food-card{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.food-content{
    padding: 8px 0;
}
.food-content h3{
    font-size:27px;
    margin-bottom:12px;
    color: #2f5b42;
}
.food-content p{
    color:#555;
    margin-bottom:16px;
    font-size:16.5px;
}
.allergens{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.5px;
    color:#8d5a4f;
    margin-bottom:16px;
}
.price{
    font-size:22px;
    font-weight:700;
    color: #2f5b42;
}
.food-card img{
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Footer */
footer{
    background: #2a2a2a;
    color: #ddd;
    text-align: center;
    padding: 60px 20px 40px;
    margin-top: 80px;
}
footer h3{
    color: #8fc8ba;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

/* Mobile */
@media(max-width:992px){
    .food-card{
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media(max-width:768px){
    .container{
        width: 100%;
        padding: 40px 16px;
        margin: 0;
    }
    nav{
        padding: 16px 5%;
        flex-direction: column;
        gap: 12px;
    }
    .hero{
        height:45vh;
    }
    .hero h1{
        font-size:2.1rem;
    }
    .section-title{
        font-size:1.75rem;
    }
    .filter-card{
        padding: 24px;
    }
    .info-icon:hover::after {
        max-width: 220px;
        left: 0;
        transform: none;
    }
}
