* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #f1efe8;
    color: #000000;
    line-height: 1.7;
}

/* TOPBAR */
.topbar {
    background: #ecf2fc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.topbar-logo {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bolder;
    font-size: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.topbar-nav a {
    text-decoration: none; 
    color: #333333;       
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.topbar-nav a:hover {
    color: #e9a73d;
    text-decoration: underline #e9a73d;
}

/* HEADING */
.site-heading{
    text-align: center;
}

.site-heading h1{
    margin: 0;
    font-size: 40px;
}

.site-heading p{
    margin: 0;
    font-size: 15px;
    color: #a0a0a0;
}

.orange-text{
    color:#e9a73d;
}

/* CARDS */
.food-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 30px 40px;
    max-width: 1200px;
    max-height: 1200px;
    margin: 0 auto;
}

.food-card {
    background: #f1efe8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* CARD IMAGE */
.card-img {
    width: 100%;
    height: 180px;
    flex: 1;
    overflow: hidden;
}

.food-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CARD TEXT */
.card-text {
    padding: 16px 20px 8px;
    text-align: center;
}

.card-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #222222;
}

.card-text p {
    font-size: 16px;
    font-weight: bold;
    color: #e9a73d;
}

/* CARD BUTTON */
.card-btn {
    padding: 0 20px 20px;
}

.card-btn button {
    width: 200px;
    padding: 10px 15px;
    background-color: transparent;
    color: #e9a73d;
    border: 1px solid;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.card-btn button:hover {
    background-color: #e9a73d;
    color: #ffffff;
    border: 1px solid;
    border-color: #f1efe8;
}

/* FOOTER */
footer{
    text-align: center;
    padding: 30px 20px;
    color: #6e72a0;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background-color: aliceblue;
}

/* RESPONSIVE */
@media(max-width: 600px){
    .hero h1{font-size: 30px;}
    .info-strip{grid-template-columns: 1fr;}
    .stat-ring{
        width: 105px;
        height: 105px;
    }
}
