:root {
    --primary: #15803d;
    --primary-dark: #0c5a2a;
    --secondary: #f8f9fa;
    --accent: #ffa500;
    --text: #333;
    --text-light: #6c757d;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin-top: 70px;
}

.slides-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 80%;
}

.slider-content h1 {
    font-size: 4.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    color: var(--white);
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Section Title */
#title {
    text-align: center;
    padding: 4rem 2rem;
}

#title h1 {
    font-size: 4.5rem;
    position: relative;
    margin-bottom: 3rem;
}

#title h1::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 3px;
}

/* Events Grid */
.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;
}

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

.event-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.image-container {
    width: 100%;
    height: 250px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding: 20px;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.event-header h3 {
    font-size: 2.2rem;
    margin: 0;
}

.event-header h3 span {
    color: var(--accent);
}

.event-date-badge {
    background: var(--primary);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 500;
}

.event-location {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.event-icon {
    margin-right: 8px;
    color: var(--primary);
}

.show-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.show-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.event-info {
    padding: 0 20px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.event-info.active {
    max-height: 500px;
}

.event-info h4 {
    font-size: 1.8rem;
    margin: 15px 0 10px;
    color: var(--primary);
}

.event-info p {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.event-direction {
    display: inline-block;
    padding: 8px 15px;
    background: var(--accent);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.6rem;
    transition: var(--transition);
}

.event-direction:hover {
    background: #e69500;
    transform: translateY(-2px);
}

.no-event-found {
    text-align: center;
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.no-event-found h4 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.no-event-found p {
    font-size: 1.8rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
    html {
        font-size: 58%;
    }
    
    .hero-slider {
        height: 60vh;
    }
    
    .slider-content h1 {
        font-size: 3.8rem;
    }
    
    #title h1 {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
    }
    
    .slider-content h1 {
        font-size: 3.2rem;
    }
    
    #title h1 {
        font-size: 3.2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 40vh;
    }
    
    .slider-content h1 {
        font-size: 2.8rem;
    }
    
    #title h1 {
        font-size: 2.8rem;
    }
    
    .event-header {
        flex-direction: column;
        gap: 10px;
    }
}