:root{
  --theme:#9E2654;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Segoe UI, sans-serif;
}

/* HERO */
.about-hero{
  position:relative;
  height:65vh;
  overflow:hidden;
}

.about-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:15px;
  color:#fff;
}

.hero-overlay h1{
  color:#ffffff;
  font-weight:800;
}

.hero-overlay h1{
  font-size:42px;
  font-weight:800;
}
.hero-overlay p{
  margin-top:8px;
  font-size:18px;
}

/* CONTAINER */
.about-container{
  padding:50px 6%;
}

.about-flex{
  display:flex;
  gap:35px;
  align-items:center;
  margin-bottom:60px;
}

.about-flex.reverse{
  flex-direction:row-reverse;
}

.about-img img{
  width:100%;
  max-width:420px;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.about-text h2{
  color:var(--theme);
  margin-bottom:10px;
}

/* WHY US */
.why-us ul{
  list-style:none;
  padding:0;
}
.why-us li{
  padding:12px 0;
  border-bottom:1px solid #eee;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}

/* CTA */
.cta{
  background:var(--theme);
  color:#fff;
  padding:40px 20px;
  text-align:center;
  border-radius:14px;
}
.btn{
  display:inline-block;
  margin-top:15px;
  background:#fff;
  color:var(--theme);
  padding:14px 32px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

/* ANIMATION */
.fade-in{
  opacity:0;
  transform:translateY(30px);
  transition:0.6s ease;
}
.fade-in.show{
  opacity:1;
  transform:none;
}

/* MOBILE */
@media(max-width:768px){
  .about-hero{
    height:55vh;
  }

  .hero-overlay h1{
    font-size:26px;
  }

  .hero-overlay p{
    font-size:15px;
  }

  .about-flex{
    flex-direction:column;
    text-align:center;
  }

  .about-img img{
    max-width:100%;
  }

  .about-container{
    padding:40px 5%;
  }
}

@media(max-width:480px){
  .hero-overlay h1{
    font-size:22px;
  }
}
