/* --- General & Theme Styles --- */
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
    color: #343a40; /* Darker gray for text */
    background-color: #f8f9fa; /* Off-white background */
}

h1, h2, h3, h4, h5, h6, .display-4, .display-5 {
    font-weight: 700;
    color: #544837; /* Earthy brown for headings */
}

.btn-primary {
    background-color: #a37c54; /* Primary button color */
    border-color: #a37c54;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #8c6847; /* Darker shade for hover */
    border-color: #8c6847;
}

.social-icon {
    height: 24px;
    width: 24px;
}

/* --- Navigation Bar --- */
.navbar {
    transition: background-color 0.3s ease-in-out;
}

.navbar-brand {
    font-weight: 700;
    color: #544837 !important;
}

.navbar-nav .nav-link {
    color: #544837 !important;
    font-weight: 600;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #a37c54 !important;
}

/* --- Sections & Scrolling --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px; /* Offset for fixed navbar height */
}

section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#hero {
    background-color: #f8f0e3; /* Warm off-white for hero */
}

footer {
    background-color: #544837 !important; /* Match heading color */
}

/* --- Form Styling ---*/
.form-label {
    font-weight: 600;
}

.form-control::placeholder {
    color: #999
}