/* Base Styles */
:root {
  --primary-color: #4a4a4a;
  --secondary-color: #6c6c6c;
  --accent-color: #3273dc;
  --background-color: #f5f5f5;
  --card-bg-color: #f0f0f0;
  --text-color: #333333;
  --text-light: #666666;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --border-radius: 15px;
  --transition-speed: 0.3s;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  color: var(--primary-color);
  font-weight: 600;
}

/* Neomorphic Elements */
.neomorphic-card {
  background: var(--card-bg-color);
  border-radius: var(--border-radius);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.05),
    -8px -8px 16px rgba(255, 255, 255, 0.8);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.neomorphic-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    10px 10px 20px rgba(0, 0, 0, 0.07),
    -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.neomorphic-input, .neomorphic-select select {
  background: var(--card-bg-color);
  border: none;
  border-radius: 10px;
  box-shadow: 
    inset 3px 3px 7px rgba(0, 0, 0, 0.1),
    inset -3px -3px 7px rgba(255, 255, 255, 0.7);
  padding: 1rem;
  transition: box-shadow var(--transition-speed);
}

.neomorphic-input:focus, .neomorphic-select select:focus {
  outline: none;
  box-shadow: 
    inset 4px 4px 8px rgba(0, 0, 0, 0.15),
    inset -4px -4px 8px rgba(255, 255, 255, 0.8);
}

/* Button Styles */
.button {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  border-radius: 10px;
  transition: 
    transform var(--transition-speed), 
    box-shadow var(--transition-speed),
    background-color var(--transition-speed);
}

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

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

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Header & Navigation */
.navbar {
  background-color: var(--background-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-item {
  font-family: 'Oswald', sans-serif;
  color: var(--text-color);
  font-weight: 500;
  transition: color var(--transition-speed);
}

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

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
}

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

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* About Section */
.about-section, .mission-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Instructors Section */
.instructors-section {
  background-color: #f9f9f9;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.instructors-section .card {
  height: 100%;
}

.instructors-section .card-image img {
  object-fit: cover;
  height: 350px;
}

/* External Resources Section */
.resources-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.resource-link {
  display: block;
  padding: 1rem;
  border-radius: var(--border-radius);
  transition: background-color var(--transition-speed);
}

.resource-link:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.resource-link h3 {
  color: var(--accent-color);
  transition: color var(--transition-speed);
}

.resource-link:hover h3 {
  color: #265bb5;
}

/* Sustainability Section */
.sustainability-section {
  background-color: #f9f9f9;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Awards Section */
.awards-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.award-item {
  text-align: center;
}

/* Contact Section */
.contact-section {
  background-color: #f9f9f9;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Footer */
.footer {
  background-color: #333333;
  color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer h3 {
  color: #ffffff;
}

.footer a {
  color: #cccccc;
  transition: color var(--transition-speed);
}

.footer a:hover {
  color: #ffffff;
}

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

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

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

/* Accordion */
.accordion {
  margin-bottom: 1rem;
}

.accordion-header {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: none;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

.accordion-button:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.accordion-body {
  display: none;
  padding: 0 1rem 1rem;
}

.accordion.is-active .accordion-body {
  display: block;
}

/* Success Page */
.success-section {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

/* Approach Steps */
.approach-steps {
  margin-top: 2rem;
}

.approach-step {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .neomorphic-card {
    padding: 1.5rem;
  }
  
  .columns.is-vcentered {
    display: block;
  }
  
  .column.is-5, .column.is-7 {
    width: 100%;
  }
  
  .approach-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 1rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

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

/* Testimonials */
.testimonial-item {
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-item::before {
  content: """;
  font-size: 3rem;
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  color: var(--accent-color);
  opacity: 0.2;
}

/* Particle Animation */
.hero-particles {
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

/* Neo-brutalist elements */
.neo-brutalist {
  border: 3px solid black;
  box-shadow: 8px 8px 0px black;
  transition: all 0.2s ease;
}

.neo-brutalist:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0px black;
}

/* FAQ Accordion */
.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-content {
  padding: 1rem;
}

/* Client Logos */
.clients-logos .image {
  transition: transform var(--transition-speed);
}

.clients-logos .image:hover {
  transform: scale(1.05);
}

/* Form Success Animation */
@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.success-animation {
  animation: successPulse 1.5s ease-in-out infinite;
}

/* Value Items */
.value-item {
  height: 100%;
  transition: transform var(--transition-speed);
}

.value-item:hover {
  transform: translateY(-5px);
}

/* Mobile Menu */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: var(--background-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
}

/* Accessibility Improvements */
:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}