/* ========================================================================== 
   SHUAIBDEV CUSTOM HOMEPAGE STYLES
   ========================================================================== */

.shuaibdev-hero,
.shuaibdev-about,
.shuaibdev-projects,
.shuaibdev-contact {
  padding: 100px 20px;
}

.hero-container,
.about-container,
.projects-container,
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 50px;
  text-align: center;
}

.shuaibdev-hero {
  background-color: #0f172a;
  color: #ffffff;
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary,
.btn-secondary,
.btn-secondary-dark,
.btn-outline {
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #3b82f6;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #2563eb;
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #334155;
}

.btn-secondary:hover {
  border-color: #cbd5e1;
  color: #ffffff;
}

.btn-secondary-dark,
.btn-outline {
  background-color: transparent;
  color: #0f172a;
  border: 2px solid #0f172a;
}

.btn-secondary-dark:hover,
.btn-outline:hover {
  background-color: #0f172a;
  color: #ffffff;
}

.shuaibdev-about {
  background-color: #ffffff;
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.shuaibdev-projects {
  background-color: #f1f5f9;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.project-card-soon {
  border: 1px dashed #94a3b8;
  background: linear-gradient(145deg, #f8fafc 0%, #eef2ff 100%);
  box-shadow: none;
}

.project-card-media {
  display: block;
  background-color: #e2e8f0;
  height: 210px;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.project-card-placeholder {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.project-card-placeholder span {
  color: #64748b;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}

.project-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card-content-soon {
  justify-content: center;
  min-height: 210px;
}

.soon-kicker {
  display: inline-block;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e3a8a;
  background-color: rgba(59, 130, 246, 0.14);
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.project-title a {
  color: inherit;
  text-decoration: none;
}

.project-title a:hover {
  text-decoration: underline;
}

.project-description {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 18px;
}

.project-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tech-pill {
  background-color: #f1f5f9;
  color: #334155;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

.shuaibdev-contact {
  background-color: #ffffff;
  text-align: center;
}

.contact-text {
  font-size: 1.2rem;
  color: #475569;
  margin-bottom: 40px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card-media,
  .project-card-placeholder {
    height: 190px;
  }

  .project-card-content-soon {
    min-height: 190px;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .shuaibdev-hero,
  .shuaibdev-about,
  .shuaibdev-projects,
  .shuaibdev-contact {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
