:root {
  /* Color Palette */
  --color-primary: #2C3E50;
  --color-primary-light: #3E5771;
  --color-primary-dark: #1A252F;
  --color-secondary: #E67E22;
  --color-secondary-light: #F39C12;
  --color-secondary-dark: #D35400;
  --color-accent: #3498DB;
  --color-accent-light: #5DADE2;
  --color-accent-dark: #2980B9;
  
  /* Neutral Colors */
  --color-neutral-100: #F8F9FA;
  --color-neutral-200: #E9ECEF;
  --color-neutral-300: #DEE2E6;
  --color-neutral-400: #CED4DA;
  --color-neutral-500: #ADB5BD;
  --color-neutral-600: #6C757D;
  --color-neutral-700: #495057;
  --color-neutral-800: #343A40;
  --color-neutral-900: #212529;
  
  /* Feedback Colors */
  --color-success: #28A745;
  --color-info: #17A2B8;
  --color-warning: #FFC107;
  --color-danger: #DC3545;
  
  /* 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: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container */
  --container-width: 1200px;
  --container-padding: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-neutral-800);
  background-color: var(--color-neutral-100);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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(--color-primary);
}

h1 {
  font-size: 3rem;
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

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

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

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

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

ul {
  list-style: none;
}

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

.section {
  padding: var(--space-xxl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-secondary);
  margin: var(--space-sm) auto;
  border-radius: var(--radius-sm);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  color: var(--color-neutral-600);
  font-size: 1.1rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

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

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mt-sm {
  margin-top: var(--space-sm);
}

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

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

/* Buttons */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.4;
  box-shadow: var(--shadow-sm);
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active, 
button:active, 
input[type='submit']:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  box-shadow: none;
}

.btn-tertiary:hover {
  background-color: var(--color-accent);
  color: white;
}

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

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 60px;
  width: auto;
}

.navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-menu a {
  color: var(--color-neutral-800);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent);
  transition: width var(--transition-normal);
}

.nav-menu a:hover {
  color: var(--color-accent);
}

.nav-menu a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-primary);
  transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0 5rem;
  color: white;
  margin-top: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1rem;
}

.hero .title {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  font-weight: 900;
  color: white;
  line-height: 1.1;
}

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
  color: white;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: var(--space-lg);
}

/* Workshops Section */
.workshops .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--space-xl);
}

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

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

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

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

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

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

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

.card-content p {
  color: var(--color-neutral-700);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.card-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Insights Section */
.insights {
  background-color: var(--color-neutral-200);
  position: relative;
  overflow: hidden;
}

.insights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
  z-index: 0;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
  z-index: 1;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 4px;
  height: 100%;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  z-index: -1;
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: var(--space-xxl);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 42px;
  width: 20px;
  height: 20px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}

.timeline-content {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

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

.timeline-date {
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.read-more {
  display: inline-block;
  margin-top: var(--space-sm);
  color: var(--color-accent);
  font-weight: 600;
  position: relative;
  transition: all var(--transition-normal);
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: transform var(--transition-normal);
  display: inline-block;
}

.read-more:hover {
  color: var(--color-accent-dark);
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* Behind the Scenes Section */
.behind-scenes {
  background-color: white;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/2;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

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

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

.gallery-caption h3 {
  color: white;
  margin-bottom: var(--space-sm);
}

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

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

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

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

.resource-card .card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  overflow: hidden;
}

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

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

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

.resource-card .card-content p {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.resource-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Sustainability Section */
.sustainability {
  background-color: var(--color-neutral-200);
  position: relative;
  overflow: hidden;
}

.sustainability::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
  z-index: 0;
}

.sustainable-practices {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.practice {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.practice img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin: 0 auto;
}

.practice h3 {
  padding: var(--space-md) var(--space-lg) 0;
  color: var(--color-primary);
  margin: 0 auto;
  text-align: center;
}

.practice p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-neutral-700);
  text-align: center;
}

/* Partners Section */
.partners {
  background-color: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner {
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--color-neutral-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.partner img {
  height: 120px;
  width: auto;
  object-fit: contain;
  margin: 0 auto var(--space-md);
  transition: transform var(--transition-normal);
}

.partner:hover img {
  transform: scale(1.05);
}

.partner h3 {
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-primary);
}

.partner p {
  color: var(--color-neutral-600);
  font-size: 0.9rem;
}

/* Careers Section */
.careers {
  background-color: var(--color-neutral-100);
}

.success-stories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  transition: transform var(--transition-normal);
  align-items: center;
}

@media (min-width: 768px) {
  .story {
    flex-direction: row;
  }
}

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

.story img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-full);
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.story-content {
  flex: 1;
}

.story-content h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.story-content .position {
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.story-content .testimony {
  color: var(--color-neutral-700);
  font-style: italic;
  position: relative;
  padding-left: var(--space-lg);
}

.story-content .testimony::before {
  content: """;
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 4rem;
  color: var(--color-neutral-300);
  font-family: serif;
  line-height: 1;
}

/* Community Section */
.community {
  background-color: var(--color-neutral-200);
  position: relative;
  overflow: hidden;
}

.community::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
  z-index: 0;
}

.community-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.feature img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin: 0 auto;
}

.feature h3 {
  padding: var(--space-md) var(--space-lg) 0;
  color: var(--color-primary);
  text-align: center;
}

.feature p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-neutral-700);
  text-align: center;
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-info {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.info-item {
  margin-bottom: var(--space-lg);
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item h3 {
  color: white;
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

.contact-form {
  background-color: var(--color-neutral-100);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Footer */
.footer {
  background-color: var(--color-primary-dark);
  color: white;
  padding: var(--space-xxl) 0 var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr 1fr;
  }
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  margin-bottom: var(--space-md);
  max-width: 150px;
}

.footer-logo p {
  color: var(--color-neutral-400);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2rem;
}

.link-group h3 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.link-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.link-group a {
  color: var(--color-neutral-400);
  transition: color var(--transition-fast);
}

.link-group a:hover {
  color: white;
}

.footer-social h3 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}

.social-links a {
  color: var(--color-neutral-400);
  transition: color var(--transition-fast);
  position: relative;
  padding-left: 1.8rem;
}

.social-links a::before {
  font-family: sans-serif;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.social-links a[href*="facebook"]::before {
  content: "f";
}

.social-links a[href*="twitter"]::before {
  content: "t";
}

.social-links a[href*="instagram"]::before {
  content: "i";
}

.social-links a[href*="linkedin"]::before {
  content: "in";
}

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

.newsletter h3 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter input {
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter input::placeholder {
  color: var(--color-neutral-400);
}

.newsletter .btn {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  text-align: center;
  color: var(--color-neutral-500);
  font-size: 0.9rem;
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--space-md);
}

.success-content {
  max-width: 600px;
  padding: var(--space-xxl);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.success-content h1 {
  color: var(--color-success);
  margin-bottom: var(--space-lg);
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero .title {
    font-size: 2.8rem;
  }
  
  .hero .subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .navigation {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: white;
    overflow: hidden;
    transition: height var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  
  .navigation.active {
    height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .nav-menu {
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-lg);
  }
  
  .burger-menu {
    display: flex;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .hero .title {
    font-size: 2.3rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-marker {
    left: 12px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: var(--space-xl) 0;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .hero .title {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

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

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes morphing {
  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: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.animated {
  animation: fadeIn 1s ease forwards;
}

.scale-in {
  animation: scaleIn 0.5s ease forwards;
}

.morph {
  animation: morphing 8s ease-in-out infinite;
}

/* JavaScript Dependent Classes */
.js-revealed {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-revealed.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* For curved grid effect */
.curved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.curved-grid > * {
  transform: rotateY(var(--rotate-y, 0)) rotateX(var(--rotate-x, 0));
  transition: transform 0.5s ease;
}

.curved-grid > *:nth-child(odd) {
  --rotate-y: 2deg;
}

.curved-grid > *:nth-child(even) {
  --rotate-y: -2deg;
}

.curved-grid > *:hover {
  --rotate-y: 0;
  --rotate-x: 0;
  z-index: 1;
}

/* About Page */
.about-page {
  padding-top: 100px;
}

/* Contact Page */
.contacts-page {
  padding-top: 100px;
}
.burger-menu{
  display: none;
}