/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #060505;
  color: #f5f5f5;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(20, 20, 20, 0.9);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #1f1f1f;
  backdrop-filter: blur(6px);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo span {
  color: #6b5bff;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-icons i {
  font-size: 1.3rem;
  color: #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.header-icons i:hover {
  color: #6b5bff;
  transform: scale(1.1);
}

/* SEARCH SECTION */
.search-section {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background: #0b0b0b;
}

.search-box {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border-radius: 30px;
  overflow: hidden;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 12px rgba(107, 91, 255, 0.15);
  transition: 0.3s ease;
}

.search-box:hover {
  box-shadow: 0 0 18px rgba(107, 91, 255, 0.3);
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: #f5f5f5;
  padding: 0.8rem 1rem;
  outline: none;
}

.search-box button {
  background: #6b5bff;
  border: none;
  color: #fff;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.search-box button:hover {
  background: #857aff;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(145deg, #141414, #0e0e0e);
  border-radius: 0 0 25px 25px;
  box-shadow: inset 0 -4px 20px rgba(107, 91, 255, 0.15);
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero span {
  color: #6b5bff;
}

.hero p {
  color: #b3b3b3;
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 600px;
  margin-inline: auto;
}

.explore-btn {
  background: #6b5bff;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.9rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 18px rgba(107, 91, 255, 0.3);
}

.explore-btn:hover {
  background: #857aff;
  box-shadow: 0 6px 25px rgba(107, 91, 255, 0.4);
  transform: scale(1.05);
}

/* FEATURES */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
  background: #0b0b0b;
  text-align: center;
}

.feature {
  max-width: 250px;
}

.feature i {
  font-size: 2rem;
  color: #6b5bff;
  margin-bottom: 1rem;
}

.feature h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.feature p {
  color: #aaa;
  font-size: 0.9rem;
}

/* CATEGORIES */
.categories {
  padding: 2.5rem 1rem 3rem;
}

.categories h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  justify-items: center;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  background: #111;
  transition: 0.3s;
  width: 100%;
  max-width: 200px;
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.3s;
}

.category-card:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 0.6rem 0;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.category-card:hover .overlay {
  background: rgba(107, 91, 255, 0.8);
}

/* NEWSLETTER */
.newsletter {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to bottom right, #1a1a1a, #0f0f0f);
}

.newsletter h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: #aaa;
  margin-bottom: 1.2rem;
}

.newsletter form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.newsletter input {
  padding: 0.8rem 1rem;
  border-radius: 25px;
  border: none;
  outline: none;
  width: 250px;
}

.newsletter button {
  background: #6b5bff;
  border: none;
  color: #fff;
  border-radius: 25px;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #857aff;
}

/* FOOTER */
.footer {
  background: #0b0b0b;
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid #1f1f1f;
  font-size: 0.9rem;
  color: #aaa;
}

.footer strong {
  color: #6b5bff;
}

/* FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }

}
/* CONNECT / SOCIAL SECTION */

.connect {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to bottom right, #101010, #0c0c0c);
}

.connect h2 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  color: #fff;
}

.connect p {
  color: #aaa;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-links a {
  font-size: 1.8rem;
  color: #bbb;
  transition: 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

/* individual platform glow */
.whatsapp:hover {
  color: #25D366;
  text-shadow: 0 0 10px #25D366;
}
.tiktok:hover {
  color: #ff0050;
  text-shadow: 0 0 10px #ff0050;
}
.youtube:hover {
  color: #FF0000;
  text-shadow: 0 0 10px #FF0000;
}
.instagram:hover {
  color: #E1306C;
  text-shadow: 0 0 10px #E1306C;
}
.fab img{
    width: 32px;
    
}
/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll to Top Button */
#scrollToTopBtn {
  position: fixed;
  bottom: 25px;
  right: 20px;
  background: #6b5bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 0.8rem;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(107, 91, 255, 0.3);
  display: none;
  transition: background 0.3s, transform 0.3s;
  z-index: 200;
}

#scrollToTopBtn:hover {
  background: #857aff;
  transform: translateY(-3px);
}
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Blog Section */
.blog-section {
  padding: 3rem 1rem;
  background: #0d0d0d;
  border-top: 1px solid #1f1f1f;
}

.blog-section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 2rem;
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.blog-card {
  background: #161616;
  border-radius: 16px;
  padding: 1.5rem;
  color: #ccc;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
}

.blog-card h3 {
  color: #6b5bff;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.blog-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #b3b3b3;
}

.blog-card a {
  color: #6b5bff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.blog-card a:hover {
  color: #8a7cff;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.6rem;
  }
  .category-card img {
    height: 200px;
  }
}
/* Static Page Styling */
.page-content {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background: #111;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255,255,255,0.05);
}

.page-content h1 {
  color: #6b5bff;
  margin-bottom: 1rem;
  text-align: center;
}

.page-content p, .page-content li {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.page-content a {
  color: #6b5bff;
  text-decoration: none;
}

.page-content a:hover {
  color: #847aff;
}
