/* Custom Fonts Implementation */

/* Import the font stylesheet */
@import url('/assets/fonts/stylesheet.css');

/* Apply ITC Avant Garde to headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'ITC Avant Garde Gothic Std', sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Bold headings */
h1, h2 {
    font-family: 'ITC Avant Garde Std Bold', sans-serif !important;
}

/* Medium weight headings */
h3, h4 {
    font-family: 'ITC Avant Garde Std Md', sans-serif !important;
}

/* Regular weight headings */
h5, h6 {
    font-family: 'ITC Avant Garde Std Bk', sans-serif !important;
}

/* Apply to paragraphs */
p {
    font-family: 'ITC Avant Garde Std Bk', sans-serif !important;
    font-weight: normal;
    letter-spacing: 0.01em;
    padding: 0 !important; /* Reset padding for all paragraphs */
    margin: 10px 0; /* Add margin instead of padding */
}

/* Apply to body text as fallback */
body {
    font-family: 'ITC Avant Garde Std Bk', sans-serif !important;
}

/* Apply to menu items */
.nav-list > li > a {
    font-family: 'ITC Avant Garde Gothic Std Book Condensed', sans-serif !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: black !important;
    font-size: 16px !important;
}

/* Apply to dropdown menu items */
.nav-list li.dropdown ul li a {
    font-family: 'ITC Avant Garde Std Bk', sans-serif !important;
    opacity: 1 !important;
    color: white !important;
}

/* Maintain button fonts */
button, .btn, input[type="button"], input[type="submit"] {
    font-family: 'Roboto Condensed', sans-serif !important;
}
