:root {
  /* Primary Colors */
  --primary-color: #0062cc;
  --primary-light: #2a7fe2;
  --primary-dark: #004a9f;
  
  /* Secondary Colors */
  --secondary-color: #00a0e0;
  --secondary-light: #4cc6ff;
  --secondary-dark: #0080b3;
  
  /* Monochromatic Scheme */
  --color-900: #001f42;
  --color-800: #00326b;
  --color-700: #004494;
  --color-600: #0056bd;
  --color-500: #0062cc;
  --color-400: #2a7fe2;
  --color-300: #54a1ff;
  --color-200: #8cc2ff;
  --color-100: #c4e0ff;
  --color-50: #e6f3ff;
  
  /* Neutral Colors */
  --dark: #161c2d;
  --gray-900: #1e2736;
  --gray-800: #2d3748;
  --gray-700: #4a5568;
  --gray-600: #718096;
  --gray-500: #a0aec0;
  --gray-400: #cbd5e0;
  --gray-300: #e2e8f0;
  --gray-200: #edf2f7;
  --gray-100: #f7fafc;
  --white: #ffffff;
  
  /* Font Families */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Work Sans', sans-serif;
  
  /* Sizes and Spacing */
  --section-spacing: 5rem;
  --container-padding: 2rem;
  --card-radius: 12px;
  --btn-radius: 50px;
  
  /* Animation Speeds */
  --transition-slow: 0.5s;
  --transition-medium: 0.3s;
  --transition-fast: 0.15s;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .title, .subtitle {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  transition: all var(--transition-medium) ease;
}

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

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

.section {
  padding: 5rem 1.5rem;
}

.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.animation-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animation-element.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all var(--transition-medium) ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 0.5rem 0;
}

.navbar-item {
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition-fast) ease;
}

.navbar-item:hover,
.navbar-item:focus {
  color: var(--primary-color) !important;
  background-color: transparent !important;
}

.navbar-item.is-active {
  color: var(--primary-color) !important;
  background-color: transparent !important;
}

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

/* Hero Section */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin-top: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 31, 66, 0.8) 0%, rgba(0, 98, 204, 0.6) 100%);
  z-index: -1;
}

.hero-body {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 4rem 1.5rem;
}

.hero .title,
.hero .subtitle,
.hero p {
  color: var(--white) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.scroll-down-btn {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--white);
  transition: all var(--transition-medium) ease;
}

.arrow-down {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(45deg);
  animation: pulse 2s infinite;
}

/* Buttons */
.button {
  font-family: var(--heading-font);
  font-weight: 500;
  border-radius: var(--btn-radius);
  transition: all var(--transition-medium) ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.5rem;
}

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

.button.is-primary:hover,
.button.is-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.button.is-outlined.is-light {
  border-color: var(--white);
  color: var(--white);
}

.button.is-outlined.is-light:hover,
.button.is-outlined.is-light:focus {
  background-color: rgba(255, 255, 255, 0.2);
}

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

.button.is-primary.is-outlined:hover,
.button.is-primary.is-outlined:focus {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Vision Section */
.vision-section {
  background-color: var(--gray-100);
}

.vision-section .content {
  padding: 2rem;
  border-radius: var(--card-radius);
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--color-50) 100%);
}

/* Cards */
.card {
  overflow: hidden;
  border-radius: var(--card-radius);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium) ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-image {
  overflow: hidden;
  border-top-left-radius: var(--card-radius);
  border-top-right-radius: var(--card-radius);
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.card-content .title {
  margin-bottom: 1rem;
}

.card-content p {
  color: var(--gray-700);
  flex-grow: 1;
}

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

/* Statistics Section */
.statistics-section {
  background: linear-gradient(135deg, var(--color-50) 0%, var(--color-100) 100%);
  text-align: center;
}

.stat-card {
  padding: 2.5rem 1.5rem;
  background-color: var(--white);
  border-radius: var(--card-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-medium) ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-title {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.stat-description {
  color: var(--gray-600);
}

/* Resources Section */
.resources-section {
  background-color: var(--gray-100);
}

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

/* Community Section */
.community-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--color-50) 100%);
}

/* Case Studies Section */
.case-studies-section {
  background-color: var(--gray-100);
}

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

.event-card {
  display: flex;
  background-color: var(--white);
  border-radius: var(--card-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: all var(--transition-medium) ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.event-content p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

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

.season-timeline {
  margin-top: 3rem;
}

.season {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--card-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: all var(--transition-medium) ease;
}

.season:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.season h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.season p {
  color: var(--gray-700);
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--color-50) 0%, var(--white) 100%);
}

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

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

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

.contact-item .icon {
  font-size: 1.25rem;
  margin-right: 1rem;
  color: var(--primary-color);
}

.map-container {
  border-radius: var(--card-radius);
  overflow: hidden;
}

/* Form Elements */
.input, .textarea, .select select {
  border-radius: var(--card-radius);
  border: 2px solid var(--gray-300);
  transition: all var(--transition-fast) ease;
  box-shadow: none !important;
}

.input:focus, .textarea:focus, .select select:focus {
  border-color: var(--primary-color);
}

.select:not(.is-multiple):not(.is-loading)::after {
  border-color: var(--primary-color);
}

.label {
  color: var(--gray-800);
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--gray-400);
  padding: 5rem 1.5rem 2rem;
}

.footer .title {
  color: var(--white);
}

.footer p {
  color: var(--gray-400);
}

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

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

.footer-links a {
  color: var(--gray-400);
  transition: color var(--transition-fast) ease;
}

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

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

.social-links a {
  color: var(--gray-400);
  font-weight: 500;
  transition: color var(--transition-fast) ease;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--white);
}

.copyright {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(30, 39, 54, 0.95);
  color: var(--white);
  padding: 1rem;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cookie-content p {
  margin: 0 1rem 0 0;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-50) 0%, var(--white) 100%);
}

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

.success-page .title {
  margin-bottom: 1rem;
}

.success-page p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  min-height: calc(100vh - 400px);
}

.page-content .container {
  max-width: 800px;
}

.page-content h1 {
  margin-bottom: 2rem;
}

.page-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    min-width: auto;
    padding: 1rem;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .event-date .month,
  .event-date .day {
    font-size: 1.25rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin: 0 0 1rem 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .hero .title {
    font-size: 3rem;
  }
  
  .hero .subtitle {
    font-size: 1.75rem;
  }
}

@media screen and (min-width: 1408px) {
  .container {
    max-width: 1344px;
  }
}
.navbar-burger{
  display: none;

}
.title.is-4::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #000;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 2px; /* якщо хочеш трохи заокруглення */
}