/* Enhanced Image Styles with Responsiveness */
.imgHomeIntro {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  height: 300px;
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .imgHomeIntro {
    height: 400px;
    max-width: 450px;
  }
}

@media (min-width: 1024px) {
  .imgHomeIntro {
    height: 500px;
    max-width: 500px;
  }
}

.imgHomeIntro:hover {
  transform: scale(1.02);
}

/* Enhanced Theme Colors */
.text-color-1 {
  color: hsl(var(--primary));
}

.bg-color-1 {
  background-color: hsl(var(--primary));
}

/* Responsive cover image */
.resume-img-cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: hsl(var(--muted));
  width: 100%;
  height: 250px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .resume-img-cover {
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .resume-img-cover {
    height: 400px;
  }
}

.resume-img-cover:hover {
  transform: scale(1.02);
}

/* Enhanced section spacing */
.section-spacing {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* Mobile-first responsive containers */
.container-responsive {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-responsive {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-responsive {
    padding: 0 2rem;
  }
}

/* Home Page Styles */
.home-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.home-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  background: #fff;
}
.intro-image {
  width: 320px;
  height: auto;
  margin-right: 2rem;
  border-radius: 1rem;
}
.intro-text {
  max-width: 600px;
}
.home-projects,
.home-sites,
.home-gallery {
  margin: 3rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}
.project-card,
.site-card,
.gallery-image {
  display: inline-block;
  margin: 1rem;
  padding: 1rem;
  background: #fafafa;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 260px;
  vertical-align: top;
  text-align: center;
}
.project-card img,
.site-card img,
.gallery-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}
.gallery-image span {
  display: block;
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.95em;
}
@media (max-width: 900px) {
  .home-intro {
    flex-direction: column;
  }
  .intro-image {
    margin: 0 0 1.5rem 0;
  }
}

#hero-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 17rem 5rem;
  background-color: wheat;
  position: relative;
}

.hero-content {
  z-index: 1;
  color: white;
}

#hero-background {
  background-image: url(/static/website/home/coverHome.avif);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
}

