/* GLOBAL */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: black;
  color: white;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  background: black;
  border-bottom: 1px solid #222;
  z-index: 100;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: center; /* center logo + nav */
  align-items: center;
  gap: 50px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 25px; /* increased spacing between logo and title */
}

.logo-img {
  width: 80px; /* logo size */
  height: auto;
}

.logo-text {
  font-weight: 500; /* slim */
  font-size: 24px;  /* slightly smaller */
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  color: white;
}

/* NAV LINKS */
.navbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: white;
}

.cta-button {
  border: 1px solid white;
  padding: 8px 14px;
  transition: 0.3s;
}

.cta-button:hover {
  background: white;
  color: black;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.hero-text h1 {
  font-size: 56px; 
  font-weight: 500; /* slimmer */
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 30px;
}

.primary-button {
  display: inline-block;
  border: 1px solid white;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.primary-button:hover {
  background: white;
  color: black;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
}

.alt {
  background-image: url("section-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.alt .container {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 900px;
  margin: auto;
}

.narrow {
  max-width: 700px;
}

/* SERVICES */
.service {
  margin-bottom: 60px;
}

.service h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.service-intro {
  color: #aaa;
  margin-bottom: 15px;
}

.service ul {
  padding-left: 20px;
}

.service li {
  margin-bottom: 10px;
  color: #ddd;
}

/* TAGS */
.tags {
  margin-top: 20px;
}

.tags span {
  border: 1px solid #333;
  padding: 8px 14px;
  margin: 6px;
  display: inline-block;
  color: #ccc;
  font-size: 14px;
  border-radius: 4px;
}

/* ABOUT PAGE HERO */
.about-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px; /* narrower for centered text */
  margin: 80px auto; /* push content down from top */
  text-align: center; /* center text */
}

.about-hero-inner {
  display: flex;
  flex-direction: column; /* stack text above photo */
  gap: 40px; /* space between text and photo */
  align-items: center;
}

.about-text h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: #ccc;
  font-size: 18px;
}

.about-photo {
  width: 250px; /* smaller photo size */
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: none; /* remove border */
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .logo-text {
    font-size: 20px;
  }

  .tags span {
    font-size: 12px;
    padding: 6px 10px;
  }

  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  .about-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-photo {
    width: 200px; /* mobile-friendly photo size */
  }

  .about-text h1 {
    font-size: 36px;
  }
}

/* FOOTER */
footer {
  border-top: 1px solid #222;
  padding: 40px 20px;
  color: #666;
  text-align: center;
}