:root {
    --primary-brand: #F7D87F;
    --primary-brand-dark: #e5c56d;
    --dark-grey: #212529;
    --success-green: #198754;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-grey);
    line-height: 1.6;
}

/* Header & Logo */
.logo-placeholder {
    width: 40px;
    height: 40px;
    background-color: var(--primary-brand);
    color: var(--dark-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 8px;
    font-size: 1.2rem;
}

.company-logo {
  max-height: 50px;
  width: auto;
}



.text-primary-brand {
    color: var(--primary-brand-dark);
}

.navbar-brand span {
    letter-spacing: -0.5px;
}

/* Card Styling */
.employee-card {
    border-radius: 16px;
}

.brand-bg-primary {
    background-color: var(--primary-brand);
}

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

.profile-photo-container {
    width: 160px;
    height: 160px;
    border: 5px solid white;
    border-radius: 50%;
    overflow: hidden;
}

.profile-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employee-details label {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-slide-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
    background-color: #fff9e6;
    color: var(--dark-grey);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

/* Buttons & Links */
.btn-brand-primary {
    background-color: var(--primary-brand);
    color: var(--dark-grey);
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-brand-primary:hover {
    background-color: var(--primary-brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 216, 127, 0.4);
}

.contact-section a {
    transition: color 0.2s ease;
}

.contact-section a:hover {
    color: var(--primary-brand-dark) !important;
}

/* Print Styling */
@media print {
    .navbar, .verification-banner, .accordion, .btn, footer {
        display: none !important;
    }
    .employee-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    body {
        background-color: white;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .profile-photo-container {
        width: 120px;
        height: 120px;
    }
    .employee-details h3 {
        font-size: 1.5rem;
    }
}