/* Main Design System and Section Styling */

/* Typography */
h1, h2, h3 {
    color: #2C3E50;
    line-height: 1.2;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

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

.hero-content h1 {
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    animation: fadeInUp 1.2s ease-out;
    font-size: 1.4rem;
}

.hero-btns {
    animation: fadeInUp 1.4s ease-out;
}

/* Card Hover Effects */
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Event Gallery Glow */
.event-item {
    transition: all 0.5s ease;
    cursor: pointer;
}

.event-item img {
    transition: transform 0.5s ease;
}

.event-item:hover img {
    transform: scale(1.1);
}

/* Forms */
input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin: 0;
}

/* Tables Styling for Facilitators */
.facilitator-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.facilitator-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
}

.facilitator-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.facilitator-table tr:hover {
    background-color: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none; /* In real theme we'd add a burger menu */
    }
}
