/* ================= ABOUT SECTION ================= */

.about-section{
  padding:90px 8%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
  background:#fff8f3;
  flex-wrap:wrap;
}

.about-image{
  flex:1 1 450px;
}

.about-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-content{
  flex:1 1 500px;
}

.about-content h4{
  color:#b8860b;
  font-size:16px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.about-content h2{
  font-size:42px;
  line-height:1.3;
  color:#4b1d1d;
  margin-bottom:20px;
  font-family:'Playfair Display', serif;
}

.about-content p{
  color:#666;
  line-height:1.9;
  margin-bottom:18px;
  font-size:15px;
}

.about-btn{
  display:inline-block;
  background:#7a1f1f;
  color:#fff;
  padding:14px 35px;
  border-radius:50px;
  margin-top:10px;
  transition:.4s;
}

.about-btn:hover{
  background:#b8860b;
}