/*
Theme Name: Nefful Luxury Landing
Version: 3.0
*/

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
}

section {
  padding: 70px 20px;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}

.hero {
  background: url('https://images.unsplash.com/photo-1520975922284-9e0ce827fa5c') no-repeat center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.6);
  padding: 50px;
  border-radius: 16px;
  color: #fff;
  max-width: 700px;
}

h1 {
  font-size: 2.5rem;
  color: #fff;
}

h2 {
  font-size: 2rem;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 20px;
  font-weight: bold;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
}

.before-after {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.before-after div {
  padding: 20px;
  border-radius: 12px;
  background: #f5f5f5;
}

.footer {
  background: #111;
  color: #fff;
  padding: 30px;
}

.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
}

/* Mobile */
@media (max-width:768px){
  h1 {font-size:1.8rem;}
  section {padding:50px 15px;}
  .before-after {flex-direction:column;}
  .btn {width:100%;}
}
