@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800&family=Quicksand:wght@300;400;500;600&display=swap');

body {
    background-color: #9cab89;
    color: #4e3a28;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #4e3a28;
}

.text-soft {
    color:#4e3a28cc; /* FIXED missing # */
}

.responsive-img,
img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin-inline: auto;
    border-radius: 20px;
}

.cat-card img {
    border-radius: 24px 24px 0 0;
    max-width: 100%;
}

/* FIXED invalid hex color */
.navbar-custom {
    background-color: #4e3a28 !important;
}

.logo-icon {
    height: 28px;
    width: auto;
}

@media (max-width: 576px) {
    .logo-icon {
        height: 24px;
    }
}

.navbar-nav .nav-link {
    color: #f2e7c9 !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    border-bottom-color: #ffffff;
}

.navbar-nav .nav-link.active {
    color: #ffffff !important;
    border-bottom-color: #ffffff;
}

.btn-primary-main {
    background-color: #6a4d33;
    border: 2px solid #6a4d33;
    color: #ffffff;
    border-radius: 100px;
    padding: 0.6rem 1.4rem;
    transition: all 0.25s ease-in-out;
}

.btn-primary-main:hover {
    background-color: #533d28;
    border-color: #533d28;
}

.btn-outline-main {
    border: 2px solid #6a4d33;
    color: #6a4d33;
    border-radius: 100px;
    padding: 0.6rem 1.4rem;
    background: transparent;
    transition: all 0.25s ease-in-out;
}

.btn-outline-main:hover {
    background-color: #6a4d33;
    color: #ffffff;
}

.section-card,
.cat-card,
.step-card {
    background-color: #f2e7c9;
    border-radius: 24px;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);
    border: none;
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #6a4d33;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.hero-image {
    border-radius: 28px;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25);
}

/* FIXED invalid property bottom-radius */
.form-control,
.form-select,
textarea {
    border-radius: 12px;
    border: 1px solid #d0c4b3;
    padding: 0.6rem;
    font-size: 0.95rem;
}

/* FIXED selector typo from "ifram" */
.ratio iframe {
    border-radius: 20px;
    width: 100%;
    height: 100%;
}

.footer-custom .social-link {
    color: #f2e7c9cc;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    font-size: 1.2rem;
    transition: color 0.25s ease-in-out;
}

.footer-custom .social-link:hover {
    color: #ffffff;
}
