/* Hero Section Styles */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/scene2.jpg');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 60px;
    font-family: "Archivo Black", sans-serif;
}

.hero-btn {
    display: inline-block;
    background-color: #006e55;
    color: white;
    padding: 20px 80px;
    text-decoration: none;
    font-size: 1.15rem;
    border-radius: 10px;
    font-weight: bold;
    font-family: "Archivo Black", sans-serif;
}

.hero-btn:hover {
    background-color: #005a43;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-btn {
        padding: 15px 60px;
        font-size: 1rem;
    }
}

/* About Us Section Styles */
.about-us-section {
    padding: 0;
    background-color: wheat;
}

.about-container {
    display: flex;
    width: 100%;
    margin: 0;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1;
    padding: 120px;
}

.about-content h2 {
    font-family: "Archivo Black", sans-serif;
    color: #006e55;
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #005a43;
    font-weight: 0;
    font-family: "Arvo", serif;
    font-weight: 500;
    font-style: italic;
    line-height: 40px;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #006e55;
    color: white;
    padding: 15px 50px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-family: "Archivo Black", sans-serif;
}

@media (max-width: 768px) {
    .about-image img{
        display: none;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        padding: 40px 20px;
    }
}

/* Past Events Section Styles */
.past-events-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.past-events-container h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #006e55;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none; /* Controlled by JS */
    flex-direction: column;
    height: 100%;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.event-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.event-card:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-family: "Archivo Black", sans-serif;
    margin: 0 0 15px 0;
    font-size: 1.25rem;
    color: #333;
    line-height: 1.4;
    font-family: "Arvo", serif;
    font-weight: 400;
    font-style: normal;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #006e55;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: "Archivo Black", sans-serif;
    margin-top: auto;
    align-self: flex-start;
}

.read-more-btn:hover {
    background-color: #005a43;
}

.events-actions {
    margin-top: 40px;
}

.events-actions button {
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    background-color: #006e55;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: "Archivo Black", sans-serif;
    transition: background-color 0.3s;
}

.events-actions button:hover {
    background-color: #005a43;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}