@font-face { font-family: 'AlumniSansPinstripe'; src: url(/fonts/AlumniSansPinstripe-Italic.ttf); src: url(/fonts/AlumniSansPinstripe-Regular.ttf); src: url(/fonts/AlumniSansPinstripe-Bold.ttf); } :root { --primary: #1D4ED8; --primary-hover: #1E40AF; --accent: #F59E0B; --accent-hover: #D97706; --bg-light: #FFFFFF; --bg-surface: #F8FAFC; --text-main: #0F172A; --text-muted: #475569; --border-color: #E2E8F0; --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); --radius: 12px; --transition: all 0.3s ease; } * { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: 'Inter', sans-serif; background-color: var(--bg-light); color: var(--text-main); line-height: 1.6; overflow-x: hidden; } body.menu-open { overflow: hidden; } h1, h2, h3, h4 { font-family: AlumniSansPinstripe, sans-serif !important; font-weight: 600 !important; color: var(--text-main); } h3 { font-size: 1.75rem; } a { text-decoration: none; color: inherit; transition: var(--transition); } ul { list-style: none; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .container-fluid { width: 100%; padding: 0 40px; } section { padding: 80px 0; } .reveal { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity 0.5s ease-out, transform 0.5s ease-out; } .reveal.active { opacity: 1; transform: translate3d(0, 0, 0); } @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } } .btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; font-weight: 600; border-radius: var(--radius); cursor: pointer; transition: var(--transition); border: none; font-size: 1rem; } .btn-accent { background-color: var(--accent); color: #FFFFFF; } .btn-accent:hover { background-color: var(--accent-hover); transform: translate3d(0, -2px, 0); box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3); } .btn-outline { background-color: transparent; color: var(--primary); border: 2px solid var(--primary); } .btn-outline:hover { background-color: var(--primary); color: #FFFFFF; transform: translate3d(0, -2px, 0); } .header { position: fixed; top: 0; left: 0; width: 100%; background-color: rgba(255, 255, 255, 1); backdrop-filter: blur(8px); z-index: 1000; border-bottom: 1px solid var(--border-color); transition: transform 0.4s ease; } .header.nav-hidden { transform: translate3d(0, -100%, 0); } .header-container { display: flex; align-items: center; justify-content: space-between; height: 80px; } .logo-block { display: flex; align-items: center; gap: 12px; } .logo-img { height: 48px; width: auto; } .logo-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; line-height: 1.2; color: var(--primary); max-width: 180px; } .nav-menu { display: flex; gap: 32px; } .nav-link { font-weight: 500; font-size: 1rem; color: var(--text-main); } .nav-link:hover { color: var(--primary); } .hamburger { display: none; flex-direction: column; justify-content: space-between; width: 28px; height: 20px; background: transparent; border: none; cursor: pointer; z-index: 1100; padding: 0; } .hamburger-line { width: 100%; height: 3px; background-color: var(--text-main); border-radius: 2px; transition: var(--transition); } .mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(12px); z-index: 1050; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; padding: 40px 20px; } .mobile-overlay.active { opacity: 1; visibility: visible; } .mobile-close-btn { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; background: rgba(15, 23, 42, 0.05); border: none; border-radius: 50%; font-size: 1.5rem; color: var(--text-main); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); } .mobile-close-btn:hover { background: rgba(15, 23, 42, 0.1); transform: scale(1.05); } .mobile-logo { max-height: 80px; width: auto; margin-bottom: 40px; } .mobile-nav-menu { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-bottom: 40px; } .mobile-nav-link { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--text-main); } .mobile-nav-link:hover { color: var(--primary); } .hero-fullscreen { position: relative; width: 100%; height: 100vh; min-height: 600px; display: flex; align-items: center; overflow: hidden; padding-top: 80px; background-color: #0F172A; background-image: url('https://visokiy-polet.ru/top.jpg'); background-position: left; background-attachment: fixed; } .hero-video-bg { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 1; transform: translate(-50%, -50%); object-fit: cover; display: none; } h1.hero-title { font-size: 2.75rem; line-height: 1.2; color: var(--text-main); max-width: 90%; margin: 0 auto 32px; } h1.hero-title span { color: var(--primary); } p.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 98%; margin: 0 auto 32px; } @media (min-width: 768px) { .hero-video-bg { display: block; } h1.hero-title { max-width: 80%; font-size: 3.75rem; } p.hero-subtitle { max-width: 50%; } } .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; } .hero-fullscreen .container { position: relative; z-index: 3; width: 100%; } .hero-split-grid { display: grid; grid-template-columns: 1fr 1fr; width: 100%; } .hero-card-visual { grid-column: 1 / 2; background-color: rgba(255, 255, 255, 0.42); backdrop-filter: blur(12px); border-radius: var(--radius); padding: 40px; text-align: center; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; align-items: center; max-width: 520px; } .hero-card-logo { max-height: 100px; width: auto; margin-bottom: 20px; object-fit: contain; } .hero-badge { display: inline-block; padding: 6px 14px; background-color: rgba(29, 78, 216, 0.1); color: var(--primary); border-radius: 20px; font-size: 1rem; font-weight: 600; margin-bottom: 16px; } .hero-sub-cta { padding: 60px 0; background: radial-gradient(circle at center, rgba(29, 78, 216, 0.08) 0%, rgba(248, 250, 252, 0.5) 100%); border-bottom: 1px solid var(--border-color); text-align: center; } .about-gradient-section { background: radial-gradient(circle at center, rgba(29, 78, 216, 0.08) 0%, rgba(248, 250, 252, 0.5) 100%); border-bottom: 1px solid var(--border-color); position: relative; } @media (min-width: 768px) { .about-gradient-section { background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.15)), url('https://visokiy-polet.ru/top.jpg'); background-size: cover; background-position: center; background-attachment: fixed; } } .section-header { text-align: center; margin-bottom: 48px; } .section-title { font-size: 2.5rem; margin-bottom: 12px; } .section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; } .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; } .value-card { padding: 32px; border-radius: var(--radius); transition: var(--transition); background: rgba(255, 255, 255, 0.3); backdrop-filter: blur(8px); box-shadow: var(--shadow-sm); } .value-card:hover { transform: translate3d(0, -4px, 0); box-shadow: var(--shadow-lg); border-color: var(--primary); } .value-icon { width: 48px; height: 48px; color: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; filter: saturate(0.5); } .media-section { background-color: var(--bg-surface); border-bottom: 1px solid var(--border-color); width: 100%; } .media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; } .media-card { background-color: var(--bg-light); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; justify-content: space-between; transition: var(--transition); height: 100%; } .media-card:hover { transform: translate3d(0, -4px, 0); box-shadow: var(--shadow-md); } .media-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; } .media-logo { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--primary); font-size: 0.95rem; } .media-date { font-size: 0.9rem; color: var(--text-muted); } .media-title-text { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.4; font-family: 'Inter', sans-serif !important; } .media-quote { font-size: 1rem; color: var(--text-muted); margin-bottom: 20px; } .media-link { color: var(--primary); font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; } .media-link:hover { text-decoration: underline; } .sport-section { width: 100%; background: radial-gradient(circle at center, #222 0%, #666 100%); color: #FFFFFF; padding: 0; } .sport-section .section-title { color: #FFFFFF; } .sport-section .section-subtitle { color: #E2E8F0; } .sport-split-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; width: 100%; margin: 0 auto; } .sport-left-content { display: flex; flex-direction: column; gap: 24px; margin-left: 30px; } .sport-bullets-list { display: flex; flex-direction: column; gap: 12px; } .sport-bullet-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px; font-size: 1rem; color: #F1F5F9; } .sport-bullet-item strong { color: var(--accent); } .sport-right-image { width: 100%; height: 100%; min-height: 400px; overflow: hidden; box-shadow: var(--shadow-lg); } .sport-img { width: 100%; height: 100%; object-fit: cover; display: block; } .contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; } .contact-info-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; } .contact-item-title { font-size: 1rem; text-transform: uppercase; color: var(--text-muted); font-weight: 600; } .contact-item-value { font-size: 1.05rem; font-weight: 500; } .map-box { display: flex; flex-direction: column; gap: 12px; } .map-wrapper { width: 100%; height: 380px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background-color: var(--bg-surface); } .map-iframe { width: 100%; height: 100%; border: none; } .map-external-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 1rem; } .map-external-link:hover { text-decoration: underline; color: var(--primary-hover); } .footer { border-top: 1px solid var(--border-color); padding: 32px 0; background-color: var(--bg-light); font-size: 1rem; color: var(--text-muted); } .footer-container { display: flex; justify-content: space-between; align-items: center; } .footer-dev { color: var(--primary); font-weight: 600; } .footer-dev:hover { text-decoration: underline; } .floating-chat { position: fixed; bottom: 24px; right: 24px; z-index: 999; } .chat-btn { width: 56px; height: 56px; border-radius: 50%; background-color: var(--accent); color: #FFFFFF; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); cursor: pointer; transition: var(--transition); border: none; position: relative; } .chat-btn:hover { transform: scale(1.1); background-color: var(--accent-hover); } .chat-btn::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; background-color: var(--accent); opacity: 0.5; z-index: -1; animation: pulse 2s infinite; } @keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } } @media (max-width: 1200px) { .media-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 992px) { .container-fluid, .sport-section { padding: 60px 20px; } .sport-split-container, .contacts-grid { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr; } .nav-menu, .header .btn-outline { display: none; } .hamburger { display: flex; } } @media (max-width: 768px) { .hero-split-grid { grid-template-columns: 1fr; } .hero-card-visual { grid-column: 1 / -1; width: 100%; max-width: 100%; } .media-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding-bottom: 16px; -webkit-overflow-scrolling: touch; } .media-card { flex: 0 0 85%; scroll-snap-align: start; } } @media (max-width: 576px) { .footer-container { flex-direction: column; gap: 12px; text-align: center; } }