:root {
    --green: #f5c47b;
}

/* Utility classes for the green color */
.bg-green {
    background-color: var(--green) !important;
}

.text-green {
    color: var(--green) !important;
}

.border-green {
    border-color: var(--green) !important;
}

/* Font Definitions */
@font-face {
    font-family: 'Inter Tight';
    src: url('fonts/InterTight-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter Tight';
    src: url('fonts/InterTight-Medium.ttf') format('truetype');
    font-weight: 500;
}

/* Global Styles */
body {
    background-color: #fffdfa !important;
    color: #000000 !important;
    font-family: 'Inter Tight', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

/* Narrower container like Lindy.ai */
@media (min-width: 992px) {
    .container {
        max-width: 900px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 960px !important;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1040px !important;
    }
}

/* Glassmorphism Navbar */
.glass-nav {
    background-color: transparent !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Mobile Menu Background */
@media (max-width: 991.98px) {
    .mobile-menu-box {
        background-color: rgba(255, 249, 245, 0.95);
        padding: 1rem;
        border-radius: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        margin-top: 10px;
    }
}

/* FAQ Accordion Styles */
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #000;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

/* Custom Primary Button (.btn-primary) styling with #f5c47b */
.btn-primary {
    background-color: var(--green) !important;
    border-color: var(--green) !important;
    color: #000000 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus,
.btn-primary.active {
    background-color: #f3b55c !important; /* Slightly richer gold tone on hover */
    border-color: #f3b55c !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 196, 123, 0.3) !important;
}

.btn-primary:active {
    transform: translateY(0);
}

