/* ================= BASE ================= */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f0f0f;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

section {
  padding: 80px 20px;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* ================= HERO ================= */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a1a, #0f0f0f);
}
.hero h1 {
  font-size: 56px;
  line-height: 1;
  margin: 0;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

.tagline {
  max-width: 500px;
  opacity: 0.85;
  margin: 10px 0 20px;
  color: #ccc;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  margin: 5px;
}

.primary {
  background: #ff0055;
  color: white;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 0, 85, 0.3);
}

.secondary {
  border: 1px solid #fff;
  color: #fff;
}

.secondary:hover {
  background: #fff;
  color: #000;
}

.whatsapp {
  background: #25D366;
  color: white;
}

.email {
  background: #ff0055;
  color: white;
}
.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: white;
  width: 220px;
  }

/* ================= SECTIONS ================= */
.services { background: #141414; }
.about { background: #0f0f0f; }
.portfolio { background: #121212; }
.contact { background: #000; }

/* ================= HEADINGS ================= */
h2 {
  font-size: 28px;
  margin-bottom: 25px;
  font-family: 'Playfair Display', serif;
}

/* ================= GRIDS ================= */
.service-container,
.portfolio-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* ================= CARDS ================= */
.service-card,
.portfolio-card {
  background: #1b1b1b;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.service-card:hover,
.portfolio-card:hover {
  transform: translateY(-8px);
  background: #222;
  box-shadow: 0 15px 35px rgba(225,0,85,0.15);
}

.portfolio-card img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

/* ================= ABOUT ================= */
.about-content {
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
  color: #ccc;
}

/* ================= CONTACT ================= */
.contact {
  text-align: center;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contact-buttons .btn {
  width: 220px;
    }

/* ================= RESPONSIVE ================= */
@media (min-width: 768px) {
  .service-container,
  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 56px;
  }
}

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

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #000;
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }
  .why-choose {
  background: #141414;
}

.stats {
  background: #101010;
  text-align: center;
}

.testimonial {
  background: #161616;
  text-align: center;
}
  .services { background: #141414; }
.portfolio { background: #121212; }
.about { background: #0f0f0f; }
.contact { background: #000; }

.brand-tagline {
  color: #ff0055;
  letter-spacing: 2px;
  margin-top: 10px;
  font-size: 14px;
  text-transform: uppercase;
  }
 }
