/*
 * CSS for Veera Narasimha Yuva Committee - About Page
 * New Theme: Saffron, Crimson, and Navy.
 */

/* General Styles */
body {
    font-family: 'Teko', sans-serif; 
    margin: 0;
    background: #fff8e6; /* Soft Ochre background */
    color: #333;
    line-height: 1.6;
}
/* Replace Lines 14-45 in about.css */
header {
    background: #ffcc33; 
    color: #000;
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* FIX: Added display: flex and gap */
nav {
    display: flex;
    align-items: center;
    gap: 15px; 
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Combined Auth Container Styling */
#auth-nav-container {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}
nav a.active, nav a:hover {
    color: #a30000; /* Crimson on hover */
}

.login-btn {
    background: #a30000; 
    color: #fff !important; 
    padding: 8px 15px;
    border-radius: 5px;
    margin-left: 20px;
    font-weight: 700;
}
.login-btn:hover {
    background: #cc0000; 
}


/* --- Hero Section --- */
.hero {
    background: linear-gradient(to right, #ffde7d, #ffcc33); /* Saffron Gradient */
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    /* INCREASED FONT SIZE for impact */
    font-size: 3.5em; 
    color: #333;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.5em; /* Increased size */
    color: #444; 
    font-family: sans-serif;
}

/* --- About Section (Main Content) --- */
.about {
    width: 85%;
    max-width: 1000px;
    margin: 60px auto;
    /* Changed background to light saffron/cream for better contrast */
    background: #fff8f0; 
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15); 
}

.about h2 {
    color: #cc0000; /* Crimson Heading */
    font-size: 3em; /* Increased size for section headings */
    margin-top: 30px;
    margin-bottom: 20px; 
    padding-bottom: 5px;
    border-bottom: 3px solid #ffcc33; /* Saffron underline */
}

.about p, .about li {
    font-size: 1.1em;
    color: #222; /* Darker gray for better readability */
    line-height: 1.8;
    font-family: sans-serif; /* Readable font for long text */
}

.about ul {
    list-style-type: none;
    padding-left: 0;
}

.about li {
    padding-left: 1.8em;
    position: relative;
    margin-bottom: 12px; 
}

.about li::before {
    /* Custom Crimson bullet point */
    content: '★'; 
    color: #a30000;
    font-size: 1.5em; /* Larger bullet */
    position: absolute;
    left: 0;
    top: 0;
}

/* --- CTA Section --- */
.cta {
    background: #ffcc33; 
    text-align: center;
    padding: 50px 20px;
}

.cta h2 {
    color: #333;
    font-size: 2.8em;
}

.cta .btn {
    background: #cc0000;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.3em;
}

.cta .btn:hover {
    background: #a30000;
}

/* --- Footer --- */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-family: sans-serif;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }

    .about {
        width: 95%;
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.5em;
    }
}
