/* Custom Fonts */
@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Regular.woff2') format('woff2'),
         url('../fonts/MyriadPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Bold.woff2') format('woff2'),
         url('../fonts/MyriadPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bauhaus 93';
    src: url('../fonts/Bauhaus93.woff2') format('woff2'),
         url('../fonts/Bauhaus93.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Color Utility Classes */
.text-primary-color { color: #D7DB00 !important; }
.text-secondary-color { color: #D9D9D6 !important; }
.text-third-color { color: #8C857B !important; }
.text-four-color { color: #359ad2 !important; }
.text-fifth-color { color: #009b8f !important; }
.text-sixth-color { color: #662480 !important; }
.text-seventh-color { color: #399b35 !important; }
.text-eighth-color { color: #de6e18 !important; }
.text-ninth-color { color: #c80b51 !important; }

.bg-primary-color { background-color: #D7DB00 !important; }
.bg-secondary-color { background-color: #D9D9D6 !important; }
.bg-third-color { background-color: #8C857B !important; }
.bg-four-color { background-color: #359ad2 !important; }
.bg-fifth-color { background-color: #009b8f !important; }
.bg-sixth-color { background-color: #662480 !important; }
.bg-seventh-color { background-color: #399b35 !important; }
.bg-eighth-color { background-color: #de6e18 !important; }
.bg-ninth-color { background-color: #c80b51 !important; }

.border-primary-color { border-color: #D7DB00 !important; }
.border-secondary-color { border-color: #D9D9D6 !important; }
.border-third-color { border-color: #8C857B !important; }
.border-four-color { border-color: #359ad2 !important; }
.border-fifth-color { border-color: #009b8f !important; }
.border-sixth-color { border-color: #662480 !important; }
.border-seventh-color { border-color: #399b35 !important; }
.border-eighth-color { border-color: #de6e18 !important; }
.border-ninth-color { border-color: #c80b51 !important; }

/* Typography Classes */
.font-primary { font-family: 'Myriad Pro', sans-serif !important; }
.font-secondary { font-family: 'Bauhaus 93', sans-serif !important; }

/* Hover Effects */
.hover-primary-color:hover { color: #D7DB00 !important; }
.hover-secondary-color:hover { color: #D9D9D6 !important; }
.hover-third-color:hover { color: #8C857B !important; }
.hover-four-color:hover { color: #359ad2 !important; }

.hover-bg-primary-color:hover { background-color: #D7DB00 !important; }
.hover-bg-secondary-color:hover { background-color: #D9D9D6 !important; }
.hover-bg-third-color:hover { background-color: #8C857B !important; }
.hover-bg-four-color:hover { background-color: #359ad2 !important; }

/* Gradient Classes */
.gradient-primary {
    background: linear-gradient(135deg, #D7DB00 0%, #359ad2 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, #D9D9D6 0%, #8C857B 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, #009b8f 0%, #662480 100%);
} 