/* Custom ResumeYay Styles */

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.benefit-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: none;
}

.benefit-card:hover {
  transform: none;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.benefit-card__number {
  font-size: 3rem;
  font-weight: 700;
  color: #00BFA6;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.benefit-card__number span {
  font-size: 1.75rem;
  margin-left: 2px;
}

.benefit-card__text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1A1A40;
}

.benefit-card__text p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background: linear-gradient(to right, rgba(0, 191, 166, 0.05), rgba(26, 26, 64, 0.05));
}

.steps {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: none;
}

.step:hover {
  transform: none;
}

.step__number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00BFA6;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.step__content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1A1A40;
}

.step__content p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.5;
}

/* Latest Blog Posts Section */
.latest-posts {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.post-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: none;
}

.post-card:hover {
  transform: none;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.post-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.post-card:hover .post-card__image img {
  transform: none;
}

.post-card__content {
  padding: 1rem;
}

.post-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.post-card__title a {
  color: #1A1A40;
  text-decoration: none;
  transition: none;
}

.post-card__title a:hover {
  color: #00BFA6;
}

.post-card__date {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 0.75rem;
}

.post-card__excerpt {
  color: #333333;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.post-card__link {
  display: inline-block;
  color: #00BFA6;
  font-weight: 500;
  text-decoration: none;
  transition: none;
}

.post-card__link:hover {
  color: #1A1A40;
  text-decoration: underline;
}

.see-all-posts {
  margin-top: 2.5rem;
  text-align: center;
}

/* Hero image updates */
.hero__image {
  margin: 2rem auto 0;
  text-align: center;
  max-width: 850px;
  width: 100%;
}

.hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  display: inline-block;
}

/* Make the hero section more prominent */
.hero {
  padding: 4rem 0 3rem;
}

.hero__content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Features Section Redesign */
.features {
  padding: 6rem 0;
  background-color: #fff;
}

.features__content {
  margin-top: 3rem;
}

.feature-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-row.reverse {
  flex-direction: row-reverse !important;
  display: flex !important;
}

.feature-row {
  flex-direction: row !important;
  display: flex !important;
}

.feature-text {
  flex: 1;
  padding: 1rem;
}

.feature-image {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
}

.feature-image img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.feature-title {
  font-size: 1.8rem;
  color: #1A1A40;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.feature-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #00BFA6;
}

.feature-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.2rem;
}

.feature-list {
  list-style-type: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00BFA6;
  font-weight: bold;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
  .benefits__grid, 
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step {
    padding: 1rem;
  }
  
  .feature-row {
    gap: 2rem;
  }
  
  .feature-title {
    font-size: 1.6rem;
  }
  
  .feature-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .benefits__grid,
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step__number {
    margin-bottom: 0.5rem;
  }
  
  .feature-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .feature-text, 
  .feature-image {
    grid-column: 1 !important;
  }
  
  .feature-image {
    order: -1; /* Always show image first on mobile */
  }
  
  .feature-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .benefit-card, 
  .post-card {
    padding: 0.75rem;
  }
  
  .hero__image img {
    max-width: 100%;
    height: auto;
  }
} 