/* Color Palette */
:root {
     --saffron: #E65100;
    --gold: #D4AF37;
    --gold-dim: #b8962c;
    --maroon: #800000;
    --white: #FFFFFF;
    --black: #1a1a1a;
	--primary-color:       #FF9933; /* Saffron/Bhagwa */
  --secondary-color:     #FFD700; /* Gold */
  --accent-color:        #800000; /* Deep Maroon */
  --bg-cream:            #FFF9EF; /* Soft Cream */
  --text-dark:           #3E2723; /* Deep Brown */
  --white:               #ffffff;
  
  --header-font:         'Cinzel', serif;
  --body-font:           'Poppins', sans-serif;
}

/* Header & Navbar */
.devotional-top-bar {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
}

.devotional-top-bar a {
    color: var(--secondary-color) !important;
    text-decoration: none;
}

.navbar {
    background: var(--white);
    border-bottom: 4px solid var(--secondary-color);
    transition: all 0.4s ease;
    padding: 15px 0;
}

.navbar-brand {
    color: var(--saffron) !important;
    font-size: 1.8rem;
    font-weight: bold;
}

.navbar-brand .brand-text {
    font-family: var(--header-font);
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.1;
    font-size: 1.2rem;
}

.navbar-brand small {
    font-size: 0.65rem;
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--maroon);
    font-weight: 600;
	text-transform: uppercase;
    padding: 10px 20px !important;
    transition: 0.3s;
	font-size: 0.9rem;
    letter-spacing: 1px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    overflow-x: hidden;
}

.cinzel-font {
    font-family: 'Cinzel', serif;
}

.text-saffron { color: var(--saffron); }
.text-gold { color: var(--gold); }
.text-gold-alt { color: #ffe082; }
.bg-saffron { background-color: var(--saffron); }
.bg-maroon { background-color: var(--maroon); }
.maroon-text { color: var(--maroon); }
.border-gold { border-color: var(--gold) !important; }

.btn-donate {
    background-color: var(--saffron);
    color: var(--white);
    font-weight: 600;
    border: 2px solid var(--gold);
}

.btn-donate:hover {
    background-color: var(--white);
    color: var(--maroon);
    border-color: var(--saffron);
}

/* Hero Section */
.hero-slider {
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.slides-container {
    height: 100%;
}

.slide {
	background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url('images/banner.jpg');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {	
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 81, 0, 0.7);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--gold);
}

.prev { left: 20px; }
.next { right: 20px; }

/* About Section */
.certificate-frame {
    border: 10px solid var(--gold-accent);
    padding: 5px;
    background: white;
}


/* NGO Badge Section */
.goi-info {
    background-color: var(--light-gray);
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.flex-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.badge-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gold-icon {
    font-size: 2.5rem;
    color: var(--gold);
}

.badge-text h4 {
    font-size: 1rem;
    color: var(--dark-saffron);
}

.badge-text p {
    font-size: 0.85rem;
    color: var(--light-text);
}

/*.hero-section {
    height: 90vh;    
	background-image: url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(128, 0, 0, 0.7), rgba(255, 140, 51, 0.5));
}

.motto {
    font-style: italic;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-saffron {
    background-color: var(--saffron);
    color: white;
    border: none;
    padding: 12px 30px;
}

.btn-saffron:hover {
    background-color: #ef7d21;
    color: white;
}*/

/* Wings Section */
.section-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    color: var(--maroon);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.wing-card {
    background: white;
    border: 1px solid #eee;
    border-bottom: 4px solid var(--saffron);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.wing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.wing-icon i {
    color: var(--saffron);
    transition: 0.3s;
}

.wing-card:hover .wing-icon i {
    color: var(--maroon);
}

/* Leadership */
.leader-frame {
    display: inline-block;
    padding: 8px;
    border: 2px dashed var(--gold);
    border-radius: 50%;
}

.leader-frame img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gold-decoration {
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 30px;
    width: 100%;
}

.state-badge {
    background-color: var(--white);
    color: var(--maroon);
    border: 1px solid var(--gold);
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.state-badge:hover {
    background-color: var(--saffron);
    color: white;
}

/* Gallery */
.gallery-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border: 3px solid transparent;
    transition: 0.3s;
}

.gallery-img:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

/* Gallery Section */
.dark-bg-section {
    background-color: var(--dark-saffron);
    padding: 80px 0;
}

.white-text {
    color: var(--pure-white);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--white-text);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.upload-container {
    text-align: center;
    margin-bottom: 40px;
}

.upload-ui .hint {
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
    font-size: 0.85rem;
}

/* YouTube Section */
.media-section {
    padding: 80px 0;
}

.video-adder {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    max-width: 600px;
}

.video-adder input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    margin-bottom: 5px;
    color: var(--dark-saffron);
}


/* Forms */
.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.btn-custom {
    background-color: var(--maroon-header);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
}

.btn-custom:hover {
    background-color: #5a1717;
    color: white;
}

.btn-maroon {
    background-color: var(--maroon);
    color: white;
    border: 1px solid var(--gold);
}

.btn-maroon:hover {
    background-color: var(--black);
    color: var(--gold);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    .hero-section {
        height: 70vh;
    }
}

@keyframes shimmer {
    0% { transform: translateX(-150%) rotate(45deg); }
    100% { transform: translateX(150%) rotate(45deg); }
}

.social-icon-link {
    color: var(--white);
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-icon-link:hover {
    color: var(--secondary-color);
}

