/* Подключение шрифтов Inter и Montserrat */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/Montserrat-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/Montserrat-Bold.woff2') format('woff2');
}

/* Стили для навигации (пов Поверх Tailwind) */
.navbar-nav .nav-link {
    color: #374151; /* gray-700 */
    transition: color 0.2s;
}
.navbar-nav .nav-link:hover {
    color: #f25a5a; /* red-400 */
}
.navbar-brand {
    color: #f25a5a !important; /* red-400 */
    font-weight: 700;
}
.footer a {
    color: #4b5563; /* gray-600 */
    transition: color 0.2s;
}
.footer a:hover {
    color: #f25a5a; /* red-400 */
}

/* Кастомный класс для градиента (если используется) */
.bg-brand-gradient {
    background: #f25a5a; /* red-400 */
}