:root {
    --primary-color: #2E5C31; /* Forest Green */
    --secondary-color: #4A3B2C; /* Wood Brown */
    --background: #f9f7f1;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 5px solid var(--secondary-color);
}

header p {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* Slideshow Styles */
.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: 30px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(46, 92, 49, 0.85);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Schedule & Roles */
.schedule, .tools-section {
    margin: 40px 0;
}

h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.day-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.day-card h3 {
    color: var(--secondary-color);
}

.date {
    font-weight: bold;
    color: #d9534f;
    margin-bottom: 10px;
}

.roles {
    margin-top: 15px;
    background: #f1f4f0;
    padding: 15px;
    border-radius: 5px;
}

.roles ul {
    margin-left: 20px;
    margin-top: 10px;
}

.roles li {
    margin-bottom: 8px;
}

/* Tools Grid */
.tool-grids {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tool-list {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tool-list ul {
    margin-left: 20px;
    margin-top: 10px;
}

.tool-list li {
    margin-bottom: 5px;
}

/* CTA Section */
.signup-cta {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.button:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .tool-grids {
        grid-template-columns: 1fr;
    }
}