/* বেসিক রিসেট */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SolaimanLipi', sans-serif;
}

body {
    background-color: #fcf8f3;
    color: #432818;
    line-height: 1.6;
}

/* হেডার ডিজাইন */
header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    color: #f4a261;
}

/* কন্টেইনার */
.container {
    max-width: 1000px;
    margin: -40px auto 40px;
    padding: 0 20px;
}

/* কার্ড স্টাইল */
.card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

/* সেকশন টাইটেল */
.section-title {
    color: #99582a;
    border-bottom: 3px solid #f4a261;
    display: inline-block;
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

/* টেবিল ডিজাইন */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #99582a;
    color: white;
}

tr:hover {
    background-color: #fff1e6;
}

/* গ্রিড ও ট্যাগস */
.grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.dessert {
    flex: 1;
    min-width: 280px;
    border-top: 5px solid #e76f51;
}

.street-food {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
}

.tag {
    background: #264653;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
}

/* ফুটার */
footer {
    background: #432818;
    color: #f4a261;
    text-align: center;
    padding: 40px;
}

/* রেসপনসিভ */
@media (max-width: 768px) {
    header h1 { font-size: 2rem; }
    table, thead, tbody, th, td, tr {
        display: block;
    }
    th { text-align: right; }
}