﻿* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/Manrope/Manrope-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Tahoma, Arial, sans-serif;
    color: #111827;
    background: #f8fafc;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-link,
.site-nav a,
button {
    font-family: 'Manrope', 'Inter', 'Segoe UI', Tahoma, Arial, sans-serif;
}

main {
    flex: 1 0 auto;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 16px;
}

.site-header {
    background: #0f172a;
    color: #f8fafc;
}

.nav-row {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand-link {
    font-weight: 700;
    letter-spacing: 0.3px;
}

.site-nav {
    display: flex;
    gap: 16px;
}

.site-nav a {
    padding: 8px 10px;
    border-radius: 8px;
}

.site-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.page-main {
    padding-top: 32px;
    padding-bottom: 48px;
}

.content-block {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
}

.content-block h1 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 32px;
}

.btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
}

.home-slider {
    position: relative;
    overflow: hidden;
}

.home-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s ease;
}

.home-slide {
    min-width: 100%;
    height: 100%;
}

.home-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.65);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.home-slider-prev {
    left: 12px;
}

.home-slider-next {
    right: 12px;
}

.home-slider-pagination {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-slider-bullet {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
}

.home-slider-bullet.is-active {
    background: #4f46e5;
    transform: scale(1.2);
}
.js-site-nav.is-stuck {
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.42);
}
