﻿/* compost-service/compost.css */

.page-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.page-header h1 {
    font-weight: 300;
    font-size: 3rem;
    color: var(--accent-color-darker, #4a7c4a);
}

.text-content {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

/* Pricing Section */
#pricing {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-tier {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-tier.popular {
    border-top: 4px solid var(--accent-color, #609966);
}

.pricing-tier h4 {
    font-weight: 500;
    color: var(--accent-color, #609966);
}

.pricing-tier .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #343a40;
    margin: 1rem 0;
}

.pricing-tier .price span {
    font-size: 1rem;
    font-weight: normal;
    color: #6c757d;
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 0.75rem;
    color: #495057;
}

.features-list li::before {
    content: '✔';
    color: var(--accent-color, #609966);
    margin-right: 10px;
}


/* Signup Form Section */
#signup {
    max-width: 700px;
    margin: 3rem auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

#signup h3 {
    text-align: center;
    font-weight: 300;
    margin-bottom: 2rem;
}

#signup-form .form-label {
    font-weight: 500;
}

#signup-form .alert {
    display: flex;
    align-items: center;
}

#signup-form .btn-primary {
    background-color: var(--accent-color-darker, #4a7c4a);
    border-color: var(--accent-color-darker, #4a7c4a);
    padding: 0.75rem;
    font-size: 1.1rem;
}

#signup-form .btn-primary:hover {
    background-color: var(--accent-color, #609966);
    border-color: var(--accent-color, #609966);
}

/* --- NEW Plan Selection Radio Buttons --- */
.plan-selection-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.plan-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    text-align: center;
}
.plan-card:hover {
    border-color: #adb5bd;
}
.plan-card .plan-title {
    font-weight: 500;
    color: #495057;
}
.plan-card .plan-price {
    font-size: 0.9rem;
    color: #6c757d;
}
/* Style for when the hidden radio button is checked */
input[type="radio"]:checked + .plan-card {
    border-color: var(--accent-color, #609966);
    background-color: color-mix(in srgb, var(--accent-color, #609966) 10%, #ffffff);
}
input[type="radio"]:checked + .plan-card .plan-title {
    color: var(--accent-color-darker, #4a7c4a);
    font-weight: 600;
}

@media(max-width: 576px) {
    .plan-selection-container {
        grid-template-columns: 1fr; /* Stack on very small screens */
    }
}

.modal-header-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    color: white;
}
.modal-header-icon i {
    font-size: 1.75rem;
    line-height: 1;
}
.modal-header.success .modal-header-icon {
    background-color: var(--accent-color, #609966);
}
.modal-header.error .modal-header-icon {
    background-color: #dc3545; /* Bootstrap's danger color */
}