/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Roboto:wght@400;500&display=swap');

.featured-work {
  background: #f9f9f9 url('https://www.transparenttextures.com/patterns/smoke.png');
  padding: 100px 20px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Section Title */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #000;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 5px;
  background: red;
  margin: 15px auto 0;
}

.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #444;
  margin-bottom: 50px;
  margin-top: 30px;
}

/* Work Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.work-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.work-card:hover {
  transform: translateY(-11px);
  box-shadow: 0 12px 30px rgba(255,0,0,0.4);
}

/* Image with Overlay */
.work-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.work-img img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.work-card:hover .work-img img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.work-card:hover .overlay {
  opacity: 1;
}

/* Titles & Text */
.work-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #000;
  margin-bottom: 10px;
  border-bottom: 2px solid red;
  display: inline-block;
  padding-bottom: 5px;
}

.work-card p {
  font-family: 'Roboto', sans-serif;
  color: #333;
  font-size: 16px;
}

/* Testimonial */
.testimonial {
  margin: 70px auto 50px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #111;
  font-style: italic;
  border-left: 5px solid red;
  padding-left: 20px;
  max-width: 800px;
}

/* CTA */
.btn-red {
  display: inline-block;
  background: red;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  padding: 16px 40px;
  border-radius: 35px;
  text-decoration: none;
  font-size: 20px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-red:hover {
  background: #b30000;
  box-shadow: 0 5px 20px rgba(255,0,0,0.4);
}

