:root {
  /* Основная монохромная цветовая схема */
  --primary-color: #1a1a1a;
  --primary-dark: #000000;
  --primary-light: #2d2d2d;
  --accent-color: #4a4a4a;
  --accent-hover: #666666;
  --text-color: #f5f5f5;
  --text-muted: #aaaaaa;
  --text-dark: #333333;
  --bg-color: #121212;
  --card-bg: #1e1e1e;
  --card-hover: #292929;
  --border-color: #3a3a3a;
  --success-color: #00b894;
  --error-color: #e74c3c;
  --warning-color: #f39c12;
  --info-color: #3498db;
  --gradient-primary: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
  --gradient-accent: linear-gradient(145deg, var(--accent-color), var(--primary-color));
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3);
  --transition-fast: all 0.2s ease;
  --transition-medium: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-circle: 50%;
  --section-spacing: 5rem;
  --element-spacing: 2rem;
  --container-width: 1200px;
}

/* Общие стили */
html, body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title, .subtitle {
  font-family: 'Archivo Black', sans-serif;
}

.title.is-1 {
  font-size: 3.5rem;
  letter-spacing: -0.5px;
}

.title.is-2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
header{
  position: fixed;
  top: 0;
  left: 0;
z-index: 1000;
width:100%;}
.title.is-2::after {
  content: '';
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: var(--border-radius-sm);
}

.title.is-3 {
  font-size: 2.2rem;
}

.title.is-4 {
  font-size: 1.8rem;
}

.subtitle {
  color: var(--text-muted);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.section {
  padding: 5rem 1.5rem;
}

.section-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Биоморфные элементы */
.biomorphic-title {
  position: relative;
  z-index: 1;
  transform: perspective(1000px) rotateX(0deg);
  transition: transform 0.5s ease;
}

.biomorphic-title:hover {
  transform: perspective(1000px) rotateX(5deg);
}

.biomorphic-shape {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: var(--gradient-accent);
  opacity: 0.1;
  z-index: -1;
  transition: var(--transition-slow);
}

.shape-1 {
  top: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  animation: morph 15s linear infinite alternate;
}

.shape-2 {
  bottom: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  animation: morph 12s linear infinite alternate-reverse;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  }
}

/* Навигационная панель */
.navbar {
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-medium);
}

.navbar-brand .title {
  margin-bottom: 0;
}

.navbar-item {
  transition: var(--transition-fast);
  position: relative;
  font-weight: 500;
}

.navbar-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--text-color);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.navbar-item:hover::after {
  width: 80%;
}

.navbar-burger {
  color: var(--text-color);
}

.navbar-burger:hover {
  background-color: transparent;
}

.navbar-burger span {
  height: 2px;
  width: 20px;
  left: calc(50% - 10px);
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 7px);
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 5px);
}

.navbar-menu.is-active {
  background-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

/* Hero секция */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: white;
}

.hero-body {
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.hero-body h1, .hero-body h2, .hero-body p {
  color: #FFFFFF !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-progress {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 3;
}

.progress-indicator {
  max-width: 500px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.progress-text {
  color: white;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.progress {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: white;
  border-radius: var(--border-radius-sm);
  transition: width 1.5s ease;
}

/* Секция Vision */
.vision-section {
  position: relative;
  overflow: hidden;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  flex: 1;
  min-width: 200px;
  margin: 1rem;
  background-color: var(--card-bg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Archivo Black', sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Секция About Us */
.about-section {
  position: relative;
}

.team-container {
  margin-top: 3rem;
}

.card {
  height: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

.image-container {
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

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

/* Секция Services */
.service-card .card-content {
  min-height: 250px;
}

.service-card .title {
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.service-card .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: var(--border-radius-sm);
}

/* Секция Portfolio */
.portfolio-section {
  position: relative;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
}

.portfolio-card .card-content {
  position: relative;
  z-index: 2;
}

/* Секция Resource Links */
.resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.resource-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition-medium);
}

.resource-link:hover {
  transform: translateY(-5px);
}

.resource-card {
  padding: 1.5rem;
  height: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

.resource-card h3 {
  margin-bottom: 0.8rem;
}

/* Секция Case Studies */
.case-study-card {
  height: 100%;
}

.case-study-card .content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.case-study-card .content ul li {
  margin-bottom: 0.5rem;
}

/* Секция Testimonials */
.testimonial-card {
  text-align: center;
  padding-top: 2rem;
}

.testimonial-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: var(--border-radius-circle);
  margin: 0 auto 1.5rem;
  border: 3px solid var(--accent-color);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Секция Gallery */
.gallery-section {
  position: relative;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-card .image-container {
  height: 200px;
}

/* Секция Workshops */
.workshops-section {
  position: relative;
}

.workshop-card {
  height: 100%;
}

.workshop-card .card-image .image-container {
  height: 240px;
}

/* Секция Events Calendar */
.calendar-section {
  position: relative;
}

.events-timeline {
  position: relative;
  margin-top: 2rem;
}

.event-item {
  display: flex;
  margin-bottom: 2rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

.event-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.event-date {
  background-color: var(--accent-color);
  color: white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  text-align: center;
}

.event-month {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
}

.event-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.5rem;
}

.event-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.event-content h3 {
  margin-bottom: 0.5rem;
}

/* Секция Contact */
.contact-section {
  position: relative;
}

.contact-card, .info-card {
  height: 100%;
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

.contact-form .label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form .input, 
.contact-form .textarea, 
.contact-form .select select {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  color: white;
  transition: var(--transition-fast);
}

.contact-form .input:focus, 
.contact-form .textarea:focus, 
.contact-form .select select:focus {
  border-color: white;
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

.contact-form .input::placeholder, 
.contact-form .textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-item .icon {
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

.map-container {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Футер */
.footer {
  padding: 4rem 1.5rem;
  background-color: var(--primary-dark);
}

.footer-links {
  list-style: none;
  margin-left: 0;
  margin-top: 0.5rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
  transition: var(--transition-fast);
}

.social-links a:hover {
  color: white !important;
}

/* Кнопки и элементы управления */
.button {
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.button.is-primary {
  background-color: var(--accent-color);
  border-color: transparent;
}

.button.is-primary:hover {
  background-color: var(--accent-hover);
}

.button.is-outlined.is-white {
  background-color: transparent;
  border-color: white;
  color: white;
}

.button.is-outlined.is-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.button.is-rounded {
  border-radius: 50px;
}

.pulse-button {
  position: relative;
}

.pulse-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Куки-согласие */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 0;
  margin-right: 1.5rem;
}

.cookie-link {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-link:hover {
  color: white;
}

/* Страница Success */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

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

.success-message {
  max-width: 600px;
}

/* Страницы Privacy и Terms */
.privacy-page, .terms-page {
  padding-top: 100px;
}

.privacy-content, .terms-content {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

/* Адаптивные стили */
@media (max-width: 1023px) {
  .title.is-1 {
    font-size: 2.8rem;
  }
  
  .title.is-2 {
    font-size: 2.4rem;
  }
  
  .event-item {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
  }
  
  .event-month {
    margin-right: 0.5rem;
  }
  
  .event-day {
    margin-top: 0;
    font-size: 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .title.is-1 {
    font-size: 2.2rem;
  }
  
  .title.is-2 {
    font-size: 1.8rem;
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .stat-item {
    margin: 0.5rem 0;
  }
}

/* Анимации при прокрутке */
[data-sr-id] {
  visibility: hidden;
}