/* =========================
   RESET / BASE STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff33cc;
}

img {
  display: block;
  max-width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: rgba(15,15,15,0.95);
  box-shadow: 0 2px 15px rgba(0,0,0,0.6);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .logo {
  height: 50px;
  cursor: pointer;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar .nav-links li a {
  font-weight: 600;
  color: #e0e0e0;
}

.navbar .nav-links li a:hover {
  color: #ff33cc;
  text-shadow: 0 0 10px #ff33cc;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #fff;
  padding: 0 2rem;
}

.hero-bg {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
  z-index: 0;
  filter: brightness(0.9);
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  animation: float 10s infinite alternate;
}

.shape1 { top: 10%; left: 15%; width: 60px; height: 60px; animation-duration: 9s;}
.shape2 { top: 20%; left: 75%; width: 30px; height: 30px; animation-duration: 7s;}
.shape3 { top: 50%; left: 40%; width: 70px; height: 70px; animation-duration: 10s;}
.shape4 { top: 80%; left: 20%; width: 40px; height: 40px; animation-duration: 8s;}
.shape5 { top: 60%; left: 85%; width: 50px; height: 50px; animation-duration: 6s;}
.shape6 { top: 30%; left: 55%; width: 60px; height: 60px; animation-duration: 9s;}
.shape7 { top: 75%; left: 65%; width: 45px; height: 45px; animation-duration: 8s;}
.shape8 { top: 15%; left: 35%; width: 25px; height: 25px; animation-duration: 7s;}
.shape9 { top: 45%; left: 15%; width: 50px; height: 50px; animation-duration: 9s;}
.shape10 { top: 85%; left: 50%; width: 60px; height: 60px; animation-duration: 10s;}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg);}
  50% { transform: translateY(-25px) rotate(180deg);}
  100% { transform: translateY(0) rotate(360deg);}
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-content h1 {
  font-family: 'Roboto Slab', serif;
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(255,51,204,0.5);
  animation: fadeUp 1.5s ease forwards;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #ccc;
  animation: fadeUp 1.8s ease forwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-button, .cta-secondary {
  padding: 0.8rem 2rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-button {
  background: linear-gradient(90deg, #ff33cc, #cc00ff);
  color: #fff;
  box-shadow: 0 0 20px rgba(204,0,255,0.3);
  animation: pulse 2s infinite;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(204,0,255,0.7);
}

.cta-secondary {
  background: transparent;
  border: 2px solid #e0e0e0;
  color: #e0e0e0;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: #ff33cc;
  color: #ff33cc;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,51,204,0.4);
}

.section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.2rem;
  color: #ccc;
}

/* =========================
   FEATURE GRID
========================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  color: #e0e0e0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(204,0,255,0.3);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff33cc;
}

/* =========================
   STEPS GRID
========================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: #111;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  color: #e0e0e0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(204,0,255,0.3);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ff33cc;
  margin-bottom: 1rem;
}

/* =========================
   CAROUSEL / PROJECTS / TESTIMONIALS
   Dark backgrounds, neon accent hover
========================= */
.carousel-container,
.projects-grid,
.testimonials-grid {
  position: relative;
  margin-top: 3rem;
}

.carousel-track, .projects-grid, .testimonials-grid {
  display: flex;
  gap: 1.5rem;
}

.creator-card, .project-card, .testimonial-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  color: #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creator-card:hover, .project-card:hover, .testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(204,0,255,0.3);
}

/* =========================
   CAROUSEL ARROWS
========================= */
.arrow {
  background: rgba(255,255,255,0.1);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 0.5rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
  color: #ff33cc;
}

.arrow:hover {
  background: rgba(255,51,204,0.2);
  box-shadow: 0 0 20px rgba(255,51,204,0.4);
}

/* =========================
   NEWSLETTER & FOOTER
========================= */
.newsletter-form input {
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  border: 2px solid #333;
  background: #111;
  color: #e0e0e0;
}

.newsletter-form input::placeholder {
  color: #777;
}

.newsletter-form button {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(90deg, #ff33cc, #cc00ff);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(204,0,255,0.5);
}

footer {
  background: #111;
  color: #e0e0e0;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-links a {
  color: #e0e0e0;
}

.footer-links a:hover {
  color: #ff33cc;
  text-shadow: 0 0 10px #ff33cc;
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px #ff33cc);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(25px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes pulse {
  0% { transform: scale(1);}
  50% { transform: scale(1.05);}
  100% { transform: scale(1);}
}

/* =========================
   MEDIA QUERIES
========================= */
@media (max-width: 1200px) {
  .hero-content h1 { font-size: 2.8rem; }
}

@media (max-width: 992px) {
  .navbar { padding: 1rem 2rem; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content p { font-size: 1rem; }
  .carousel-track { gap: 1rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 1rem; background: #111; position: absolute; top: 70px; right: 2rem; padding: 1rem; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.5);}
  .menu-toggle { display: block; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 0.95rem; }
}

@media (max-width: 576px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 0.9rem; }
  .feature-card, .step-card, .project-card, .testimonial-card { padding: 1.5rem; }
}

/* ==========================
   NAV MENU MOBILE STYLING
========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00b8ff;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    background: rgba(10, 10, 10, 0.95);
    flex-direction: column;
    gap: 1.5rem;
    width: 70%;
    height: calc(100vh - 70px);
    padding: 2rem;
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  body.no-scroll {
    overflow: hidden;
  }

  .menu-toggle.open {
    transform: rotate(90deg);
  }
}
