/* assets/css/style.css */

/* --- 1. Theme Variables and Global Styles --- */
:root {
    --brand-brown: #4b2e1e;
    --brand-gold-text: #B08537; /* For links and highlights */
    --brand-light-bg: #fdfdfa; /* A very light beige background */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-light-bg) !important;
}

/* --- 2. Custom Branded Components --- */

/* Header (Brown background) */
.card-header.bg-brand {
    background-color: var(--brand-brown) !important;
    color: white;
}
.card-header.bg-brand h1 {
    font-weight: 700;
}

/* Main Action Button (Gold Gradient) */
.btn-gold-gradient {
    background: linear-gradient(127deg, #D8A844 0%, #F6F4A1 25%, #CC9252 50%, #FAF0AB 75%, #B08537 100%) !important;
    color: var(--brand-brown) !important;
    border: none;
    font-weight: 700; /* Bold text on gradient button */
    padding: 10px 20px;
    transition: transform 0.2s ease;
}
.btn-gold-gradient:hover {
    transform: scale(1.02); /* Slight zoom on hover */
}

/* Secondary Button (Brown) */
.btn-brown {
    background-color: var(--brand-brown) !important;
    color: white !important;
    border: none;
}
.btn-brown:hover {
    opacity: 0.9;
}

/* Styling for links */
a {
    color: var(--brand-brown);
    text-decoration: none;
}
a:hover {
    color: var(--brand-gold-text);
}
.card-body a {
    font-weight: 500;
}

/* Form inputs to look cleaner */
.form-control:focus {
    border-color: var(--brand-gold-text);
    box-shadow: 0 0 0 0.25rem rgba(216, 168, 68, 0.25);
}
button.btn-gold-gradient{
    background: linear-gradient(127deg, #D8A844 0%, #F6F4A1 25%, #CC9252 50%, #FAF0AB 75%, #B08537 100%) !important;
    color: #000 !important;
    border: 1px solid #000;
}
.company-d h2 {
    margin-top: 20px;
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .d-flex.justify-content-between.align-items-center {
        flex-direction: column; /* Stack heading and buttons vertically */
        align-items: stretch !important; /* Make them full width */
    }

    .d-flex.justify-content-between.align-items-center h1 {
        margin-bottom: 1rem !important; /* Add space below heading */
        text-align: center; /* Center the heading on mobile */
    }

    .d-flex.justify-content-between > div {
        margin-left: 0; /* Reset the auto margin for mobile */
        display: grid; /* Use grid for full-width buttons */
        gap: 10px;
    }
}