* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #7b2ff7, #04142e);
  color: #fff;
}

/* Header */
header {
  padding: 20px 0;
  display: flex;
  gap: 200px;
  justify-content: center;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 22px;

}


a{
    color: #fff;
     margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
}


/* HERO */
.hero {
  display: flex;
  background-image: url(jordan.png);
  background-size: cover;
  position: relative;
  padding: 80px 60px;
  align-items: center;
  height: 800px;
}

.hero-content h1 {
  font-size: 40px;
}

.hero-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 420px;
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 30px;
}

.btn-primary {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border: none;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  cursor: pointer;
}
/* Buttons */
.btn {
  padding: 14px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin: 0 10px;
}

.primary {
  background:#8E32C6;
  color: #fff;
}

.outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.dark {
  background: #252b42;
  color: #fff;
}

/* FEATURES */
.features {
  padding: 60px 40px;
  background-image: url(gradient.png);
  background-size: cover;
  background-position: center;
}

.features-wrapper {
  border: 2px solid #a855f7;
  display: flex;
  justify-content: space-around;
  padding: 40px;
}

.feature h3 {
  text-align: center;
  font-weight: 500;
}

.divider {
  width: 1px;
  background: rgba(255,255,255,0.3);
}

/* REVIEWS */
.reviews {
  padding: 80px 40px;
  text-align: center;
}

.reviews h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.review {
  padding: 30px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.review span {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.8;
}
.round-image{
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit:cover ;
}


.blue { background: linear-gradient(135deg, #06b6d4, #6366f1); }
.pink { background: linear-gradient(135deg, #ec4899, #a855f7); }
.orange { background: linear-gradient(135deg, #f59e0b, #f97316); }

/* ORDER */
.order {
  padding: 80px 40px;
  text-align: center;
  background-image: url(chvet.png);
  background-size: cover;
}

.order-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-form input {
  padding: 12px 16px;
  border-radius: 20px;
  border: none;
}

.order-form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: #fff;
  cursor: pointer;
}

/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  font-size: 13px;
  opacity: 0.7;
}
