/* FitArtisan Website Styles */

:root {
  --primary:#3AB795; /* teal*/
  --primary-dark:#2e8c74;
  --accent:#FF7A5A; /* coral*/
  --bg:#ffffff;
  --text:#202124;
  --light:#f6f9fc;
  font-size: 16px;
}

html{scroll-behavior:smooth;}
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family: 'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

header{
  background:var(--primary);
  color:#fff;
  padding:1rem 2rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

header .logo{
  font-size:1.5rem;
  font-weight:600;
}

nav a{
  color:#fff;
  margin-left:1.2rem;
  text-decoration:none;
  transition:opacity 0.2s;
}
nav a:hover{opacity:0.8;}

.hero{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  padding:3rem 2rem;
  background:linear-gradient(90deg,var(--primary) 0%, var(--primary-dark) 100%);
  color:#fff;
}

.hero-content{
  flex:2 1 0;
  max-width:520px;
  padding-left:2rem;
}
.hero-content h1{font-size:2.5rem;margin-bottom:1rem;}
.hero-content p{margin-bottom:1.5rem;}

.hero img{
  flex:1 1 0;
  width:45%;
  max-width:500px;
  height:auto;
  border-radius:0.75rem;
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
  margin-right:2rem;
}

.btn{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:0.75rem 1.5rem;
  border-radius:4px;
  text-decoration:none;
  font-weight:500;
  transition:background 0.2s;
}
.btn:hover{background:#ff6943;}

.features{
  padding:3rem 2rem;
  background:var(--light);
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;
}

.feature{
  background:#fff;
  border-radius:0.5rem;
  padding:1.5rem;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
  text-align:center;
}
.feature h3{margin-bottom:0.75rem;} 

footer{
  background:#fafafa;
  padding:1rem 2rem;
  text-align:center;
  font-size:0.9rem;
  color:#666;
}

.hero{position:relative;justify-content:space-between;align-items:center;padding:3rem 4vw;min-height:calc(100vh - 80px);overflow:hidden;}
.hero::after{content:'';position:absolute;bottom:-1px;left:0;width:100%;height:120px;background:var(--bg);clip-path: polygon(0 0,100% 100%,0 100%);}
.hero img{z-index:1;}
/* Contact page */
.contact{
  background:linear-gradient(135deg,var(--primary) 0%, var(--primary-dark) 100%);
  padding:4rem 2rem;
  color:#fff;
  text-align:center;
}
.contact .card{
  margin:auto;
  background:#fff;
  color:var(--text);
  padding:2rem;
  max-width:500px;

  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.contact .card h2{margin-bottom:1rem;}
.contact .card p{margin-bottom:1.5rem;}
.contact .card .btn{background:var(--primary);}
.contact .card .btn:hover{background:var(--primary-dark);}
.contact h2{margin-bottom:1rem;text-align:center;}

.section-title{
  font-size:2rem;
  margin-bottom:1.5rem;
  text-align:center;
}

/* App & Coming Cards */
.features.app-grid{
  padding:3rem 2rem;
  background:var(--light);
  display:grid;
  gap:2rem;
  place-items:center;
  justify-content:center;
  grid-template-columns:repeat(auto-fit,minmax(320px,640px));


}
.app-card{
  position:relative;
  width:100%;
  max-width:640px;
  min-height:260px;
  border-radius:12px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-align:center;
}
.app-card::after,.coming-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.25);
}
.app-card .inner,.coming-card .inner{
  position:absolute;
  inset:0;
  z-index:1;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  padding:1.2rem;
}
.app-card h3{margin-bottom:0.5rem;font-size:1.5rem;}
.app-card p{margin-bottom:1rem;}
.btn.small,.btn.coming{font-size:0.85rem;padding:0.45rem 1.1rem;}
.app-card .btn.play{
  position:absolute;
  right:1.2rem;
  bottom:1.2rem;
  padding:0;
  background:none;
  border:none;
}
.app-card .btn.play img{
  display:block;
  width:160px;
  height:auto;
}

  

.coming-card{
  position:relative;
  width:100%;
  max-width:640px;
  min-height:260px;
  border-radius:12px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-align:center;
}
.coming-card .inner{
  position:absolute;
  inset:0;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  font-weight:600;
  letter-spacing:1px;
}
.btn.coming{cursor:default;background:rgba(255,255,255,0.4);}

/* Privacy page */
.privacy{
  padding:3rem 5vw;
  max-width:1200px;

}
.privacy p, .privacy ul{ text-align:justify; }

@media(max-width:768px){
  .hero{flex-direction:column; text-align:center;}
  .hero-content{margin-bottom:2rem;}
}
