/* Reset and Base 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;
    overflow-x: hidden;
}

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


/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    border-radius: 15px 15px 0 0;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.5rem;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    border-left: 5px solid #f39c12;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.event-date {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    padding: 20px;
    color: white;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
}

.event-date .month {
    font-size: 1rem;
    opacity: 0.9;
}

.event-content {
    padding: 30px;
    flex: 1;
}

.event-content h3 {
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 1.3rem;
}

.event-location {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.event-location i {
    margin-right: 5px;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.community-link {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.community-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.community-link i {
    font-size: 2rem;
    margin-right: 15px;
    color: #f39c12;
}

.community-link span {
    font-weight: 600;
    font-size: 1.1rem;
}


/* Code of Conduct Section */
.coc {
    padding: 100px 0;
    background: #f8f9fa;
}

.coc-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coc-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: left;
}

.coc-description:last-of-type {
    margin-bottom: 40px;
}

.coc-link-container {
    text-align: center;
    margin-top: 40px;
}

.coc-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.coc-link i {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive adjustments for COC */
@media screen and (max-width: 768px) {
    .coc-content {
        text-align: left;
    }
    
    .coc-link-container {
        text-align: center;
    }
    
    .coc-description {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .coc {
        padding: 80px 0;
    }
    
    .coc-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .coc-link {
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

