body {
  font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 0;
}

.art-grid {
  padding: 40px 20px 80px;
  background-color: #fff;
}

.art-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.art-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-wrapper {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.image-wrapper:hover img {
  transform: scale(1.3);
}

.art-info {
  text-align: center;
  padding-top: 10px;
}

.art-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 200;
  color: #111;
}

.art-info .size {
  font-weight: 200;
  font-size: 0.9rem;
  color: #666;
  margin: 4px 0;
}

.art-info .price {
  margin: 0;
  font-weight: 200;
  font-size: 1rem;
  color: #222;
}


.section-title {
  padding: 20px 20px 40px;
  text-align: center;
}

.section-title h2 {
  font-weight: 200;
  font-size: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  color: #111;
}


.intro-text {
  padding: 60px 20px;
  text-align: center;
  background-color: #fafafa;
}

.intro-text .container {
  max-width: 700px;
  margin: 0 auto;
}

.intro-text p {
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
}

/* Hero Section */

.hero-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.hero-scroll {
  height: 100%;
  overflow: hidden;
}

.hero-scroll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-text div {
  font-weight: 200;
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 1px;
}

.hero-text p {
  font-weight: 200;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero-image {
    overflow: visible;
    height: 400px;
  }

  .hero-text div {
    font-size: 1.5rem;
  }

  .hero-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    white-space: nowrap;
  }

  .hero-scroll img {
    width: 1200px;
    height: 100%;
    object-fit: cover;
    display: inline-block;
  }
}
/* Hero Section End*/

a {
  text-decoration: none;
}

.site-header {
  height: 60px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.header-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.socials a {
  margin-left: 20px;
}

.socials img {
  height: 20px;
  width: 20px;
  filter: grayscale(100%);
  transition: filter 0.2s;
}

.socials img:hover {
  opacity: 0.7;
}

footer {
  padding: 1em;
  background: #eee;
  text-align: center;
}
