/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Background */
body {
    font-family: 'SolaimanLipi', Arial, sans-serif;
    background: url('images/potima.png') repeat;
    background-size: 80px 80px;
    color: #333;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

header h1 {
    font-size: 2.5em;
    color: #d35400;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #7f8c8d;
}

/* Navigation */
nav {
    background: #e67e22;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    background: #d35400;
    border-radius: 5px;
}

/* Main Section */
main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.welcome {
    text-align: center;
    margin-bottom: 50px;
}

.welcome h2 {
    font-size: 2em;
    color: #c0392b;
    margin-bottom: 15px;
}

.welcome p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #2c3e50;
}

/* Puja Section */
.puja-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.puja-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s;
}

.puja-card:hover {
    transform: translateY(-5px);
}

.puja-card img {
    width: 200px;
    margin-bottom: 25px;
}

.puja-card h3 {
    margin-bottom: 10px;
    color: #d35400;
}

.puja-card p {
    font-size: 0.95em;
    color: #34495e;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    .puja-section {
        flex-direction: column;
        align-items: center;
    }
}
