:root {
  /* Основные цвета */
  --primary-color: #FF5D3A; /* Яркий оранжевый */
  --primary-dark: #E54020; /* Темно-оранжевый для hover */
  --secondary-color: #2C3AFF; /* Яркий синий */
  --secondary-dark: #1F2DB8; /* Темно-синий для hover */
  --accent-color: #35E8B8; /* Бирюзовый акцент */
  --accent-dark: #24C99F; /* Темно-бирюзовый для hover */

  /* Нейтральные цвета */
  --dark-color: #222222; /* Почти черный */
  --dark-mid: #333333; /* Темно-серый */
  --mid-color: #666666; /* Средне-серый */
  --light-mid: #AAAAAA; /* Светло-серый */
  --light-color: #F5F5F5; /* Почти белый */
  --white: #FFFFFF; /* Чистый белый */

  /* Функциональные цвета */
  --success-color: #00CC66; /* Зеленый */
  --warning-color: #FFBB00; /* Желтый */
  --error-color: #FF3D3D; /* Красный */

  /* Типографика */
  --heading-font: 'Archivo Black', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Размеры */
  --header-height: 90px;
  --section-spacing: 80px;
  --card-border-radius: 0px; /* Брутализм использует прямоугольные формы */
  --button-border-radius: 0px;
  
  /* Тени */
  --neo-shadow: 6px 6px 0px 0px var(--dark-color);
  --hover-shadow: 8px 8px 0px 0px var(--secondary-color);
  --card-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
}

/* Базовые стили */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  color: var(--dark-color);
  font-weight: 900;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--dark-mid);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

a:hover {
  color: var(--secondary-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.container {
  padding: 0 1.5rem;
}

/* Секция */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
  color: var(--dark-color);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background-color: var(--primary-color);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  color: var(--mid-color);
}

/* Хедер и навигация */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: var(--header-height);
}

.header.scrolled {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 70px;
}

.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand h1 {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1;
  font-weight: 900;
  color: var(--dark-color);
  letter-spacing: 1px;
}

.navbar-brand h1 span {
  color: var(--primary-color);
}

.navbar-toggler {
  border: 2px solid var(--primary-color);
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 93, 58, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  color: var(--dark-color) !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link:hover::after {
  width: 80%;
}

/* Кнопки */
.btn {
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: var(--button-border-radius);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  letter-spacing: 1px;
  box-shadow: var(--neo-shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px 0px var(--dark-color);
}

.btn:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0px 0px var(--dark-color);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Hero секция */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 0 80px;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 3px 3px 0px var(--dark-color);
  animation: fadeInDown 1s ease;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--white);
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeIn 1s ease 0.6s;
  animation-fill-mode: both;
}

/* Миссия секция */
.mission {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--accent-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.mission::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.mission-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  background-color: var(--white);
  box-shadow: var(--neo-shadow);
  transition: transform 0.3s ease;
}

.mission-content:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.mission-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.mission-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.mission-image {
  overflow: hidden;
  box-shadow: var(--neo-shadow);
  margin-bottom: 30px;
}

.mission-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.mission-image:hover img {
  transform: scale(1.05);
}

.progress-container {
  margin-top: 2rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.progress {
  height: 12px;
  background-color: var(--light-mid);
  border-radius: 0;
  margin-bottom: 1.5rem;
  overflow: visible;
  position: relative;
  box-shadow: var(--neo-shadow);
}

.progress-bar {
  background-color: var(--primary-color);
  border-radius: 0;
  position: relative;
  transition: width 1.5s ease;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  border: 3px solid var(--white);
}

/* Features/Services секция */
.features {
  background-color: var(--light-color);
  position: relative;
}

.feature-card {
  margin-bottom: 30px;
  border: 3px solid var(--dark-color);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: var(--neo-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.card-image {
  overflow: hidden;
  width: 100%;
  height: 250px;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature-toggle {
  margin-top: auto;
  padding-top: 1.5rem;
}

.toggle-input {
  display: none;
}

.toggle-label {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  line-height: 25px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.toggle-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 24px;
  background-color: var(--light-mid);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.toggle-label::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background-color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-input:checked + .toggle-label::before {
  background-color: var(--primary-color);
}

.toggle-input:checked + .toggle-label::after {
  left: 19px;
}

.toggle-input:checked + .toggle-label {
  color: var(--primary-dark);
}

/* Team секция */
.team {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.team-card {
  margin-bottom: 30px;
  border: 3px solid var(--dark-color);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: var(--neo-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.team-card .card-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.team-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .card-image img {
  transform: scale(1.05);
}

.team-card .card-content {
  padding: 1.5rem;
  text-align: center;
  flex: 1;
}

.team-card h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.team-position {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.team-social {
  margin-top: 1.5rem;
}

.team-social a {
  display: inline-block;
  margin: 0 5px;
  color: var(--secondary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.team-social a:hover {
  color: var(--primary-color);
}

/* Resources секция */
.resources {
  background-color: var(--light-color);
  position: relative;
}

.resource-card {
  margin-bottom: 30px;
  border: 3px solid var(--dark-color);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: var(--neo-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.resource-card .card-image {
  overflow: hidden;
  height: 200px;
}

.resource-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resource-card:hover .card-image img {
  transform: scale(1.1);
}

.resource-card .card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.resource-link {
  display: inline-block;
  margin-top: auto;
  padding: 0.5rem 1rem;
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px 0px var(--dark-color);
  border: none;
  align-self: flex-start;
}

.resource-link:hover {
  background-color: var(--secondary-dark);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px 0px var(--dark-color);
  text-decoration: none;
  color: var(--white);
}

/* Projects секция */
.projects {
  background-color: var(--white);
  position: relative;
}

.project-card {
  margin-bottom: 30px;
  border: 3px solid var(--dark-color);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: var(--neo-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.project-card .card-image {
  overflow: hidden;
  height: 300px;
}

.project-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .card-image img {
  transform: scale(1.05);
}

.project-card .card-content {
  padding: 2rem;
  flex: 1;
}

.project-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 15px;
}

.project-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Portfolio секция */
.portfolio {
  background-color: var(--light-color);
  position: relative;
}

.portfolio-item {
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
  padding: 1rem;
  background-color: var(--white);
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
}

.portfolio-item:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  margin: 0 auto;
}

.portfolio-item p {
  font-weight: 600;
  margin-bottom: 0;
  color: var(--dark-color);
}

/* Events секция */
.events {
  background-color: var(--white);
  position: relative;
}

.event-card {
  margin-bottom: 30px;
  border: 3px solid var(--dark-color);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: var(--neo-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.event-card .card-image {
  overflow: hidden;
  height: 250px;
}

.event-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .card-image img {
  transform: scale(1.05);
}

.event-card .card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-date {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  box-shadow: 3px 3px 0px 0px var(--dark-color);
  align-self: flex-start;
}

.event-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.event-card .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

/* Calendar секция */
.calendar {
  background-color: var(--light-color);
  position: relative;
}

.calendar-wrapper {
  background-color: var(--white);
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
  padding: 2rem;
  transition: all 0.3s ease;
}

.calendar-wrapper:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.calendar-header {
  margin-bottom: 2rem;
  text-align: center;
}

.calendar-header h3 {
  color: var(--secondary-color);
  margin-bottom: 0;
  font-size: 1.8rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 2rem;
}

.calendar-day {
  text-align: center;
  padding: 15px 10px;
  background-color: var(--light-color);
  border: 2px solid var(--dark-color);
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
}

.calendar-day.header {
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 700;
  border-color: var(--secondary-color);
}

.calendar-day.event {
  background-color: var(--accent-color);
  color: var(--dark-color);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  border-color: var(--accent-color);
}

.calendar-day.event:hover {
  background-color: var(--accent-dark);
}

.event-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--dark-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.calendar-day.event:hover .event-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 10px);
}

.calendar-legend {
  display: flex;
  align-items: center;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.legend-color {
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  border: 2px solid var(--dark-color);
  margin-right: 10px;
}

/* Contact секция */
.contact {
  background-color: var(--white);
  position: relative;
}

.contact-info {
  background-color: var(--light-color);
  padding: 2rem;
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.contact-info:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 10px;
}

.contact-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.contact-item p {
  margin-bottom: 0.75rem;
}

.contact-map {
  margin-top: 2rem;
  border: 3px solid var(--dark-color);
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.contact-map:hover img {
  transform: scale(1.05);
}

.contact-form {
  background-color: var(--light-color);
  padding: 2rem;
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.contact-form:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-color);
}

.form-control {
  border: 2px solid var(--dark-color);
  border-radius: 0;
  padding: 12px 15px;
  height: auto;
  background-color: var(--white);
  color: var(--dark-color);
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px 0px var(--dark-color);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 5px 5px 0px 0px var(--primary-color);
  outline: none;
}

.form-check-input {
  border: 2px solid var(--dark-color);
  background-color: var(--white);
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  margin-left: 0.5rem;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  padding: 80px 0 30px;
  color: var(--white);
  position: relative;
}

.footer-brand h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand h2 span {
  color: var(--primary-color);
}

.footer-brand p {
  color: var(--light-mid);
  margin-bottom: 2rem;
}

.footer-social {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-social a {
  display: inline-block;
  color: var(--white);
  font-weight: 600;
  margin-right: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
}

.footer-social a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-social a:hover::after {
  width: 100%;
}

.footer-nav h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: var(--light-mid);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.footer-nav a:hover {
  color: var(--primary-color);
  padding-left: 20px;
  text-decoration: none;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 5px;
}

.footer-newsletter h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-newsletter p {
  color: var(--light-mid);
  margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.3);
}

.newsletter-form .form-control {
  border: 2px solid var(--white);
  border-right: none;
  border-radius: 0;
  padding: 12px 15px;
  background-color: var(--dark-mid);
  color: var(--white);
  box-shadow: none;
}

.newsletter-form .form-control::placeholder {
  color: var(--light-mid);
}

.newsletter-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--primary-color);
}

.newsletter-form .btn {
  border: 2px solid var(--white);
  border-left: none;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  box-shadow: none;
  border-radius: 0;
}

.newsletter-form .btn:hover {
  background-color: var(--primary-dark);
  transform: none;
  box-shadow: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
}

.footer-bottom p {
  color: var(--light-mid);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.95);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  color: var(--white);
  flex: 1;
  min-width: 200px;
}

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-content .btn {
  margin: 0;
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  padding: 100px 0;
}

.success-content {
  text-align: center;
  background-color: var(--white);
  padding: 3rem;
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
  max-width: 800px;
  width: 100%;
  transition: all 0.3s ease;
}

.success-content:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.success-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 2rem;
}

.success-content h1 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.success-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.success-content .btn {
  margin-top: 1rem;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 150px;
  padding-bottom: 80px;
}

.page-content .container {
  background-color: var(--white);
  padding: 3rem;
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
}

.page-title {
  margin-bottom: 2rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 15px;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background-color: var(--primary-color);
}

.page-content h2 {
  color: var(--secondary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.page-content h3 {
  color: var(--dark-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.page-content li {
  margin-bottom: 0.75rem;
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Медиа-запросы */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .contact-info, .contact-form {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .footer {
    padding: 50px 0 30px;
  }
  
  .footer-nav, .footer-newsletter {
    margin-top: 2rem;
  }
  
  .calendar-day {
    padding: 10px 5px;
    font-size: 0.9rem;
  }
  
  .event-date {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .page-content {
    padding: 120px 15px 50px;
  }
  
  .page-content .container {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .btn-lg {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .contact-form, .contact-info {
    padding: 1.5rem;
  }
  
  .calendar-grid {
    gap: 5px;
  }
  
  .calendar-day {
    padding: 8px 3px;
    font-size: 0.8rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-content .btn {
    width: 100%;
  }
  
  .page-content {
    padding-top: 100px;
  }
  
  .page-content .container {
    padding: 1.5rem;
  }
}
.navbar-toggler{
  display: none;
}