/* ====================== */
/* ПЕРЕМЕННЫЕ И БАЗОВЫЕ СТИЛИ */
/* ====================== */
:root {
--primary-dark: #1a2b3c;
--primary-light: #2c3e50;
--accent: #f0b90b;
--accent-dark: #d4a00b;
--red: #e74c3c;
--red-dark: #c0392b;
--text-dark: #1e293b;
--text-light: #64748b;
--bg-light: #f8fafc;
--card-bg: #ffffff;
--border-light: #e2e8f0;
--shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
--shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
--radius: 24px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: var(--text-dark);
background-color: var(--bg-light);
min-height: 100vh;
display: flex;
flex-direction: column;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
}
/* ====================== */
/* ТИПОГРАФИЯ */
/* ====================== */
h1, h2, h3, h4 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
line-height: 1.3;
margin-bottom: 1rem;
}
h1 {
font-size: 3rem;
letter-spacing: -0.02em;
}
h2 {
font-size: 2.5rem;
color: var(--primary-dark);
letter-spacing: -0.01em;
}
h3 {
font-size: 1.5rem;
color: var(--primary-light);
}
.section-title {
text-align: center;
margin-bottom: 3rem;
position: relative;
padding-bottom: 20px;
}
.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: var(--accent);
border-radius: 2px;
}
/* ====================== */
/* ШАПКА И НАВИГАЦИЯ */
/* ====================== */
.header {
background-color: var(--primary-dark);
color: white;
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: var(--shadow-md);
}
.header-container {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.logo {
display: flex;
align-items: center;
gap: 15px;
}
.logo-img {
height: 50px;
width: auto;
object-fit: contain;
}
.logo-text {
font-size: 1.2rem;
font-weight: 600;
color: white;
border-left: 2px solid var(--accent);
padding-left: 15px;
}
.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 10px;
}
.menu-toggle span {
display: block;
width: 28px;
height: 3px;
background-color: white;
margin: 6px 0;
transition: 0.3s;
border-radius: 3px;
}
.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.main-nav ul {
display: flex;
list-style: none;
gap: 8px;
}
.main-nav a {
color: #ecf0f1;
text-decoration: none;
padding: 10px 18px;
border-radius: 40px;
transition: all 0.2s;
font-weight: 500;
font-size: 1rem;
}
.main-nav a:hover {
background-color: rgba(255, 255, 255, 0.1);
color: white;
}
.main-nav a.active {
background-color: var(--accent);
color: var(--primary-dark);
}
/* ====================== */
/* HERO */
/* ====================== */
.hero {
min-height: 85vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-align: center;
position: relative;
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(26, 43, 60, 0.9) 0%, rgba(240, 185, 11, 0.6) 100%);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 900px;
padding: 60px 20px;
}
.hero-title {
font-size: 4rem;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
animation: fadeInUp 1s ease-out;
}
.hero-title span {
color: var(--accent);
display: inline-block;
background: rgba(0,0,0,0.3);
padding: 0 10px;
border-radius: 20px;
backdrop-filter: blur(4px);
}
.hero-subtitle {
font-size: 1.4rem;
margin-bottom: 2rem;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
animation: fadeInUp 1s ease-out 0.3s both;
}
/* Таймер */
.timer {
display: flex;
justify-content: center;
gap: 20px;
margin: 40px 0;
flex-wrap: wrap;
}
.timer-item {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
padding: 20px 30px;
border-radius: 60px;
font-size: 1.2rem;
border: 1px solid rgba(255, 255, 255, 0.3);
min-width: 140px;
box-shadow: var(--shadow-lg);
}
.timer-item span {
display: block;
font-size: 3rem;
font-weight: 800;
color: var(--accent);
line-height: 1.2;
}
.timer-ended {
font-size: 2rem;
background: rgba(255, 255, 255, 0.2);
padding: 20px 40px;
border-radius: 60px;
backdrop-filter: blur(10px);
}
/* ====================== */
/* КНОПКИ */
/* ====================== */
.btn {
display: inline-block;
padding: 14px 36px;
border-radius: 60px;
text-decoration: none;
font-weight: 600;
transition: all 0.25s ease;
border: none;
cursor: pointer;
font-size: 1.1rem;
letter-spacing: 0.3px;
position: relative;
overflow: hidden;
}
.btn::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: all 0.5s ease;
z-index: 0;
}
.btn:hover::after {
width: 300px;
height: 300px;
}
.btn-primary {
background: var(--accent);
color: var(--primary-dark);
box-shadow: 0 8px 20px -8px var(--accent);
z-index: 1;
}
.btn-primary:hover {
background: var(--accent-dark);
transform: translateY(-3px);
box-shadow: 0 15px 30px -10px var(--accent-dark);
}
.btn-secondary {
background: transparent;
border: 2px solid var(--accent);
color: var(--accent);
}
.btn-secondary:hover {
background: var(--accent);
color: var(--primary-dark);
transform: translateY(-3px);
}
.btn-red {
background: var(--red);
color: white;
box-shadow: 0 8px 20px -8px var(--red);
}
.btn-red:hover {
background: var(--red-dark);
transform: translateY(-3px);
box-shadow: 0 15px 30px -10px var(--red-dark);
}
/* ====================== */
/* О КУБКЕ */
/* ====================== */
.section {
padding: 80px 0;
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.about-text p {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 1.5rem;
}
.about-stats {
display: flex;
justify-content: space-around;
gap: 30px;
flex-wrap: wrap;
}
.stat-item {
text-align: center;
font-size: 1.2rem;
color: var(--text-light);
}
.stat-item span {
display: block;
font-size: 3.5rem;
font-weight: 800;
color: var(--accent);
line-height: 1.2;
}
/* ====================== */
/* КАЛЕНДАРЬ ЭТАПОВ */
/* ====================== */
.stage-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 30px;
margin-top: 40px;
}
.stage-card {
background: var(--card-bg);
border-radius: var(--radius);
padding: 28px;
box-shadow: var(--shadow-sm);
transition: all 0.25s;
border: 1px solid var(--border-light);
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
}
.stage-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}
.stage-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
border-color: transparent;
}
.stage-date {
font-size: 2rem;
font-weight: 800;
color: var(--accent);
margin-bottom: 15px;
line-height: 1.2;
}
.stage-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 15px;
color: var(--primary-dark);
}
.stage-card > div {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
color: var(--text-light);
font-size: 1rem;
}
.stage-card i {
width: 20px;
color: var(--accent);
font-size: 1.1rem;
}
.stage-region {
font-weight: 600;
color: var(--primary-dark);
}
.stage-venue {
color: var(--text-dark);
font-size: 0.95rem;
}
.stage-organizer,
.stage-phone {
font-size: 0.9rem;
}
/* Кнопки этапа */
.stage-buttons {
display: flex;
gap: 10px;
margin-top: 20px;
justify-content: center;
flex-wrap: wrap;
}
.btn-stage {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
background: transparent;
border: 1.5px solid var(--border-light);
border-radius: 40px;
color: var(--text-dark);
font-weight: 500;
text-decoration: none;
transition: all 0.2s;
font-size: 0.95rem;
}
.btn-stage:hover {
border-color: var(--accent);
gap: 10px;
}
.btn-protocol {
color: var(--accent);
}
.btn-protocol:hover {
background: rgba(240, 185, 11, 0.1);
}
.btn-track {
color: var(--primary-dark);
}
.btn-track:hover {
background: rgba(26, 43, 60, 0.05);
border-color: var(--primary-dark);
}
.btn-stage i {
font-size: 1rem;
min-width: 16px;
}
.calendar-note {
text-align: center;
margin-top: 40px;
color: var(--text-light);
font-style: italic;
}
/* ====================== */
/* ДОКУМЕНТЫ */
/* ====================== */
.docs-list {
list-style: none;
max-width: 700px;
margin: 0 auto;
}
.docs-list li {
margin: 18px 0;
font-size: 1.1rem;
}
.docs-list a {
text-decoration: none;
color: var(--primary-dark);
font-weight: 500;
display: flex;
align-items: center;
gap: 15px;
padding: 12px 20px;
background: white;
border-radius: 60px;
box-shadow: var(--shadow-sm);
transition: all 0.2s;
}
.docs-list a:hover {
background: var(--accent);
color: var(--primary-dark);
transform: translateX(8px);
box-shadow: var(--shadow-md);
}
.docs-list i {
font-size: 1.5rem;
color: var(--accent);
}
.docs-list a:hover i {
color: var(--primary-dark);
}
.docs-note {
text-align: center;
margin-top: 30px;
color: var(--text-light);
}
/* ====================== */
/* КОМИССИЯ */
/* ====================== */
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 30px;
margin-top: 40px;
}
.team-card {
background: var(--card-bg);
border-radius: var(--radius);
padding: 25px 20px;
text-align: center;
box-shadow: var(--shadow-sm);
transition: all 0.25s;
border: 1px solid var(--border-light);
position: relative;
overflow: hidden;
}
.team-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}
.team-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
}
.team-photo {
width: 140px;
height: 140px;
border-radius: 50%;
object-fit: cover;
margin: 0 auto 20px;
border: 4px solid var(--accent);
transition: transform 0.3s;
}
.team-card:hover .team-photo {
transform: scale(1.05);
}
.team-name {
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 5px;
color: var(--primary-dark);
}
.team-role {
color: var(--accent);
font-weight: 600;
margin-bottom: 15px;
font-size: 0.95rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.team-contacts {
display: flex;
justify-content: center;
gap: 15px;
}
.team-contacts a {
color: var(--text-light);
font-size: 1.2rem;
transition: color 0.2s;
}
.team-contacts a:hover {
color: var(--accent);
}
.members-note {
text-align: center;
margin-top: 40px;
color: var(--text-light);
}
/* ====================== */
/* ПАРТНЁРАМ */
/* ====================== */
.partners-highlight {
background: url('images/sport-about.webp') center/cover no-repeat;
position: relative;
overflow: hidden;
border-top: 5px solid var(--accent);
border-bottom: 5px solid var(--accent);
}
.partners-highlight::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 43, 60, 0.85) 100%);
z-index: 1;
}
.partners-highlight .container {
position: relative;
z-index: 2;
}
.partners-highlight .section-title {
color: white;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
font-size: 3rem;
margin-bottom: 2rem;
}
.partners-highlight .section-title::after {
background: var(--accent);
height: 5px;
width: 150px;
}
/* Вводный текст */
.partners-intro {
text-align: center;
max-width: 900px;
margin: 0 auto 60px;
position: relative;
z-index: 2;
}
.intro-text {
font-size: 1.4rem;
color: white;
font-weight: 500;
margin-bottom: 40px;
line-height: 1.7;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
/* Статистика */
.stats-highlight {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
margin-top: 30px;
}
.stat {
text-align: center;
min-width: 150px;
}
.stat-number {
display: block;
font-size: 3.5rem;
font-weight: 800;
color: var(--accent);
line-height: 1.2;
text-shadow: 0 4px 15px rgba(240, 185, 11, 0.4);
}
.stat-label {
display: block;
font-size: 1rem;
color: rgba(255, 255, 255, 0.8);
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
}
/* Сетка опций */
.options-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin: 60px 0;
position: relative;
z-index: 2;
}
/* Карточка опции */
.option-card {
background: white;
border-radius: var(--radius);
padding: 40px 30px;
text-align: center;
box-shadow: var(--shadow-md);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 2px solid transparent;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
}
.option-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}
.option-card:hover {
transform: translateY(-15px) scale(1.03);
box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.25);
z-index: 10;
}
/* Бейдж категории */
.option-badge {
position: absolute;
top: 15px;
right: 15px;
padding: 6px 16px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
color: white;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
z-index: 5;
}
.option-card.premium .option-badge { background: linear-gradient(135deg, #ff914d, #ff5252); }
.option-card.official .option-badge { background: linear-gradient(135deg, #4caf50, #2e7d32); }
.option-card.regional .option-badge { background: linear-gradient(135deg, #2196f3, #1565c0); }
.option-card.technical .option-badge { background: linear-gradient(135deg, #9c27b0, #6a1b9a); }
/* Иконка опции */
.option-icon-large {
width: 100px;
height: 100px;
margin: 0 auto 25px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 3.5rem;
color: white;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
position: relative;
z-index: 2;
}
.option-card:hover .option-icon-large {
transform: scale(1.1) rotate(5deg);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.option-card.premium .option-icon-large {
background: linear-gradient(135deg, #ff914d, #ff5252);
border: 5px solid rgba(255, 82, 82, 0.3);
}
.option-card.official .option-icon-large {
background: linear-gradient(135deg, #4caf50, #2e7d32);
border: 5px solid rgba(46, 125, 50, 0.3);
}
.option-card.regional .option-icon-large {
background: linear-gradient(135deg, #2196f3, #1565c0);
border: 5px solid rgba(21, 101, 192, 0.3);
}
.option-card.technical .option-icon-large {
background: linear-gradient(135deg, #9c27b0, #6a1b9a);
border: 5px solid rgba(106, 27, 154, 0.3);
}
/* Заголовок и описание */
.option-title {
font-size: 1.8rem;
font-weight: 800;
margin-bottom: 10px;
color: var(--primary-dark);
transition: color 0.3s ease;
}
.option-card:hover .option-title {
color: var(--accent);
}
.option-desc {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 25px;
line-height: 1.6;
}
/* Список фич */
.option-features {
list-style: none;
text-align: left;
margin: 25px 0;
flex-grow: 1;
}
.option-features li {
margin: 12px 0;
font-size: 1rem;
color: var(--text-dark);
line-height: 1.6;
display: flex;
align-items: flex-start;
gap: 10px;
}
.option-features li i {
color: var(--accent);
font-size: 1.2rem;
min-width: 24px;
margin-top: 3px;
}
.option-features li strong {
color: var(--primary-dark);
font-weight: 600;
}
/* Цена */
.option-price {
font-size: 1.8rem;
font-weight: 800;
color: var(--accent);
margin: 20px 0;
padding: 15px;
background: rgba(240, 185, 11, 0.1);
border-radius: 20px;
border: 2px dashed var(--accent);
}
/* Кнопки для каждой категории */
.btn-premium {
background: linear-gradient(135deg, #ff914d, #ff5252);
color: white;
box-shadow: 0 8px 25px rgba(255, 82, 82, 0.4);
}
.btn-premium:hover {
background: linear-gradient(135deg, #ff7a2d, #e64a4a);
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(255, 82, 82, 0.6);
}
.btn-official {
background: linear-gradient(135deg, #4caf50, #2e7d32);
color: white;
box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}
.btn-official:hover {
background: linear-gradient(135deg, #43a047, #1b5e20);
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(46, 125, 50, 0.6);
}
.btn-regional {
background: linear-gradient(135deg, #2196f3, #1565c0);
color: white;
box-shadow: 0 8px 25px rgba(21, 101, 192, 0.4);
}
.btn-regional:hover {
background: linear-gradient(135deg, #1e88e5, #0d47a1);
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(21, 101, 192, 0.6);
}
.btn-technical {
background: linear-gradient(135deg, #9c27b0, #6a1b9a);
color: white;
box-shadow: 0 8px 25px rgba(106, 27, 154, 0.4);
}
.btn-technical:hover {
background: linear-gradient(135deg, #8e24aa, #4a148c);
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(106, 27, 154, 0.6);
}
/* CTA блок */
.partners-cta {
background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
border-radius: var(--radius);
padding: 60px;
text-align: center;
color: white;
margin-top: 80px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
position: relative;
overflow: hidden;
z-index: 2;
}
.partners-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(240, 185, 11, 0.15) 0%, transparent 70%);
z-index: 0;
}
.cta-content {
position: relative;
z-index: 2;
}
.partners-cta h3 {
color: white;
font-size: 2.5rem;
margin-bottom: 40px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
/* Сетка преимуществ */
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin: 40px 0;
}
.benefit-item {
display: flex;
align-items: center;
gap: 15px;
justify-content: center;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.benefit-item:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateY(-5px);
border-color: var(--accent);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.benefit-item i {
font-size: 2rem;
color: var(--accent);
min-width: 40px;
}
.benefit-item span {
font-size: 1.1rem;
font-weight: 500;
line-height: 1.5;
}
/* Примечание */
.cta-note {
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.85);
margin: 30px 0;
font-weight: 500;
}
/* Большая кнопка */
.btn-large {
padding: 18px 50px;
font-size: 1.3rem;
margin-top: 20px;
}
/* ====================== */
/* КОНТАКТЫ */
/* ====================== */
.contacts-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-top: 40px;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 25px;
}
.contact-subtitle {
font-size: 1.4rem;
color: var(--primary-dark);
margin: 10px 0 5px;
border-bottom: 2px solid var(--accent);
padding-bottom: 8px;
}
.contact-item {
display: flex;
align-items: center;
gap: 20px;
background: white;
padding: 20px;
border-radius: 60px;
box-shadow: var(--shadow-sm);
transition: all 0.2s;
}
.contact-item:hover {
box-shadow: var(--shadow-md);
transform: translateX(5px);
}
.contact-item i {
font-size: 2rem;
color: var(--primary-dark);
width: 40px;
text-align: center;
transition: color 0.2s;
}
.contact-item:hover i {
color: var(--accent);
}
.contact-item a {
color: var(--text-dark);
text-decoration: none;
font-weight: 500;
}
.contact-item a:hover {
color: var(--accent);
}
.join-form {
background: white;
border-radius: var(--radius);
padding: 40px;
text-align: center;
box-shadow: var(--shadow-lg);
border: 1px solid var(--border-light);
position: relative;
overflow: hidden;
}
.join-form::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}
.join-form h3 {
margin-bottom: 20px;
color: var(--primary-dark);
font-size: 1.8rem;
}
.join-form p {
color: var(--text-light);
margin-bottom: 30px;
font-size: 1.1rem;
}
/* Контейнер формы */
.form-container {
width: 100%;
max-width: 700px;
margin: 0 auto;
background: white;
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow-lg);
border: 1px solid var(--border-light);
position: relative;
}
.ya-form-iframe {
width: 100%;
min-height: 850px;
border: none;
display: block;
background: #f9fafb;
}
/* Резервный вариант */
.form-fallback {
padding: 60px 30px;
text-align: center;
}
.fallback-text {
font-size: 1.3rem;
color: var(--text-dark);
margin-bottom: 25px;
font-weight: 600;
}
.fallback-btn {
display: inline-block;
margin: 20px auto;
}
.fallback-note {
font-size: 0.95rem;
color: var(--text-light);
margin-top: 25px;
font-style: italic;
}
.required {
color: var(--red);
font-weight: 600;
}
.form-note {
font-size: 0.9rem;
margin-top: 20px;
color: var(--text-light);
font-style: italic;
}
/* ====================== */
/* ПОДВАЛ */
/* ====================== */
.footer {
background: var(--primary-dark);
color: white;
padding: 60px 0 30px;
margin-top: 80px;
}
.footer-logos {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
margin-bottom: 40px;
flex-wrap: wrap;
}
.footer-logos img {
height: 60px;
width: auto;
object-fit: contain;
filter: none;
opacity: 0.9;
transition: opacity 0.2s ease;
}
.footer-logos img:hover {
opacity: 1;
}
.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
margin-bottom: 40px;
}
.footer-links a {
color: #bdc3c7;
text-decoration: none;
transition: color 0.2s;
font-weight: 500;
}
.footer-links a:hover {
color: var(--accent);
}
.footer-info {
text-align: center;
font-size: 0.95rem;
color: #95a5a6;
border-top: 1px solid #34495e;
padding-top: 30px;
}
.footer-info a {
color: var(--accent);
text-decoration: none;
}
/* Подпись создателя */
.footer-credit {
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
}
.credit-link {
display: inline-flex;
align-items: center;
gap: 10px;
text-decoration: none;
color: var(--red);
font-family: 'Montserrat', sans-serif;
font-weight: 600;
font-size: 1.1rem;
letter-spacing: 0.5px;
transition: all 0.3s ease;
padding: 10px 20px;
border-radius: 40px;
background: rgba(231, 76, 60, 0.08);
box-shadow: 0 4px 15px rgba(231, 76, 60, 0.15);
}
.credit-link:hover {
color: white;
background: linear-gradient(135deg, var(--red), var(--red-dark));
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
gap: 15px;
}
.credit-icon {
font-size: 1.4rem;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.2);
opacity: 0.8;
}
}
.credit-text {
background: linear-gradient(135deg, var(--red), var(--red-dark));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
transition: all 0.3s ease;
}
.credit-link:hover .credit-text {
-webkit-text-fill-color: white;
}
/* ====================== */
/* АНИМАЦИИ */
/* ====================== */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Анимация появления элементов */
.animate-on-scroll {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
opacity: 1;
transform: translateY(0);
}
/* ====================== */
/* АДАПТИВНОСТЬ */
/* ====================== */
@media (max-width: 992px) {
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
.hero-title { font-size: 3rem; }
.about-grid { grid-template-columns: 1fr; gap: 40px; }
.contacts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
.menu-toggle { display: block; }
.main-nav {
display: none;
width: 100%;
margin-top: 20px;
}
.main-nav.active { display: block; }
.main-nav ul {
flex-direction: column;
align-items: center;
gap: 10px;
}
.main-nav a { display: block; width: 100%; text-align: center; }
.hero { background-attachment: scroll; }
.hero-title { font-size: 2.2rem; }
.timer-item { padding: 15px 20px; min-width: 120px; }
.timer-item span { font-size: 2.2rem; }
.stage-grid { grid-template-columns: 1fr; }
.team-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.partners-highlight .section-title {
font-size: 2.2rem;
}
.form-container {
max-width: 100%;
}
.ya-form-iframe {
min-height: 1100px;
}
.form-fallback {
padding: 40px 20px;
}
.fallback-text {
font-size: 1.1rem;
}
}
@media (max-width: 576px) {
.container { padding: 0 20px; }
.section { padding: 60px 0; }
.hero-title { font-size: 1.8rem; }
.hero-subtitle { font-size: 1.1rem; }
.timer { gap: 10px; }
.timer-item { padding: 10px 15px; min-width: 100px; }
.timer-item span { font-size: 1.8rem; }
.btn { padding: 12px 28px; }
.team-photo { width: 120px; height: 120px; }
.partners-highlight .section-title {
font-size: 1.8rem;
}
.ya-form-iframe {
min-height: 1300px;
}
.fallback-btn {
width: 100%;
padding: 16px;
}
}
/* Эффекты для кнопок */
.ripple {
position: absolute;
border-radius: 50%;
transform: scale(0);
background: rgba(255, 255, 255, 0.7);
pointer-events: none;
}
/* Оптимизация производительности */
img[loading="lazy"] {
will-change: auto;
}
