/* updated 2:08am

/* ========= HEADER ========= */
.header {
    position:fixed;
      background: rgba(28,35,45,1);
  width: 100%;
  z-index: 20;
  height: 80px;
padding-top:20px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo clean + correct size */
.logo {
  height: 40px;
  opacity: 1;
}

/* NAV */
.nav a {
  margin-left: 40px;
  font-size: 14px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

/* ========= HERO ========= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-bottom: 50px;
}

/* subtle gradient */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 0% 0%, rgba(28,35,55,0.8), transparent 100%),
    radial-gradient(circle at 100% 100%, rgba(33,56,100,0.8), transparent 100%),url('../assets/crane_compressed.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

  z-index: 0;
}

.image{
  width: 100vw;
}

/* center content */
.center {
  position: relative;
  z-index: 1;
  max-width: 650px;

  display: flex;
  flex-direction: column;
  align-items: center;

  animation: fadeIn 1s ease forwards;
}

/* tag */
.tag {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 18px;
  color: white;
  border: white;
  padding: 12px 18px;
      border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;

  animation: fadeUp 0.6s ease forwards;
}

/* title */
h1 {
  font-size: clamp(40px, 3.5vw, 50px);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 0;

  animation: fadeUp 0.9s ease forwards;
}

/* form */
.form {
  display: flex;
  width: 100%;
  max-width: 460px;

  background: rgba(255,255,255,0.05);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);

  animation: fadeUp 1.2s ease forwards;
}

.form input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
}

.form button {
  background: black;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;

  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* ========= CONTACT ========= */
.contact {
    border-top: 1px solid rgba(255,255,255,0.1);
  padding: 60px 0;
  text-align: center;
    line-height: 1.5em;
}

.contact a {
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

/* footer */
.footer {
  margin-top: 50px;
  font-size: 12px;
  opacity: 0.6;
    
}

/* ========= ANIMATION ========= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
``