.hero {
  background: url('gallery/Banner.webp') center/cover no-repeat;
  height: 30cqw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(213, 130, 130);
  text-align: center;
  position: relative;
}
.hero h1 {
  font-size: 60px;
  letter-spacing: 5px;
  margin: 0;
  position: relative;
  padding: 20px 40px;
  border: 2px solid rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  display: inline-block;
}

.hero p {
  font-size: 20px;
  margin-top: 15px;
  letter-spacing: 2px;
  position: relative;
  padding: 10px 25px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  display: inline-block;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.gallery img:hover {
  transform: scale(1.05);
  filter: brightness(80%);
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 ช่อง */
  gap: 20px;
  padding: 40px;
}

.card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

footer {
  background: linear-gradient(to right, gold, orange);
  padding: 25px 0;
  text-align: center;
  color: #000;
}

.social a {
  margin: 0 15px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.social a i {
  font-size: 20px;
}

.social a:hover {
  color: white;
  transform: scale(1.1);
}