/* Modern Light Theme for The Helper Group */

:root {
    --thg-primary: #2D5A27; /* Deep Sage Green */
    --thg-secondary: #4A90E2; /* Soft Sky Blue */
    --thg-accent: #E8F5E9; /* Very Light Sage */
    --thg-text: #1E293B;
    --thg-text-muted: #64748B;
    --thg-white: #FFFFFF;
    --thg-surface: #F8FAFC;
    --thg-radius: 24px;
    --thg-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --thg-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--thg-text);
    background-color: var(--thg-white);
    line-height: 1.6;
}

/* Glassmorphism Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: var(--thg-shadow);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 800;
    color: var(--thg-primary) !important;
    display: flex;
    align-items: center;
}

.navbar-brand svg {
    color: var(--thg-primary);
    margin-right: 0.5rem;
}

/* Typography */
h1, .display-1 {
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--thg-primary);
    line-height: 1.1;
}

h2, .display-6 {
    font-weight: 700;
    color: var(--thg-primary);
    margin-bottom: 1.5rem;
}

.lead {
    color: var(--thg-text-muted);
    font-weight: 400;
}

/* Sections */
.bg-gray-100 {
    background-color: var(--thg-surface) !important;
}

.bg-gray-900 {
    background-color: var(--thg-primary) !important;
    color: var(--thg-white) !important;
}

/* Buttons */
.btn-dark {
    background-color: var(--thg-primary) !important;
    border-color: var(--thg-primary) !important;
    border-radius: var(--thg-radius) !important;
    padding: 1rem 2.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: var(--thg-shadow);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: var(--thg-shadow-lg);
    filter: brightness(1.1);
}

/* Cards & Images */
.rounded, .rounded-0 {
    border-radius: var(--thg-radius) !important;
}

.image-container, .ratio-1x1 {
    border-radius: var(--thg-radius) !important;
    overflow: hidden;
    box-shadow: var(--thg-shadow);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: scale(1.02);
}

.shadow {
    box-shadow: var(--thg-shadow) !important;
}

/* Custom Accents */
.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.link-fancy::after {
    background-color: var(--thg-primary) !important;
}

/* Contact Section refinement */
#contact {
    border-radius: var(--thg-radius);
    padding: 4rem 2rem !important;
}

#contact.bg-gray-900 {
    background: linear-gradient(135deg, var(--thg-primary) 0%, #1a3517 100%) !important;
}

/* Icons */
.bi {
    vertical-align: middle;
}

/* Footer */
footer {
    background-color: var(--thg-surface);
}

footer address {
    color: var(--thg-text-muted);
}
