/* Variables */
:root {
  /* Color Palette */
  --primary-color: #3a7bd5;
  --primary-dark: #2a5db0;
  --primary-light: #5a9bf5;
  --secondary-color: #00d2ff;
  --secondary-dark: #00a2c0;
  --secondary-light: #33e0ff;
  --accent-color: #ff7a59;
  --accent-dark: #e45a39;
  --accent-light: #ff9a79;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #f5f5f5;
  --background-light: #ffffff;
  --background-medium: #f9f9f9;
  --background-dark: #eeeeee;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-color-strong: rgba(0, 0, 0, 0.2);
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  --accent-gradient: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  --dark-gradient: linear-gradient(135deg, #2c3e50, #1a2530);
  
  /* Typography */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-round: 50%;
  
  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

p {
  margin-bottom: var(--space-md);
}

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

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

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

.image-container {
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: transform var(--transition-medium);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px; /* Default height */
}

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

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-color-strong);
}

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

/* Button Styles */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-gradient);
  z-index: -1;
  transition: opacity var(--transition-medium);
  /*opacity: 0;*/
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.button:hover::after {
  opacity: 1;
}

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

.button.is-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 123, 213, 0.3);
}

.button.is-light {
  background: var(--background-light);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.button.is-light:hover {
  background-color: rgba(58, 123, 213, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 123, 213, 0.2);
}

.button.is-medium {
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
}

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

.button.is-fullwidth {
  width: 100%;
  display: block;
}

.pulse-button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(58, 123, 213, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(58, 123, 213, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(58, 123, 213, 0);
  }
}

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

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand h1 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 800;
}

.navbar-menu {
  display: flex;
}

.navbar-end {
  display: flex;
  align-items: center;
}

.navbar-item {
  margin-left: var(--space-md);
  color: var(--text-medium);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

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

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

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

.navbar-burger {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 80px; /* Account for fixed header */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) 0;
  width: 100%;
}

.hero-foot {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  z-index: 2;
}

.scroll-down {
  display: inline-block;
  animation: bounce 2s infinite;
}

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

/* About Section */
.about-section {
  padding: var(--space-xl) 0;
  background-color: var(--background-light);
}

.about-section .image-container {
  height: 400px;
}

/* Features Section */
.features-section {
  padding: var(--space-xl) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.feature-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card .card-image {
  overflow: hidden;
}

.feature-card .image-container {
  height: 200px;
  margin-bottom: 0;
  border-radius: 0;
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}

.feature-card .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

/* History Section */
.history-section {
  padding: var(--space-xl) 0;
  background-color: var(--background-medium);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--primary-gradient);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary-gradient);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 5px rgba(58, 123, 213, 0.2);
}

.timeline-content {
  position: relative;
  width: calc(50% - 40px);
  padding: var(--space-lg);
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: calc(50% + 40px);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: -15px;
  width: 30px;
  height: 4px;
  background: var(--primary-gradient);
  transform: translateY(10px);
}

.timeline-item:nth-child(even) .timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -15px;
  width: 30px;
  height: 4px;
  background: var(--primary-gradient);
  transform: translateY(10px);
}

/* Methodology Section */
.methodology-section {
  padding: var(--space-xl) 0;
  color: var(--text-light);
}

.methodology-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.methodology-card:hover {
  transform: translateY(-10px);
}

.methodology-card .card-image .image-container {
  height: 250px;
  margin-bottom: 0;
  border-radius: 0;
}

.methodology-card .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
}

.methodology-card h3 {
  color: var(--primary-color);
}

/* Vision Section */
.vision-section {
  padding: var(--space-xl) 0;
  background-color: var(--background-medium);
}

.vision-section .image-container {
  height: 400px;
}

.vision-content {
  padding: var(--space-lg);
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Resources Section */
.resources-section {
  padding: var(--space-xl) 0;
  color: var(--text-light);
}

.resource-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-medium);
  height: 100%;
  overflow: hidden;
}

.resource-card:hover {
  transform: translateY(-10px);
}

.resource-card .card-content {
  padding: var(--space-lg);
}

.resource-card h3 {
  color: var(--primary-color);
}

/* Workshops Section */
.workshops-section {
  padding: var(--space-xl) 0;
  background-color: var(--background-light);
}

.workshop-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.workshop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.workshop-card .card-image .image-container {
  height: 300px;
  margin-bottom: 0;
  border-radius: 0;
}

.workshop-card .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
}

.workshop-card h3 {
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: var(--space-xl) 0;
  color: var(--text-light);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.contact-info {
  background-color: rgba(0, 0, 0, 0.5);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.contact-item .icon {
  margin-right: var(--space-sm);
}

.opening-hours {
  margin-top: var(--space-md);
}

.day-time {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.contact-form-container {
  background-color: rgba(0, 0, 0, 0.5);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
}

.contact-form .field {
  margin-bottom: var(--space-md);
}

.contact-form .label {
  font-weight: 600;
}

.contact-form .input,
.contact-form .textarea {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: var(--border-radius-md);
  padding: 0.75rem;
  width: 100%;
  transition: box-shadow var(--transition-fast);
}

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

/* Map Section */
.map-section {
  height: 400px;
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  background-color: #2c3e50!important;
  color: var(--text-light);
  padding: var(--space-xl) 0;
}

.footer h3 {
  color: white;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

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

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
  display: inline-block;
}

.social-links a:hover {
  color: white;
  transform: translateX(5px);
}

.copyright {
  margin-top: var(--space-lg);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Animation Elements */
.animate-element {
  /*opacity: 0;*/
  transform: translateY(30px);
  transition: opacity 0.6s var(--bounce), transform 0.6s var(--bounce);
}

.animate-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: var(--primary-gradient);
  color: white;
}

.success-content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  color: var(--text-dark);
}

/* Privacy and Terms Pages */
.content-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.content-container {
  background-color: var(--background-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
    padding: var(--space-md);
  }
  
  .navbar-item {
    margin-left: 0;
    margin-bottom: var(--space-md);
  }
  
  .navbar-burger {
    display: block;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    right: auto;
  }
}

@media screen and (max-width: 768px) {
  .hero .title.is-1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.5rem;
  }
  
  .image-container {
    height: 250px;
  }
  
  .about-section .image-container,
  .vision-section .image-container {
    height: 300px;
  }
  
  .feature-card .image-container,
  .methodology-card .card-image .image-container,
  .workshop-card .card-image .image-container {
    height: 200px;
  }
}

@media screen and (max-width: 480px) {
  .hero .title.is-1 {
    font-size: 2rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.25rem;
  }
  
  .image-container {
    height: 200px;
  }
}
.content{
  color: #1a2530;
}