/* Navigation Styles - Shared across all pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Bar */
.main-nav {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo-text {
    color: #333333;
    font-size: 1.2rem;
     
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333333;
    text-decoration: none;
     
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0,0,0,0.1);
    color: #2c5aa0;
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-contact {
    color: #333333;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-contact:hover {
    background: rgba(0,0,0,0.05);
    border-color: #2c5aa0;
    color: #2c5aa0;
}

.nav-donate {
    background: #2c5aa0;
    color: white;
    text-decoration: none;
     
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-donate:hover {
    background: #1a4480;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #333333;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-bottom: 1px solid #e9ecef;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-menu-link {
    display: block;
    color: #333333;
    text-decoration: none;
    padding: 1rem 2rem;
     
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(0,0,0,0.05);
    color: #2c5aa0;
}

.mobile-menu-actions {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-actions .nav-contact,
.mobile-menu-actions .nav-donate {
    text-align: center;
    display: block;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: #6c757d;
}

.breadcrumb-item a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #1a4480;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #adb5bd;
}

.breadcrumb-item:last-child {
    color: #495057;
     
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333333;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #dee2e6;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/Aabroo-Peace-Home.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: 3rem;
     
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: block;
        top: 60px;
    }
    
    .nav-logo-text {
        display: block;
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .breadcrumb-container {
        padding: 0 15px;
    }
    
    .page-header-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 55px;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .nav-logo-text {
        font-size: 0.9rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .mobile-menu {
        top: 55px;
    }
    
    .mobile-menu-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu-actions {
        padding: 1rem 1.5rem;
    }
}

/* Animation for smooth transitions */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-nav {
    animation: fadeInDown 0.5s ease;
}

/* Scroll effect */
.main-nav.scrolled {
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(233, 236, 239, 0.8);
}

/* Focus styles for accessibility */
.nav-link:focus,
.nav-contact:focus,
.nav-donate:focus,
.mobile-menu-link:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .main-nav,
    .mobile-menu,
    .breadcrumb {
        display: none;
    }
}
