/* গ্লোবাল স্টাইল */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Siliguri', 'Segoe UI', sans-serif;
}

body {
    background-color: #fdf5e6; /* হালকা ক্রিম কালার যা ঐতিহ্যের সাথে মানানসই */
    color: #4a2c2a;
    line-height: 1.8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* হিরো সেকশন */
.hero {
    background-image: url('https://images.unsplash.com/photo-1590059530490-6744889f899e?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
}

.hero h1 { font-size: 3rem; margin-bottom: 10px; }

/* কার্ড ডিজাইন */
.card {
    background: white;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 5px solid #d35400; /* মাটির রঙের বর্ডার */
}

h2 {
    color: #d35400;
    margin-bottom: 20px;
    border-left: 5px solid #27ae60;
    padding-left: 15px;
}

/* গ্রিড এবং ফ্লেক্স */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-box {
    background: #fff8f0;
    padding: 20px;
    border: 1px dashed #d35400;
    border-radius: 8px;
}

.food-item, .craft-box {
    background: #27ae60;
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 30px;
    font-weight: bold;
}

.highlight {
    background: #f1c40f;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
}

/* লিস্ট স্টাইল */
ul {
    list-style-type: square;
    padding-left: 20px;
}

/* ফুটার */
footer {
    background: #4a2c2a;
    color: #fdf5e6;
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
}

/* রেসপনসিভ */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
}