@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0e0e16;
  color: #fff;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: #111122;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px;
  margin-right: 10px;
}

.logo h2 {
  font-size: 1.5rem;
  color: #fff;
}

.logo p {
  font-size: 0.8rem;
  color: #9d88ff;
  letter-spacing: 1px;
}

nav a {
  color: #bfbfff;
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

nav a.active,
nav a:hover {
  color: #fff;
}

nav a.active::after,
nav a:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

/* About Section */
.about {
  padding: 80px 120px;
}

.about h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #cfcfff;
}

.about p {
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 20px;
}

.about ul {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 20px;
}

.about li {
  margin-bottom: 10px;
  color: #a5a5ff;
}

/* Contact Section */
.contact {
  padding: 80px 120px;
  text-align: center;
}

.contact h1 {
  font-size: 2.5rem;
  color: #cfcfff;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #1a1a2a;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 119, 199, 0.08);
}

.info {
  width: 45%;
  text-align: left;
}

.info h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #d0c3ff;
}

.info p {
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 10px;
}

.form {
  width: 45%;
  display: flex;
  flex-direction: column;
}

.form input,
.form textarea {
  background: #121222;
  border: none;
  outline: none;
  padding: 12px 15px;
  color: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1rem;
}

button {
  background: linear-gradient(90deg, #8a6fff, #ff77c7);
  color: #fff;
  font-size: 1rem;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 119, 199, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .info,
  .form {
    width: 100%;
    text-align: center;
  }

  .about {
    padding: 50px 30px;
  }

  header {
    flex-direction: column;
    gap: 10px;
    padding: 15px 30px;
  }

  nav a {
    margin-left: 15px;
  }
}
/* Works Section */
.works {
  padding: 80px 120px;
  text-align: center;
}

.works h1 {
  font-size: 2.5rem;
  color: #cfcfff;
  margin-bottom: 40px;
}

.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.categories button {
  background: #1c1c2f;
  border: none;
  color: #bfbfff;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.categories button.active,
.categories button:hover {
  background: linear-gradient(90deg, #8a6fff, #ff77c7);
  color: #fff;
  transform: scale(1.05);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.work-item {
  background: #1a1a2a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 119, 199, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.work-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.work-item h3 {
  padding: 15px;
  font-size: 1.1rem;
  color: #ddd;
  background: #121222;
}

.work-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255, 119, 199, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .works {
    padding: 50px 30px;
  }
}
.work-item video {
  width: 100%;
  height: 200px;
  border-radius: 12px 12px 0 0;
  object-fit: cover;
  background: #000;
  display: block;
}
