/* Custom Styles for Swarna Bharat Party Website */

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin-bottom: 30px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    color: #d4af37; /* Gold color for Swarna (Gold) Bharat Party */
    font-weight: bold;
    margin-bottom: 20px;
}

/* Section Styling */
section {
    padding: 60px 0;
}

section h2 {
    color: #d4af37;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d4af37;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    color: #d4af37 !important;
    font-size: 1.5rem;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #d4af37 !important;
}

/* Cards */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: #d4af37;
    border-color: #d4af37;
}

.btn-primary:hover {
    background-color: #c4a030;
    border-color: #c4a030;
}

.btn-outline-primary {
    color: #d4af37;
    border-color: #d4af37;
}

.btn-outline-primary:hover {
    background-color: #d4af37;
    border-color: #d4af37;
}

/* Footer */
footer {
    background-color: #333;
}

footer h5 {
    color: #d4af37;
    margin-bottom: 20px;
}

.social-links a {
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d4af37 !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

/* Logo Styling */
.logo-img {
    height: 50px;
    margin-right: 10px;
}

/* For mobile devices */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}

/* Hero Logo */
.hero-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

/* Manifesto Content Styling */
.manifesto-content {
    padding: 20px;
    line-height: 1.7;
}

.manifesto-content h2 {
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
}

.manifesto-content h3 {
    color: #d4af37;
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
}

.manifesto-content h4 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.manifesto-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.sanskrit-text {
    font-size: 1.2rem;
    color: #d4af37;
    font-style: italic;
}

.toc-list {
    list-style-type: none;
    padding-left: 0;
}

.toc-list ul {
    list-style-type: none;
    padding-left: 25px;
    margin-bottom: 10px;
}

.toc-list li {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.page-num {
    color: #777;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .manifesto-content {
        padding: 15px;
    }
    
    .manifesto-content h2 {
        font-size: 1.8rem;
    }
    
    .manifesto-content h3 {
        font-size: 1.5rem;
    }
    
    .manifesto-content h4 {
        font-size: 1.3rem;
    }
}

/* Download Button Styling */
.download-btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}