/* Base styles and variables */
:root {
    --primary-color: #1b8a5a;
    --secondary-color: #ffffff;
    --accent-color: #e8f5f0;
    --dark-color: #1b8a5a;
    --light-color: #ffffff;
    --card-bg: #ffffff;
    --header-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    box-shadow: var(--shadow);
}

.logo-container {
    width: 300px;
    margin-bottom: 30px;
    text-align: center;
}

.logo {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.header-text {
    text-align: center;
}

.header-text h1 {
    font-size: 2rem;
    line-height: 1.3;
}

.slogan {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 10px;
    color: var(--secondary-color);
}

/* Hero banner styles */
.hero-banner {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    max-height: 400px;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(27, 138, 90, 0.7); /* Changed from blue to green overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-year {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-description {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

/* Description section styles */
.description-section {
    background-color: var(--light-color);
}

/* Call-to-action button styles */
.cta-button-container {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-color);
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background-color: #156b46;
}

.description-section
    padding: 30px 20px;
    margin-bottom: 30px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow);
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    color: var(--dark-color);
    font-weight: 400;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Week section styles */
.week {
    margin-bottom: 40px;
}

.week h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
}

/* Region grid layout */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Region card styles */
.region-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.region-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
}

.region-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.region-content {
    padding: 20px;
}

.region-content p {
    margin-bottom: 12px;
}

.region-content p:last-child {
    margin-bottom: 0;
}

/* Specific styling for different info types */
.date, .time {
    color: var(--primary-color); /* Updated to match the green branding */
    font-weight: 600; /* Maintained bold weight for visibility */
}

.location {
    font-weight: 500;
}

/* Form styles */
.form-container {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 20px 0;
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

input[type="text"],
input[type="tel"],
input[type="date"],
select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus {
    border-color: var(--primary-color);
    outline: none;
}

input[type="file"] {
    display: block;
    margin-top: 8px;
}

.file-help {
    display: block;
    margin-top: 4px;
    font-size: 0.9rem;
    color: #666;
}

.submit-group {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: #156b46;
    transform: translateY(-2px);
}

/* Footer styles */
footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
    padding: 20px;
    background-color: var(--dark-color);
    color: white;
    border-radius: var(--border-radius);
}

.footer-logo {
    margin-right: 20px;
    flex: 0 0 auto;
}

.logo-wide {
    max-width: 150px;
    height: auto;
}

/* Projects section styles */
.projects-section {
    background-color: var(--accent-color);
    padding: 30px 20px;
    margin-bottom: 40px;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-item {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--secondary-color);
    font-weight: bold;
}

.project-text {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .region-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .week h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    header {
        padding: 20px 15px;
    }
    
    .region-content {
        padding: 15px;
    }
    
    .region-header h3 {
        font-size: 1.1rem;
    }
}

/* Form submission message styles */
.message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}