:root {
  --primary: #FF6B35; /* Vibrant orange - energy */
  --secondary: #2EC4B6; /* Teal - playful contrast */
  --dark: #011627; /* Near black - depth */
  --light: #FDFFFC; /* Off-white - clean */
  --accent: #E71D36; /* Bright red - accent */
}

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

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Fix for hero text color */
.hero-content {
  color: var(--dark);
}

.hero-text {
  color: var(--dark) !important;
  font-weight: 600;
}

.hero-title {
  color: var(--dark);
}

/* Philosophy section fix */
.philosophy {
  background-color: var(--light);
  color: var(--dark);
}

.philosophy-item {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  background-color: var(--light);
  color: var(--dark);
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: transform 0.3s ease;
}

.philosophy-title {
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.philosophy-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.philosophy-item p {
  color: var(--dark);
}

.philosophy-item:hover {
  transform: translateY(-5px) !important;
}

/* Gallery section fix */
.gallery-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content {
      padding: 30px;
      margin: 0 20px;
  }
  
  .philosophy-grid {
      grid-template-columns: 1fr;
  }
  
  .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .email-signup {
      left: 20px;
      right: 20px;
      max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 2rem;
  }
  
  .hero-text {
      font-size: 1rem;
  }
  
  .cta-title {
      font-size: 2rem;
  }
  
  .email-signup-inner form {
      flex-direction: column;
  }
}