:root {
  /* Триадная цветовая схема */
  --primary-color: #4f6df5; /* Основной - голубой */
  --primary-dark: #3951c6;
  --primary-light: #7b91f8;
  
  --secondary-color: #f54f6d; /* Дополнительный - розовый */
  --secondary-dark: #d23a56;
  --secondary-light: #ff798e;
  
  --tertiary-color: #6df54f; /* Третичный - зеленый */
  --tertiary-dark: #50c636;
  --tertiary-light: #8fff72;
  
  /* Нейтральные цвета */
  --dark-bg: #1a1a2e;
  --light-bg: #f5f5f7;
  --white: #ffffff;
  --black: #121212;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  
  /* Гласморфизм */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  
  /* Биоморфные формы */
  --border-radius-sm: 8px;
  --border-radius-md: 15px;
  --border-radius-lg: 30px;
  --border-radius-xl: 50px;
  
  /* Текстовые стили */
  --heading-font: 'Inter', sans-serif;
  --body-font: 'IBM Plex Sans', sans-serif;
  
  /* Тени */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);
  
  /* Переходы */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

/* Основные стили */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
  position: relative;
}

.section-header:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 1.5rem auto 0;
  border-radius: var(--border-radius-sm);
}

/* Гласморфизм */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  transition: transform var(--transition-fast);
}

.glass-card:hover {
  transform: translateY(-5px);
}

/* Биоморфные формы */
.biomorphic-shape {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: var(--primary-light);
  transition: border-radius var(--transition-medium);
}

.biomorphic-shape:hover {
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

/* Кнопки */
.button {
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.button.is-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.button.is-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.button.is-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.button.is-rounded {
  border-radius: var(--border-radius-xl);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  padding: 0.5rem 0;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 0.5rem 0;
}

.logo {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.logo span {
  color: var(--secondary-color);
}

.navbar-item {
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary-color);
}

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

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

.hero-body {
  position: relative;
  z-index: 1;
  padding: 10rem 1.5rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-title, .hero-subtitle {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
}

.hero-subtitle {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.progress-indicator {
  margin-top: 3rem;
}

.progress-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background-color: var(--white);
  transform: scale(1.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.hero-scroll-indicator a {
  color: var(--white);
  font-size: 2rem;
  opacity: 0.7;
  transition: all var(--transition-fast);
  animation: bounce 2s infinite;
}

.hero-scroll-indicator a:hover {
  opacity: 1;
  transform: translateY(5px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* About / History Section */
.about-section {
  background-color: var(--white);
}

.about-content {
  margin-bottom: 3rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image-container {
  margin: 3rem 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-container img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-medium);
}

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

/* Services Section */
.services-section {
  background-position: center;
  background-size: cover;
  position: relative;
}

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

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

.card-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.image-container {
  height: 250px;
  width: 100%;
  overflow: hidden;
}

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

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

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: var(--white);
}

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

.card-content p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Process Section */
.process-section {
  background-color: var(--light-bg);
}

.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.process-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.step-number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-right: 1.5rem;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(79, 109, 245, 0.1);
  border: 2px solid var(--primary-color);
}

.step-content {
  flex-grow: 1;
}

.step-content h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

/* Success Stories Section */
.success-stories-section {
  background-position: center;
  background-size: cover;
  color: var(--white);
  position: relative;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 5px solid var(--primary-color);
}

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

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.prev-button, .next-button {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: all var(--transition-fast);
}

.prev-button:hover, .next-button:hover {
  color: var(--primary-light);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 1rem;
}

/* External Resources Section */
.external-resources-section {
  background-color: var(--white);
}

.resource-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  height: 100%;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

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

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

.resource-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.gallery-caption p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Events Section */
.events-section {
  background-position: center;
  background-size: cover;
  position: relative;
}

.event-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  display: flex;
}

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

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

.event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
}

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

.event-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.event-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.event-location, .event-time {
  display: flex;
  align-items: center;
}

.event-location i, .event-time i {
  margin-right: 0.3rem;
}

.event-description {
  margin-bottom: 1.5rem;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  background-color: var(--light-bg);
}

.behind-content {
  padding: 1rem;
}

.behind-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.behind-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.behind-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.behind-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-medium);
}

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

/* Media Section */
.media-section {
  background-position: center;
  background-size: cover;
  position: relative;
}

.media-card {
  height: 100%;
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

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

.media-image {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

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

.media-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.media-date {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.media-content p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Portfolio Section */
.portfolio-section {
  background-color: var(--white);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-button {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-xl);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 600;
}

.filter-button:hover, .filter-button.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.portfolio-image {
  position: relative;
  height: 300px;
  width: 100%;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(79, 109, 245, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-info {
  text-align: center;
  padding: 2rem;
  color: var(--white);
}

.portfolio-info h3 {
  margin-bottom: 1rem;
  color: var(--white);
}

.portfolio-info p {
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
  background-position: center;
  background-size: cover;
  position: relative;
  color: var(--white);
}

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

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.info-item .icon {
  margin-right: 1rem;
  color: var(--primary-light);
  font-size: 1.5rem;
}

.contact-social {
  margin-top: 2rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: var(--white);
  transition: color var(--transition-fast);
}

.social-link:hover {
  color: var(--primary-light);
}

.contact-form-container {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form .label {
  color: var(--white);
}

.contact-form .input, .contact-form .textarea, .contact-form .select select {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: var(--border-radius-sm);
  box-shadow: none;
  transition: all var(--transition-fast);
}

.contact-form .input:focus, .contact-form .textarea:focus, .contact-form .select select:focus {
  box-shadow: 0 0 0 2px var(--primary-light);
}

.contact-form .button {
  margin-top: 1rem;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 5rem 0 2rem;
}

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

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-light);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
  margin-right: 0.8rem;
  color: var(--primary-light);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--primary-light);
}

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

.success-container {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.success-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.success-description {
  margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  min-height: 100vh;
  background-color: var(--light-bg);
}

.privacy-container, .terms-container {
  padding: 3rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}

.privacy-title, .terms-title {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.privacy-content, .terms-content {
  line-height: 1.8;
}

.privacy-content h3, .terms-content h3 {
  color: var(--primary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    padding: 1rem;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .button {
    width: 100%;
    max-width: 300px;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-copyright {
    margin-bottom: 1rem;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .portfolio-filter {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-button {
    width: 100%;
    text-align: center;
  }
}

/* Animations */
[data-scroll] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

[data-scroll].scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Cookies Consent */
#cookieConsent {
  font-family: var(--body-font);
}

#acceptCookies {
  font-family: var(--heading-font);
  font-weight: 600;
  border-radius: var(--border-radius-sm);
}