/* Reset & Global Styles */
:root {
  --primary-color: #ffffff;
  --background-color: #000000;
  --secondary-color: #a0a0a0;
  --accent-color: #2a2a2a;
  --font-family: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background-color);
  color: var(--primary-color);
  font-family: var(--font-family);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Header & Navbar */
.header {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 30px;
  margin-right: 10px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.btn {
  background-color: var(--primary-color);
  color: var(--background-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 8rem 0;
  background-image: url("/assets/img/bg-home.png");
  background-size: cover;
  background-position: center;
}

.hero p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-top: 1rem;
}

.social-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  color: var(--secondary-color);
  font-weight: 600;
}

/* General Section Styling */
section {
  padding: 6rem 0;
}

.section-subtitle {
  text-align: center;
  color: var(--secondary-color);
  max-width: 500px;
  margin: 0 auto 3rem auto;
}

/* Services Section */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.service-tags span {
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--accent-color);
  border-radius: 50px;
  background-color: var(--accent-color);
}

/* Our Work Section */
.our-work {
  background-color: var(--primary-color);
  color: var(--background-color);
}

.our-work h2, .our-work .section-subtitle {
  color: var(--background-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.portfolio-item h4 {
  font-size: 1.2rem;
}

.portfolio-item p {
  color: #555;
}

/* FAQ Section */
.faq-item {
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  padding: 1.5rem;
  border: 1px solid var(--accent-color);
  border-radius: 10px;
}

.faq-item h4 {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--accent-color);
  padding: 4rem 0 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-brand small {
  color: var(--secondary-color);
}

.footer-brand img {
  height: 30px;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-links a {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  color: var(--secondary-color);
  border-top: 1px solid #3a3a3a;
  padding-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Sembunyikan untuk mobile, bisa diganti dengan menu hamburger jika perlu */
  }
}