/* Additional styles for Manus + Me Website - Part 2 */

/* Featured Projects Section */
.featured-projects {
  background-color: var(--beige);
  padding: 4rem 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  height: 200px;
  background-color: var(--purple);
  position: relative;
}

.project-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-info h3 {
  color: var(--purple);
  margin-bottom: 1rem;
}

.project-info .btn {
  margin-top: auto;
}

/* Framework Section */
.framework-section {
  background-color: var(--purple);
  color: var(--white);
  padding: 4rem 0;
}

.framework-section h2 {
  color: var(--gold);
}

.framework-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  font-family: var(--font-alice);
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.framework-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framework-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.framework-letter {
  width: 60px;
  height: 60px;
  background-color: var(--gold);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-playfair);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.framework-content h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.framework-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--white);
  padding: 4rem 0;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--beige);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.testimonial-content {
  font-family: var(--font-alice);
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content::before {
  content: """;
  font-family: var(--font-playfair);
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.3;
}

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

.author-name {
  font-family: var(--font-montserrat);
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 0.2rem;
}

.author-title {
  font-size: 0.9rem;
  color: #666;
}

/* Rabbit Hole Animation Enhancement */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.rabbit-hole-btn {
  animation: bounce 2s infinite;
}

.rabbit-hole-btn:hover {
  animation-play-state: paused;
}

/* Additional Responsive Enhancements */
@media (max-width: 576px) {
  .framework-item {
    padding: 1.5rem;
  }
  
  .framework-letter {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .testimonial-content {
    font-size: 1rem;
  }
  
  .testimonial-content::before {
    font-size: 3rem;
    top: -15px;
    left: -15px;
  }
}
