/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    background-color: #f8fafc;
}

/* NAVBAR */
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -1px;
}
.nav-link {
    font-weight: 600;
    color: #475569 !important;
}
.nav-link:hover {
    color: #0284c7 !important; /* Sky Blue */
}

/* HERO IMAGE - Use a Garden/Patio image */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../img/banner.jpg'); /* Garden Image */
    background-size: cover;
    background-position: center;
    min-height: 80vh;
}

/* BUTTONS & ACCENTS (The Green Swap) */
.text-success { color: #16a34a !important; } /* Modern Green */
.bg-success { background-color: #16a34a !important; }

.btn-success {
    background-color: #16a34a;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(22, 163, 74, 0.5);
}
.btn-success:hover {
    background-color: #15803d;
    transform: translateY(-1px);
}

.icon-circle {
    /* Make sure the light green background works */
    background-color: #dcfce7 !important; /* Very light green */
    color: #16a34a !important;
        width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BUTTONS */
.btn-primary {
    background-color: #0284c7; /* Trade Blue */
    border: none;
    box-shadow: 0 4px 6px -1px rgba(2, 132, 199, 0.5);
}
.btn-primary:hover {
    background-color: #0369a1;
    transform: translateY(-1px);
}

.btn-danger {
    background-color: #ef4444; /* Emergency Red */
    border: none;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.5);
}

/* FOOTER LINK */
footer a:hover {
    text-decoration: underline !important;
    color: #38bdf8 !important; /* Lighter blue on hover */
}