/* Global resets & box sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #121212;
  color: #f5f5f5;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* HEADER */
header {
  background-color: #1f1f1f;
  border-bottom: 1px solid #292929;
  padding: 1rem 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

/* Increase container width on large screens */
@media (min-width: 1200px) {
  .header-inner {
    max-width: 1400px;
    padding: 0 2rem;
  }
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  /* transform: translateX(-30px); */
}

.logo-svg {
  width: 60px;
  height: auto;
}

.brand-title {
  font-size: 2rem;
  font-weight: 900;
  color: #ccc;
  margin: 0;
  background: linear-gradient(
    90deg,
    #bfbfbf 0%,
    #d9d9d9 20%,
    #ffffff 40%,
    #d9d9d9 60%,
    #bfbfbf 80%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

nav a {
  color: #f5f5f5;
  text-decoration: none;
  margin: 0 0.75rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #00bcd4;
}

/* Stack header on mobile */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-logo {
    transform: none;
    margin-bottom: 1rem;
  }
  nav {
    margin: 0;
  }
}

/* HERO */
#hero {
  background-color: #1f1f1f;
  padding: 3rem 1rem;
  text-align: center;
  border-bottom: 1px solid #292929;
}

#hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* SECTIONS */
section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

section h2 {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ccc;
  display: inline-block;
  margin-bottom: 1rem;
  background: linear-gradient(
    90deg,
    #bfbfbf 0%,
    #d9d9d9 20%,
    #ffffff 40%,
    #d9d9d9 60%,
    #bfbfbf 80%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* SERVICES */
#services ul {
  list-style-type: none;
  margin-top: 1.5rem;
  padding-left: 0;
  text-align: left;
}

#services li {
  background-color: #1f1f1f;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #292929;
  border-radius: 4px;
}

#services li strong {
  color: #00bcd4;
}

/* ABOUT */
#about p {
  margin-top: 1rem;
  line-height: 1.7;
}

/* CONTACT */
#contact ul {
  list-style-type: none;
  margin-top: 1rem;
  line-height: 1.8;
  padding-left: 0;
  text-align: center;
}

#contact a {
  color: #00bcd4;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  background-color: #1f1f1f;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #292929;
}

/* UTILITY */
.text-center {
  text-align: center;
}
.mt-1 {
  margin-top: 1rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
