/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: #2c5f2d;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 0.8;
    text-decoration: underline;
}

/* Join Now Button */
.btn-join {
    background-color: #ff6b35;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-join:hover {
    background-color: #e55a2b;
}

/* Buttons */
.btn-primary {
    background-color: #2c5f2d;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.btn-primary:hover {
    background-color: #1e4620;
}

.btn-secondary {
    background-color: #4a7c59;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background-color: #3a6447;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('assets/images/banner3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding: 4rem 20px;
    width: 100%;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(30, 70, 32, 0.92);
    backdrop-filter: blur(10px);
    padding: 3.5rem 4rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    height: 200px;
    width: auto;
    border-radius: 12px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: none;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.hero .btn-primary {
    background-color: #ff6b35;
    font-size: 1.1rem;
    padding: 1.3rem 3rem;
    margin-top: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

/* Intro Section */
.intro {
    padding: 3rem 0;
    background-color: white;
}

.intro h3 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.intro p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Highlights Section */
.highlights {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card h4 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: #666;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
}

/* Content Section */
.content-section {
    padding: 3rem 0;
    background-color: white;
}

.content-section h3 {
    font-size: 2rem;
    color: #2c5f2d;
    margin: 2rem 0 1rem 0;
}

.content-section h3:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.event-card {
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.event-card.upcoming {
    border-color: #ff6b35;
}

.event-card.past {
    border-color: #4a7c59;
}

.event-date {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.event-card.upcoming .event-date {
    background-color: #ffe5dc;
    color: #ff6b35;
}

.event-card.past .event-date {
    background-color: #e8f5e9;
    color: #2c5f2d;
}

.event-card h4 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.event-card p {
    color: #666;
    margin-bottom: 1rem;
}

.event-resources {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.resource-link {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.resource-link:hover {
    color: #4a7c59;
    text-decoration: underline;
}

/* Interviews Grid */
.interviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.interview-card {
    background-color: #f8f9fa;
    border-left: 4px solid #2c5f2d;
    padding: 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.interview-card:hover {
    background-color: #e8f5e9;
}

.interview-card h4 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.interview-card p {
    color: #666;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #2c5f2d;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

footer p {
    margin: 0;
    margin-bottom: 0.5rem;
}

footer p:last-child {
    margin-bottom: 0;
}

footer .attribution {
    font-size: 0.85rem;
    opacity: 0.8;
}

footer .attribution a {
    color: #ff6b35;
    text-decoration: none;
    transition: opacity 0.3s;
}

footer .attribution a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        text-align: center;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 500px;
        background-position: 65% center;
    }

    .hero .container {
        padding: 2rem 15px;
    }

    .hero-content {
        padding: 2.5rem 2rem;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-logo img {
        height: 100px;
    }

    .hero-text {
        text-align: center;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .page-header h2 {
        font-size: 1.8rem;
    }

    .highlight-grid,
    .events-grid,
    .interviews-grid {
        grid-template-columns: 1fr;
    }
}
