/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    background-color: #000;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.hero-buttons {
    margin-top: 2rem;
}

/* Quick Stats Section */
.stat-card {
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1rem 0;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* About Section */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    font-size: 1.1rem;
    color: #444;
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
}

/* News & Events Section */
.news-grid {
    display: grid;
    gap: 2rem;
}

.event-card {
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    color: #666;
    font-size: 0.9rem;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.event-location {
    color: #666;
    font-size: 0.9rem;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2980b9;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .stat-card {
        margin-bottom: 1rem;
    }
} 