/* responsive.css */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f1f4ff;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a.signup {
  color: #9C27B0;
  font-weight: bold;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #333;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background: #f1f4ff;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero-text h1 span.cross {
  text-decoration: line-through;
  color: #9C27B0;
}

.hero-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.hero-text button {
  padding: 15px 30px;
  background: linear-gradient(to right, #9C27B0, #E91E63);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}

.hero-imgs {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.hero-imgs img {
  width: 150px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background: #fff;
}

.feature {
  text-align: center;
  max-width: 200px;
}

.feature h3 {
  color: #9C27B0;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #555;
}

footer {
  background: #fafafa;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    display: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-imgs {
    flex-direction: column;
    align-items: center;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-imgs img {
  width: 250px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
}