/* Cleaned comingsoon.css - only classes used by current pages */

/* Base */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1F1F1F;
  color: #f5f5f5;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

p {
  margin: 0.5em 0;
  line-height: 2;
  color: #ccc;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.container {
  padding: 2em;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
}

/* Logo */
/* Ensure images never force a mobile zoom and stay centered */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-img {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 0 auto 2.5em;
  transition: transform 0.4s ease;
}

/* Navigation */
.site-nav {
  display: inline-flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0 1.5rem 0;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.18s ease;
}

.nav-link:hover {
  background: #ffd54a;
  color: #000000;
  transform: translateY(-2px) scale(1.02);
}

.nav-cta {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.18s ease;
}

/* Ascora image (homepage) */
.ascora {
  /* center the ascent image and cap width so it doesn't force layout/zoom on mobile */
  display: block;
  margin: 50px auto;
  max-width: 320px;
  width: 60%;
  height: auto;
  transition: transform 0.3s ease;
}

.ascora:hover {
  transform: scale(1.1);
}

/* Jobs list and cards */
.jobs-list {
  margin-top: 1.25em;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 193, 7, 0.06);
  padding: 1rem;
  border-radius: 10px;
  text-align: left;
}

.job-card .job-meta {
  flex: 1;
}

.job-card .job-meta h2 {
  margin: 0 0 0.5em 0;
  color: #ffd54a;
}

.job-card .job-meta ul {
  margin: 0;
  padding-left: 1.1em;
  color: #ccc;
}

.job-actions {
  display: flex;
  align-items: center;
}

/* Glass accent (used on job-card) */
.glass {
  backdrop-filter: blur(4px);
}

/* Buttons */
.btn {
  background: rgba(255, 255, 255, 0.03);
  color: #111;
  border: none;
  padding: 0.6em 1em;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.18s ease;
}

.btn-primary {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.18s ease;
}

/* Make buttons react like the nav links on hover */
.btn:hover,
.btn-primary:hover {
  background: #ffd54a;
  color: #000000;
  transform: translateY(-2px) scale(1.02);
}

/* Footer */
footer {
  margin-top: 2.5em;
  color: #888;
  font-size: 0.9em;
  text-align: center;
}

/* Responsive */
@media screen and (max-width: 700px) {
  .job-card {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
  }

  .ascora {
    align-self: center;
  }

  .logo-img {
    max-width: 350px;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.25rem;
  }
}