/*
Theme Name: My Landing Theme
Author: Umar
Version: 1.0
*/

body {
  font-family: Inter, system-ui, Arial, sans-serif;
  color: #111;
  margin: 0;
}

/* HERO */
.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #cfe9ff, #f7f3e8);
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.15;
}

.hero-desc {
  max-width: 720px;
  margin: 20px auto 35px;
  font-size: 1.1rem;
  color: #333;
}

/* FEATURES */
.features {
  padding: 120px 0;
}

.feature-img {
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.08);
}

/* CLARITY */
.clarity {
  padding: 120px 0;
  background: #f8f9fb;
}

.clarity-card {
  padding: 35px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

/* CTA */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(#f7f3e8, #fff);
  text-align: center;
}

/* FOOTER */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 80px 0 30px;
}

.site-footer a {
  color: #94a3b8;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(to right, #b9dcff, #d9ecff);
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.nav-links .cta {
  font-weight: 600;
}



.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #000;
}

.cta {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
