/* ================================
   GENERAL STYLES
================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display:flex;
    flex-direction:column;
    font-family: 'Poppins', sans-serif;
    background: #fff7f0;
    color: #333;
    line-height: 1.5;
    min-height: 100vh;
    margin:0;
}
main.content-wrapper {
    flex: 1;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================
   HEADER
================================ */
header {
    background: #f44336;
    color: white;
    padding: 15px 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-container {
    width: 150px;
}
.logo-title-group{
    display : flex;
    flex-direction:row;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

/* ================================
   HERO BANNER (Home Page)
================================ */
.hero-banner {
    text-align: center;
    padding: 60px 20px;
    background: #ffe0b2;
}

.hero-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #d84315;
}

.hero-banner p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #5d4037;
}

.hero-banner .btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ================================
   BUTTONS
================================ */
.btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
    display: inline-block;
}

.btn.whatsapp {
    background: #25D366;
}

.btn.whatsapp:hover {
    background: #1ebe5d;
}

.btn.call {
    background: #f44336;
}

.btn.call:hover {
    background: #d32f2f;
}

/* ================================
   MAIN CONTENT / MENU
================================ */
.content-wrapper {
    padding: 20px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.menu-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-top h3 {
    font-family: 'Playfair Display', serif;
    color: #d84315;
}

.card-top .weight {
    font-size: 0.9rem;
    color: #777;
}

.items .row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.items .row:last-child {
    border-bottom: none;
}

/* ================================
   ACTION FOOTER (Menu page)
================================ */
.action-footer {
    text-align: center;
    padding: 20px 0;
}

.action-footer p {
    font-weight: bold;
    margin-bottom: 15px;
}

.action-footer .btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ================================
   FOOTER
================================ */
footer {
    text-align: center;
    padding: 15px;
    background: #f44336;
    color: white;
    font-weight: 500;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    header .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-container {
        margin-bottom: 10px;
        margin-left:-90px;
         width: 100px;
    }
    .hero-banner .btns{
        display:flex;
        flex-direction:column;
    }
}
