/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f8f8fc;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: #754ef9;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #222;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.store-btn:hover {
  background: #444;
}

/* Features Section */
.features {
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.myheading{
  color: #754ef9;
}
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-box h3 {
  margin: 15px 0;
  font-size: 1.3rem;
}

/* Gallery Section */
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* increased min size */
  gap: 25px; /* slightly more space */
  max-width: 1200px; /* allow a bit more width */
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: auto; /* keeps aspect ratio */
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03); /* nice hover zoom */
}

/* Footer */
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}
