/* Project: Maa Singhwahini Mandir Trust 
   Developed By: JKIT Software Group 
*/

:root {
    --main-orange: #FF9933;
    --dark-orange: #e67e22;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    color: #333;
}

/* Navigation Style */
.nav-orange {
    background-color: var(--main-orange) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Hero Section Animation */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Section Titles */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--main-orange);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Donation Card Look */
.donation-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.donation-card:hover {
    transform: translateY(-10px);
}

.qr-box {
    border: 5px solid var(--main-orange);
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}

/* Admin Panel Styles */
.admin-sidebar {
    background: #2c3e50;
    min-height: 100vh;
    color: #ecf0f1;
}

.admin-card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Responsive Footer */
.footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 40px 0;
}

.jkit-credit {
    color: var(--main-orange);
    text-decoration: none;
    font-weight: bold;
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 15px;
}

/* Mobile Menu Fix */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }
    .display-3 {
        font-size: 2.5rem;
    }
}