/* Color Variables */

:root {
    --adobe-red: #FA0F00;
    --adobe-light-red: #FFDEE2;
    --adobe-bg-red: #FDE1D3;
}

/* Base Styles */
body {

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Navbar Styles */
.bg-purple {
    background-color: #6B46C1;
}

/* Button Styles */
.btn-primary {
    background-color: var(--adobe-red);
    border-color: var(--adobe-red);
}
.btn-primary:hover {
    background-color: #D80C00;
    border-color: #D80C00;
}

/* Card Styles */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid #D1D5DB;
}

/* Alert Styles */
.alert-info {
    background-color: #F0F9FF;
    border-color: #E0F2FE;
    color: #0369A1;
}

/* Badge Styles */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Colorblind Type Indicators */
.colorblind-protanopia {
    background-color: #E5DEFF;
}
.colorblind-deuteranopia {
    background-color: #FEF7CD;
}
.colorblind-tritanopia {
    background-color: #FDE1D3;
}
.colorblind-achromatomaly {
    background-color: #D3E4FD;
}

/* Analysis Results */
.issue-card {
    border-left: 3px solid var(--adobe-red);
    transition: all 0.2s ease;
}
.issue-card:hover {
    background-color: #F9FAFB;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .analysis-grid {
        grid-template-columns: 1fr;
    }
}
.navbar-brand span.adobe-red {
    color: #FA0F00;
    font-weight: 700;
}
.text-red-custom {
    color: #FA0F00 !important; /* Adobe red or adjust as needed */
}

.bg-white-custom {
    background-color: white !important;
}

.nav-link.text-red-custom:hover {
    text-decoration: underline;
    background-color: #f9f9f9; 
    margin-left: 10px;
}
/* Navbar Item Spacing */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem; 
}


.nav-link.text-red-custom {
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.nav-link.text-red-custom:hover {
    text-decoration: underline;
    background-color: #f9f9f9;
    transform: translateY(-2px);
}