/* 
   Purchoundi-Rujkot Development Society - Nepal
   Main Stylesheet
   Designed for simplicity and elegance.
*/

:root {
    --primary-color: #1a365d;
    --primary-light: #2c5282;
    --accent-color: #3182ce;
    --text-color: #2d3748;
    --text-muted: #718096;
    --bg-color: #f7fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mukta', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

header .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    display: block;
}

.logo-text p {
    display: none;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.nav-links li {
    white-space: nowrap;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(26, 54, 93, 0.7), rgba(26, 54, 93, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    height: 200px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.activity-gallery {
    display: flex;
    flex-direction: column;
}

.membership-details h3 {
    margin-top: 2rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 1rem;
}

.membership-details ul, .membership-details ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.membership-details li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.price-box p {
    background: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--white);
}

.btn-donate {
    background: #f6ad55; /* Vibrant Orange */
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(246, 173, 85, 0.39);
}

.btn-donate:hover {
    background: #ed8936;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(237, 137, 54, 0.23);
}

/* Objective List Styles */
.objective-list {
    margin-top: 1.5rem;
    padding: 0;
    list-style: none;
}

.objective-list li {
    background: var(--white);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
    font-size: 1.1rem;
    line-height: 1.6;
    transition: var(--transition);
}

.objective-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

/* Committee List */
.committee-list {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.committee-item {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #edf2f7;
}

.committee-item:last-child {
    border-bottom: none;
}

.committee-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.committee-post {
    color: var(--accent-color);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-links li:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile & Tablet Responsive */
@media (max-width: 1150px) {
    .nav-links {
        display: none; /* Hide for now, will handle with JS */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-text h1 {
        font-size: 1.6rem;
    }
    .logo-text p {
        font-size: 0.75rem;
    }
    .logo-container img {
        height: 50px;
    }
    header .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .logo-text h1 {
        font-size: 0.95rem;
    }
    .logo-text p {
        font-size: 0.65rem;
    }
    .logo-container img {
        height: 40px;
    }
    header .container {
        padding: 0 1rem;
    }
}
