
.hero {
  background: url('/src/images/tinified/alireza-parpaei-tsb-7LcPPok-unsplash.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero_overlay {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 15px;
	padding: 0 20px;
}
.hero p {
  margin-bottom: 25px;
  font-size: 1.2rem;
	padding: 0 20px;
}
.cta_btn {
  background: #b28a00;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta_btn:hover {
  background: #d6a700;
}

/* ---- Collection ---- */
.collection {
  padding: 100px 0;
  text-align: center;
  background: #faf8f6;
}
.collection h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.gallery .item {
  width: 280px;
}
.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
}
.gallery h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ---- About ---- */
.about {
  background: white;
  padding: 100px 0;
}
.about_wrapper {
  width: 85%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.about_wrapper img {
  width: 45%;
  border-radius: 10px;
}
.about_wrapper div {
  flex: 1;
}
.about h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}
@media (max-width: 770px) {
  .about_wrapper {
    flex-direction: column;
  }
  .about_wrapper img {
    width: 100%;
  }
}
/* ---- Contact ---- */
.contact {
  background: #f5f2ef;
  text-align: center;
  padding: 100px 20px;
}
.contact h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}
.contact form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 30px auto 0;
  gap: 15px;
}
.contact input, .contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
	resize: vertical;
	max-height: 500px;
}
.contact button {
  background: #b28a00;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact button:hover {
  background: #d6a700;
}