:root {
    --deep-green: #00563B;
    --cream-bg: #FAF9F3;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: var(--cream-bg);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 86, 59, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    height: 45px; /* Slightly smaller logo for a cleaner header */
    width: auto;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-green);
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-green);
    margin-left: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.cta-button {
    background: var(--deep-green);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Hero Section - REDUCED HEIGHT */
.hero-block {
    background-color: var(--deep-green);
    color: var(--cream-bg);
    padding: 40px 0; /* Reduced from 80px to make it more compact */
    text-align: center;
}

.hero-block h1 {
    font-size: 2.5rem; /* Slightly smaller font */
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.hero-block p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Hero Image - REDUCED SIZE */
.main-hero-img-container {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.hero-img-small {
    max-width: 80%; /* Takes up less horizontal space */
    max-height: 300px; /* Limits the vertical height strictly */
    width: auto;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Content Blocks */
.content-container {
    padding: 60px 0;
}

.content-block h2 {
    color: var(--deep-green);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.placeholder-text-box {
    border-left: 3px solid var(--deep-green);
    padding: 20px 30px;
    background: rgba(0, 86, 59, 0.03);
    color: #444;
}

/* Awareness Grid */
.awareness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.awareness-card {
    background: var(--white);
    padding: 50px 30px; /* Increased vertical padding to compensate for lost icons */
    border-radius: 12px;
    border: 1px solid rgba(0, 86, 59, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.awareness-card h3 {
    color: var(--deep-green);
    margin-bottom: 20px; /* Added more space below the heading */
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.icon-space {
    font-size: 35px;
    margin-bottom: 5px;
}

/* Info Panel (Mid-Page Green Block) */
.info-panel {
    background-color: var(--deep-green);
    color: var(--cream-bg);
    padding: 60px 0; /* Reduced padding */
    text-align: center;
}

.placeholder-text-box.light {
    background: rgba(250, 249, 243, 0.1);
    border: 1px solid rgba(250, 249, 243, 0.2);
    color: var(--cream-bg);
    max-width: 650px;
    margin: 30px auto 0;
}

/* Contact Us Section */
.contact-section {
    padding: 60px 0;
    text-align: center;
}

.contact-card {
    background: var(--white);
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--deep-green);
}

.ig-link {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: var(--deep-green);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid var(--deep-green);
    border-radius: 50px;
    transition: 0.3s ease;
}

.ig-link:hover {
    background: var(--deep-green);
    color: var(--white);
}

/* Footer */
.main-footer {
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    border-top: 1px solid rgba(0, 86, 59, 0.05);
}





/* Table Styles */
.awareness-content { padding: 40px 20px; }
.table-container { margin: 30px 0; overflow-x: auto; }
.waste-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.waste-table th, .waste-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.waste-table th {
    background-color: var(--deep-green);
    color: var(--cream-bg);
}

/* Game Styles */
.game-section {
    margin-top: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--deep-green);
}
.game-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}
.items-pool {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 20px;
    background: var(--cream-bg);
    border: 2px dashed var(--deep-green);
    border-radius: 10px;
}
.drag-item {
    padding: 10px 15px;
    background: var(--deep-green);
    color: white;
    border-radius: 5px;
    cursor: grab;
    font-size: 0.9rem;
}
.bins-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bin {
    height: 120px;
    border: 2px solid var(--deep-green);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    transition: background 0.3s;
}
.bin span { font-weight: bold; color: var(--deep-green); margin-bottom: 10px; }
.bin:hover { background: #eef7f2; }
#game-feedback { margin-top: 15px; font-weight: bold; min-height: 24px; }

/* Hero Mini */
.hero-block.mini { padding: 40px 0; }
.active { border-bottom: 2px solid var(--deep-green); }











/* Arrow Diagram Styles */
.diagram-section {
    margin: 50px 0;
}

.arrow-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.arrow-box {
    background: var(--white);
    border: 2px solid var(--deep-green);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 10px;
    box-shadow: 5px 5px 0px var(--deep-green); /* Visual 'Arrow' effect shadow */
}

.arrow-title {
    background: var(--deep-green);
    color: var(--cream-bg);
    padding: 10px;
    margin: -30px -30px 20px -30px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px 8px 0 0;
    text-transform: uppercase;
}

.arrow-box ul {
    list-style: "→ ";
    padding-left: 20px;
    color: #444;
}

.arrow-box li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Comment System Styles */
.comment-section {
    margin: 80px auto;
    max-width: 700px;
}

.comment-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 86, 59, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: var(--cream-bg);
    font-family: inherit;
}

.submit-btn {
    background: var(--deep-green);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

.comment-display-area {
    margin-top: 30px;
}

.comment-box-item {
    background: var(--white);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 5px solid var(--deep-green);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    animation: fadeIn 0.5s ease;
}

.comment-box-item strong {
    color: var(--deep-green);
    display: block;
    margin-bottom: 5px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}




















/* Join Page Specific Styles */
.join-content {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 86, 59, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 600px;
}

.contribution-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.contribution-form label {
    font-weight: 600;
    color: var(--deep-green);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contribution-form input, 
.contribution-form select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: var(--cream-bg);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contribution-form input:focus, 
.contribution-form select:focus {
    outline: none;
    border-color: var(--deep-green);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width {
    width: 100%;
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 15px !important;
    cursor: pointer;
}

/* Responsive adjustment for the form row */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}