/* ग्रामीण थीम के लिए रंग: मिट्टी का रंग, केसरिया और गहरा हरा */
:root {
    --clay: #b35d1e;
    --field-green: #2d5a27;
    --wheat: #f5deb3;
    --white: #ffffff;
}

body {
    font-family: 'Mukta', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #faf7f2;
    color: #333;
}

header {
    background-color: var(--clay);
    color: var(--white);
    padding: 20px 10px;
    text-align: center;
    border-bottom: 5px solid var(--field-green);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    margin: 5px 0 0;
    font-style: italic;
    font-size: 1.1rem;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.welcome-msg {
    text-align: center;
    margin-bottom: 30px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tile {
    background: var(--white);
    border: 2px solid var(--wheat);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tile:hover {
    transform: translateY(-5px);
    border-color: var(--clay);
}

.tile-img {
    width: 100%;
    height: 180px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.tile-content {
    padding: 15px;
}

.tile-content h3 {
    margin: 0 0 10px;
    color: var(--field-green);
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.tile-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.btn-call {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: var(--field-green);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 10px;
    margin-left: 8px;
    padding: 8px 15px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
}

footer {
    background-color: #333;
    color: var(--wheat);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media (max-width: 600px) {
    header h1 { font-size: 1.8rem; }
    .tile-img { height: 150px; }
}
