:root {
    --bs-font-sans-serif: 'Onest', sans-serif;
    --bs-body-font-family: 'Onest', sans-serif;

    /* Branding */
    --brand-primary: #ff7e5f;
    --brand-secondary: #feb47b;
    --brand-tertiary: #ff9f43;

    /* Custom Colors */
    --bs-primary: #ff7e5f;
    --bs-primary-rgb: 255, 126, 95;
}

body {
    font-family: 'Onest', sans-serif;
    background-color: #f8f9fa;
    color: #2d3436;
}

/* Custom Overrides & Utilities */

.text-gradient {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hover-primary:hover {
    color: var(--brand-primary) !important;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    color: #2d3436 !important;
}

.nav-link {
    color: #636e72;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-primary);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    /* keep gradient on hover */
}

.btn-outline-primary {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-outline-primary:hover {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    /* height: 100vh; */
    min-height: 600px;
    background: url('assets/hero2.jpeg') no-repeat center center/cover;
    margin-top: 96px;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 10%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0.2) 100%);
}

.hero-title {
    color: #2d3436;
}

.hero-subtitle {
    font-weight: 400;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
    /* Bootstrap shadow-lg equivalent or custom */
}

.card-thumb {
    height: 220px;
    object-fit: cover;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
}

/* Custom Badges */
.bg-orange-subtle {
    background-color: rgba(255, 126, 95, 0.1);
}

.text-orange {
    color: #ff7e5f;
}

.bg-purple-subtle {
    background-color: rgba(112, 0, 255, 0.1);
}

.text-purple {
    color: #a55eea;
}

.bg-red-subtle {
    background-color: rgba(235, 77, 75, 0.1);
}

.text-red {
    color: #eb4d4b;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* About Page Specifics */
.about-hero {
    background: url('assets/about_us.jpg') no-repeat center center/cover;
    /* Reusing same hero for consistency or change if needed */
    /* Add a darker overlay if text readability is an issue, but hero-overlay handles it */
}

.about-hero-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 10%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0.7) 100%);
}

/* Hover Cards */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08) !important;
}

/* Material Symbols Helper */
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}