﻿/* Homepage.css */

body {
    font-family: 'Roboto', sans-serif !important;
    background-color: #e7ffd0 !important;
    color: #333 !important;
    margin: 0 !important;
    padding: 0 !important;
}

h3, h5, label {
    color: #2c3e50;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.footer[b-mjz3ziwl20] {
    position: static !important;
    bottom: unset !important;
    width: auto !important;
    white-space: normal !important;
    line-height: normal !important;
}
.accordion-button {
    background-color: #ffffff;
    color: #2c3e50;
    font-weight: 500;
    border: 1px solid #dcdde1;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .accordion-button:hover {
        background-color: #3498db;
        color: #ffffff;
    }

.accordion-body {
    background-color: #f1f2f6;
    border: 1px solid #dcdde1;
    border-radius: 8px;
    padding: 20px;
}

.form-control, .form-range {
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    padding: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:focus, .form-range:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    }

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 8px;
    cursor: pointer;
}

.btn-primary {
    background-color: #3498db;
    border: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 24px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .btn-primary:hover {
        background-color: #2980b9;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

.card {
    border: 1px solid #dcdde1;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: scale(1.03);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

.card-img-container {
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background-color: #f1f2f6;
}

    .card-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

        .card-img-container img:hover {
            transform: scale(1.1);
        }

.card-body {
    padding: 15px;
    background-color: #ffffff;
}

.text-primary {
    color: #3498db !important;
    font-weight: 500;
}

.text-secondary {
    color: #7f8c8d !important;
    font-weight: 400;
}

.alert {
    border-radius: 6px;
    font-weight: 500;
}

.alert-info {
    background-color: #e9f7fd;
    color: #2c3e50;
}
