/* IEEE Palouse Section Homepage Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(56, 142, 60, 0.9)), url('your-background-image.jpg');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 30px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 300;
    margin: 0 0 40px 0;
    opacity: 0.95;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: white;
    color: #4CAF50;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.photo-credit {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(90deg, #388E3C, #4CAF50);
    padding: 50px 0;
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #E8F5E8;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-light {
    background: #f8f9fa;
}

.section-white {
    background: white;
}

.section-green {
    background: linear-gradient(135deg, #f1f8e9, #e8f5e8);
}

.section-dark {
    background: #2E7D32;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #2E7D32;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title.white {
    color: #81C784;
}

.section-divider {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    margin: 0 auto 30px;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-subtitle.white {
    color: rgba(255,255,255,0.9);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
}

/* Text Content */
.text-large {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-weight: 300;
}

.text-medium {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: #4CAF50;
    font-weight: 500;
}

.benefit-icon {
    background: #E8F5E8;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
}

/* Mission Card */
.mission-card {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-left: 8px solid #4CAF50;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
    border-radius: 50%;
    opacity: 0.3;
}

.mission-card h3 {
    color: #2E7D32;
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
}

.mission-card p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
}

.mission-quote {
    background: #F1F8E9;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #4CAF50;
    position: relative;
}

.mission-quote p {
    color: #2E7D32;
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

/* Event Cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.event-card {
    background: linear-gradient(145deg, white, #fafafa);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.event-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.3;
}

.event-card.blue::before {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
}

.event-card.green::before {
    background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
}

.event-card.orange::before {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
}

.event-tag {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 25px;
    position: relative;
    color: white;
}

.event-tag.blue {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.event-tag.green {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.event-tag.orange {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.event-title {
    color: #2E7D32;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
}

.event-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
}

.event-details {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    color: #888;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.event-detail {
    font-weight: 500;
}

/* Membership Cards */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.membership-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.membership-card.featured {
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transform: scale(1.05);
    border: 2px solid #4CAF50;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 20px 20px 0 0;
}

.membership-card.student::before {
    background: linear-gradient(90deg, #2196F3, #64B5F6);
}

.membership-card.professional::before {
    background: linear-gradient(90deg, #4CAF50, #81C784);
}

.membership-card.life::before {
    background: linear-gradient(90deg, #FF9800, #FFB74D);
}

.popular-badge {
    background: #4CAF50;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.membership-title {
    color: #2E7D32;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.membership-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.membership-price.student {
    color: #2196F3;
}

.membership-price.professional {
    color: #4CAF50;
}

.membership-price.life {
    color: #FF9800;
}

.membership-period {
    color: #666;
    margin-bottom: 30px;
}

.membership-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.membership-features li {
    padding: 8px 0;
    color: #555;
}

.membership-features li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    margin-right: 10px;
}

.btn-membership {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    color: white;
}

.btn-membership.student {
    background: #2196F3;
}

.btn-membership.professional {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.btn-membership.life {
    background: #FF9800;
}

.btn-membership:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-group h3 {
    color: #81C784;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-item {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.contact-item strong {
    color: white;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: #81C784;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Call to Action Button */
.cta-button {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .membership-card.featured {
        transform: none;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .event-details {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .event-card {
        padding: 30px 20px;
    }
    
    .membership-card {
        padding: 30px 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}