/* Custom styles for VkusKino */
@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

:root {
    --vkuskino-font-family: 'ProximaNova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bs-font-sans-serif: var(--vkuskino-font-family);
    --bs-body-font-family: var(--vkuskino-font-family);
}

body {
    font-family: var(--vkuskino-font-family);
    font-size: 16px;
    font-weight: 400;
}

/* Typography hierarchy */
h1, h2, h3, h4, h5, h6,
.navbar-brand,
.nav-link,
.btn,
.btn-custom,
.btn-primary,
.btn-secondary,
.btn-danger,
.pay-btn,
.btn-general,
.btn-outline-secondary {
    font-family: 'ProximaNova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 18px;
}

h2, h3 {
    font-size: 18px;
}

h4, h5, h6 {
    font-size: 16px;
}

p, span, div, label, input, textarea, select {
    font-size: 16px;
    font-weight: 400;
}

small, .small {
    font-size: 14px;
}

.custom-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-brand {
    color: #f5f5f5;
}

.bg-brand {
    background-color: #1f1f1f;
}

.hover-scale {
    transition: transform 0.2s ease-in-out;
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* Global button style - white border, no gradient */
.btn-custom,
.btn-primary,
.btn-secondary,
.btn-danger,
.pay-btn,
.btn-general,
.btn-outline-secondary {
    background: #0f0f0f !important;
    color: #f5f5f5 !important;
    border: 2px solid #ffffff !important;
    transition: all 0.3s ease;
}

.btn-custom:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-danger:hover,
.pay-btn:hover,
.btn-general:hover,
.btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    color: #f5f5f5 !important;
}