body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f7f7f7;
  color: #111;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  background: white;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #eee;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #333;
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: linear-gradient(120deg, #ff4ecd22, #4ea1ff22);
  animation: fadeIn 1.2s ease;
}

.hero h1 {
  font-size: 60px;
  background: linear-gradient(90deg, #ff4ecd, #4ea1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 500px;
  color: #444;
}

/* BUTTON */
.btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(90deg, #ff4ecd, #4ea1ff);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  width: fit-content;
}

/* SECTIONS */
.section {
  padding: 80px 60px;
  text-align: center;
}

h2 {
  font-size: 32px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARDS */
.card {
  background: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.card img {
  width: 100%;
  border-radius: 12px;
}

.card:hover {
  transform: translateY(-10px) rotate(-1deg);
}

.pop {
  border: 2px solid #ff4ecd;
}

/* ART SECTION */
.art {
  background: #111;
  color: white;
  position: relative;
  overflow: hidden;
}

.art::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ff4ecd55, transparent);
  top: -50px;
  left: -50px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
/* STORY SECTION */

.story {
  padding: 100px 60px;
  background: white;
}

.story-text {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.story h2 {
  font-size: 42px;
  margin-bottom: 30px;

  background: linear-gradient(90deg, #ff4ecd, #4ea1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story p {
  margin-bottom: 20px;
  color: #444;
  line-height: 1.8;
  font-size: 18px;
}


/* FOUNDER SECTION */

.founder {
  padding: 100px 60px;
  background: #111;
  color: white;
}

.founder-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.founder-image img {
  width: 350px;
  border-radius: 20px;
  object-fit: cover;
}

.founder-text h2 {
  font-size: 40px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #ff4ecd, #4ea1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.founder-text p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
}


/* MOBILE */

@media (max-width: 768px) {

  .founder-content {
    flex-direction: column;
  }

  .founder-image img {
    width: 100%;
  }

}