diff --git a/home.html b/home.html index cc09348..99c1fb4 100644 --- a/home.html +++ b/home.html @@ -14,7 +14,7 @@ body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; - background-color: #f2f2f2; + background: linear-gradient(120deg, #eef2ff 0%, #f8fafc 55%, #fff7ed 100%); display: flex; } @@ -129,6 +129,53 @@ background: white; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + margin-bottom: 18px; + } + + .hero { + background: linear-gradient(130deg, #29293d, #364474); + color: #fff; + padding: 28px; + border-radius: 14px; + box-shadow: 0 12px 26px rgba(41, 41, 61, 0.22); + margin-bottom: 18px; + } + + .hero p { + margin-top: 10px; + line-height: 1.55; + color: #e7e7f8; + } + + .stats-grid, .features-grid { + display: grid; + gap: 14px; + grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); + } + + .stat-card, .feature-card { + background: #fff; + border-radius: 12px; + padding: 16px; + box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08); + border: 1px solid #f1f5f9; + } + + .stat-card h3 { + color: #29293d; + margin-bottom: 6px; + } + + .feature-card i { + color: #ffaa00; + margin-bottom: 10px; + font-size: 22px; + } + + .feature-card p { + color: #334155; + font-size: 14px; + margin-top: 5px; } @media (max-width: 768px) { @@ -185,9 +232,36 @@
This is your personalized fitness platform. Use the tabs above to navigate through your workout, diet, and progress tools.
+Track your fitness journey, explore workouts, and stay consistent with guided plans made for your goals.
+Your selected target stays visible here.
+Track and update progress from the dashboard.
+Access your chosen training path anytime.
+Browse exercises and classes by category.
Find healthy meal ideas and calorie tools.
Monitor improvements and stay motivated.
Goal: ${goal}
Weight: ${weight} kg
`; + document.getElementById("goal-card").innerText = `Goal: ${goal}`; + document.getElementById("weight-card").innerText = `Weight: ${weight} kg`; + document.getElementById("program-card").innerText = `Program: ${program}`; const savedPic = sessionStorage.getItem("profilePic"); if (savedPic) { diff --git a/index.html b/index.html index 8858701..99c1fb4 100644 --- a/index.html +++ b/index.html @@ -14,7 +14,7 @@ body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; - background-color: #f2f2f2; + background: linear-gradient(120deg, #eef2ff 0%, #f8fafc 55%, #fff7ed 100%); display: flex; } @@ -129,6 +129,53 @@ background: white; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + margin-bottom: 18px; + } + + .hero { + background: linear-gradient(130deg, #29293d, #364474); + color: #fff; + padding: 28px; + border-radius: 14px; + box-shadow: 0 12px 26px rgba(41, 41, 61, 0.22); + margin-bottom: 18px; + } + + .hero p { + margin-top: 10px; + line-height: 1.55; + color: #e7e7f8; + } + + .stats-grid, .features-grid { + display: grid; + gap: 14px; + grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); + } + + .stat-card, .feature-card { + background: #fff; + border-radius: 12px; + padding: 16px; + box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08); + border: 1px solid #f1f5f9; + } + + .stat-card h3 { + color: #29293d; + margin-bottom: 6px; + } + + .feature-card i { + color: #ffaa00; + margin-bottom: 10px; + font-size: 22px; + } + + .feature-card p { + color: #334155; + font-size: 14px; + margin-top: 5px; } @media (max-width: 768px) { @@ -162,7 +209,7 @@This is your personalized fitness platform. Use the tabs above to navigate through your workout, diet, and progress tools.
+Track your fitness journey, explore workouts, and stay consistent with guided plans made for your goals.
+Your selected target stays visible here.
+Track and update progress from the dashboard.
+Access your chosen training path anytime.
+Browse exercises and classes by category.
Find healthy meal ideas and calorie tools.
Monitor improvements and stay motivated.
Goal: ${goal}
Weight: ${weight} kg
`; + document.getElementById("goal-card").innerText = `Goal: ${goal}`; + document.getElementById("weight-card").innerText = `Weight: ${weight} kg`; + document.getElementById("program-card").innerText = `Program: ${program}`; const savedPic = sessionStorage.getItem("profilePic"); if (savedPic) { @@ -250,8 +328,5 @@