/* VRF Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header */
header {
    background: #000;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: #DC2626;
}

.donate-btn {
    background: #DC2626;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.donate-btn:hover {
    background: #B91C1C;
}

/* Main Content */
main {
    margin-top: 80px;
}

.page {
    display: none;
    min-height: calc(100vh - 160px);
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #DC2626;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #000;
}

.section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #DC2626;
}

.section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #DC2626;
    margin-bottom: 1rem;
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.photo-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.photo-item:hover {
    transform: scale(1.05);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f5f5f5;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #DC2626;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Donation Section */
.donation-section {
    background: #fff;
    color: #000;
    padding: 2rem 0 4rem 0;
    text-align: center;
}

.donation-section h2 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.donation-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.donation-btn {
    background: #DC2626;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.donation-btn:hover {
    background: #B91C1C;
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #DC2626;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section p {
    word-break: break-word;
}

.footer-section a[href^="mailto"] {
    display: inline;
    white-space: nowrap;
}

.footer-section a:hover {
    color: #DC2626;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 1rem;
    }

    nav ul.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }
}

/* Press Releases Section */
.press-releases {
    margin-top: 20px;
}

.press-release-item {
    margin-bottom: 15px;
    border-left: 4px solid #DC2626;
    padding-left: 20px;
    transition: border-color 0.3s ease;
}

.press-release-item:hover {
    border-color: #000000;
}

.press-release-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.press-release-link:hover {
    color: #DC2626;
}

.press-date {
    font-weight: bold;
    color: #DC2626;
    font-size: 1rem;
    margin-bottom: 5px;
}

.press-title {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.4;
}

.press-release-link:hover .press-title {
    color: #DC2626;
}

@media (max-width: 768px) {
    .press-date {
        font-size: 0.9rem;
    }
    
    .press-title {
        font-size: 1rem;
    }
}

/* Press Release Expandable Styling */
.press-release-header {
    cursor: pointer;
    padding: 15px 20px;
    background: #f8f9fa;
    border-left: 4px solid #DC2626;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s ease;
}

.press-release-header:hover {
    background: #e9ecef;
}

.toggle-icon {
    margin-left: auto;
    font-size: 0.8rem;
    color: #DC2626;
    transition: transform 0.3s ease;
}

.press-release-header.active .toggle-icon {
    transform: rotate(180deg);
}

.press-release-content {
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    margin-bottom: 20px;
    text-align: left;
}

.press-release-header-info {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 3px solid #DC2626;
}

.press-release-header-info p {
    margin: 5px 0;
}

.press-release-content h4 {
    text-align: center;
    margin: 20px 0;
    color: #000;
}

.press-release-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}
