/* ========= Global Reset ========= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
}

/* ========= Navbar ========= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
#site-header nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#site-header nav a {
  color: #f5f5f5;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  transition: color 0.3s;
}
#site-header nav a:hover {
  color: #f4d03f;
}

/* ========= Hero Section ========= */
#hero {
  position: relative;
  text-align: left;
  max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem;
  background: #0a0a0a; /* Dark base for readability */
  color: #f5f5f5;
  overflow: hidden;
}
/* Subtle yellow glow behind the hero text (not a full box) */
#hero::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 0;
  transform: none;
  width: min(700px, 85%);
  height: 160px;
  background: linear-gradient(90deg, #f4d03f 0%, #f59e0b 100%);
  filter: blur(30px);
  opacity: 0.12;
  border-radius: 9999px;
  pointer-events: none;
}
#hero h1 {
  font-size: clamp(2rem, 1.2rem + 2.8vw, 3rem);
  font-weight: 900;
  margin-bottom: .5rem;
  color: #f5f5f5;
  position: relative;
}
/* subtle yellow bar accent under the h1 */
#hero h1::after{
  content:"";
  display:block;
  width: 72px;
  height: 4px;
  margin-top: 10px;
  background: linear-gradient(90deg, #f4d03f, #f59e0b);
  border-radius: 4px;
}

/* Compact service chips under the hero title */
#hero-services{
  display:flex; flex-wrap:wrap; align-items:center;
  gap:.35rem .5rem; list-style:none; margin: .5rem 0 1rem; padding:0;
}
#hero-services li{
  font-size: .95rem; font-weight:600; letter-spacing:.2px;
  color:#cfcfcf;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
/* dot separator between items */
#hero-services li + li::before{
  content:"•";
  color:#6b7280;
  margin: 0 .5rem 0 .25rem;
}

#hero p{
  max-width: 800px;
  margin: .5rem 0 0;
  font-size: 1.05rem;
  color: #e7e7e7;
  line-height: 1.75;
}

/* ========= Sections ========= */
section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f4d03f;
}

/* ========= Work Section ========= */
#work div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
#work div h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}
#work div p {
  color: #ccc;
}

/* ========= Services Section ========= */
#services article {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s, border-color 0.3s;
}
#services article:hover {
  transform: translateY(-5px);
  border-color: #f4d03f;
}
#services h3 {
  margin-bottom: 1rem;
  color: #f4d03f;
}
#services h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
#services ul, #services ol {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
  color: #ccc;
}
#services li {
  margin-bottom: 0.5rem;
}

/* ========= About Section ========= */
#about p {
  margin-bottom: 1rem;
  color: #ccc;
}
#about ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
  color: #ccc;
}
#about li {
  margin-bottom: 0.5rem;
}

/* ========= Contact Section ========= */
#contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
#contact label {
  font-weight: bold;
  color: #f5f5f5;
}
#contact input, #contact textarea {
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #0a0a0a;
  color: #f5f5f5;
}
#contact button {
  background: #f4d03f;
  color: #111;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
#contact button:hover {
  background: #f59e0b;
}

/* ========= Footer ========= */
#site-footer {
  text-align: center;
  padding: 2rem;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
}
#site-footer a {
  color: #f4d03f;
  text-decoration: none;
}
#site-footer a:hover {
  text-decoration: underline;
}

/* ========= Responsive ========= */
@media (max-width: 768px) {
  #hero h1 { font-size: 2.25rem; }
}

/* ========= Logo ========= */
.logo-link {
  display: flex;
  align-items: center;
}
.logo {
  height: 100px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo {
    height: 80px;
  }
}
