/* Root Color Scheme */
:root {
    --saffron: #FF9933;
    --red: #B22222;
    --gold: #FFD700;
    --light-bg: #FFF8E1;
    --text-dark: #444;
    --light-border: #ffe0b2;
}

/* Body Styling */
body {
    font-family: 'Tiro Devanagari Hindi', serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

/* Links */
a {
    text-decoration: none;
    color: var(--text-dark);
    transition: 0.3s;
}

a:hover {
    color: var(--red);
}

/* Header Banner */
.banner {
    background: url('../assets/hindu-banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 3rem 1rem;
    border-radius: 20px;
    position: relative;
    color: white;
    text-align: center;
}

.banner::after {
    content: '';
    background: rgba(255, 153, 51, 0.7);
    position: absolute;
    inset: 0;
    border-radius: 20px;
    z-index: 1;
}

.banner * {
    position: relative;
    z-index: 2;
}

/* Search Input */
input[type="text"] {
    border-radius: 12px;
    border: 2px solid var(--gold);
    padding: 0.8rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn-warning {
    background-color: var(--saffron);
    border: none;
    font-weight: bold;
}

.btn-warning:hover {
    background-color: #e65100;
}

.btn-outline-light {
    border-color: var(--gold);
    color: #fff;
}

.btn-outline-light:hover {
    background-color: var(--gold);
    color: #000;
}

/* Card Design */
.card {
    border: 2px solid var(--saffron);
    background-color: var(--light-bg);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.02);
}

.card-header {
    /*background-color: var(--light-border);*/
    color: var(--red);
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem;
    border-radius: 20px;
}

.card-body {
    padding: 1rem;
    min-height: 230px;
}

.card-body span {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: #3e2723;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

footer a {
    color: #ffd700;
}

footer a:hover {
    color: #fff;
}

/* Divider */
.divider {
    border: none;
    border-top: 3px dashed var(--saffron);
    margin: 2rem 0;
}

/* Om Image */
.om-symbol {
    height: 50px;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .card-body {
        min-height: auto;
    }
}


.form-check-input:checked {
    background-color: #cc4a28 !important;
    border-color: #cc4a28!important;
}

/* Optional: Smooth transition */
.form-check-input {
    transition: all 0.3s ease;
}


