/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #222222;
    padding: 20px;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Area */
.header-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.logo-container img {
    width: 160px;
    height: auto;
}

.brand-banner {
    background-color: #c0fd71;
    flex-grow: 1;
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
}

.brand-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2b5711;
}

/* Navigation Bar */
.nav-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.nav-pill {
    background-color: #c0fd71;
    color: #2b5711;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 12px;
    transition: background-color 1.0s ease;
}

.nav-pill:hover {
    background-color: #2b5711;
    color: #c0fd71;
}

/* Team Member / Content Section */
.team-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 30px;
}

.avatar {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    border: 2px solid #c0fd71;
    object-fit: cover;
}

.avatar-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    border: 2px solid #c0fd71;
    background-color: #000000;
    flex-shrink: 0;
}

.team-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-info p {
    font-size: 1rem;
    color: #555555;
}

/* Card Container Layouts */
.card-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Green Border Cards (Locations, Events, Contact boxes) */
.green-card {
    border: 2px solid #c0fd71;
    border-radius: 12px;
    background-color: #fcfdf9;
    padding: 20px;
}

.card-title {
    font-size: 1.5rem;
    color: #2b5711;
    margin-bottom: 10px;
}

/* Events Specific Styling */
.event-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;

    border: 2px solid #c0fd71;
    border-radius: 12px;
    padding: 20px;
    background-color: #fcfdf9;
}

.event-image {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    border: 2px solid #c0fd71;
    object-fit: cover;
}

.event-no-image {
    width: 200px;
    height: 150px;
    background-color: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.event-details-box {
    background: #edf9db;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;

    flex: 1;
    min-width: 250px;
}

/* Contact Page Layout */
.contact-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info-col {
    flex: 1;
    min-width: 280px;
}

.contact-form-col {
    flex: 2;
    min-width: 300px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.slideshow-container {
    width: 100%;
    max-width: 1000px;
    height: 550px;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 16px;
    border: 3px solid #c0fd71;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slideshow-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

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

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(43, 87, 17, 0.85);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Control Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
    z-index: 10;
}

.carousel-btn:hover {
    background: #2b5711;
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

/* Dot Indicators */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active, .dot:hover {
    background-color: #c0fd71;
}
