/* Google font base */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: #fff;
  color: #333;
}

/* Header bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

/* Logo + Brand */
.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 100px;
  margin-right: 0.75rem;
}

.brand-name {
  font-family: 'Diplomata SC', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e2b3c;
}

.brand-subtitle {
  font-family: 'Stint Ultra Expanded', cursive;
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #f5a623;
  margin-top: -4px;
}

/* Navigation links */
.top-nav a {
  font-family: 'Stint Ultra Expanded', cursive;
  margin-left: 1.5rem;
  text-decoration: none;
  color:  #c09300;
  font-weight: 600;
  font-size: 1.5em;
}

.top-nav a:hover {
  color: #f5a623;
}

/* Hero section */
main {
  font-family: 'Stint Ultra Expanded', cursive;
  display: block;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.title-block {
  display: inline-block;
  text-align: left;
  line-height: 1.2;
}

.title-line {
  display: block;
}

.woncon {
  font-size: 4rem;
  font-weight: 900;
  color: #1E2B3C;
}

.portal {
  color: #f5a623;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
}

.portal::after {
  content: "";
  display: block;
  width: 100%; /* full underline */
  height: 5.5px;
  background-color: #f5a623;
  margin-top: 8px;
}

.highlight {
  color: #f5a623;
}

/* Service list styles */
.hero-list {
  text-align: center;
  font-weight: 400;
  font-size: 1.6rem; /* smaller font */
  margin-bottom: 0.5rem;
}

.list-block {
  display: inline-block;
  text-align: left;
  line-height: 0.5; /* tighter spacing */
  margin-top: 1rem;
}

.strategicops,
.qlabs,
.linuxcore {
  color: #1E2B3C;
}

/* Call to Action button */
.cta-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #f5a623;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: #e69f1e;
}

/* Left-aligned layout shift */
.left-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-40%);
  margin: 0 auto;
  width: max-content;
}

.bottom-right-corner-logo {
  position: fixed;
  bottom: 0;
  right: 200px; /* push it more to the left from the edge */
  width: 750px; /* larger image */
  opacity: 0.8;
  z-index: 10;
  pointer-events: none;
}

.upper-right-corner-shape {
  position: fixed;
  top: 20%;
  right: 0; /* push it more to the left from the edge */
  width: 180px; /* larger image */
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.bottom-left-corner-shape {
  position: fixed;
  bottom: 50px;
  left: 200px; /* push it more to the left from the edge */
  width: 400px; /* larger image */
  opacity: 0.6;
  z-index: 10;
  pointer-events: none;
} 

.site-footer {
  text-align: center;
  padding: 1rem;
  background-color: #f9f9f9;
  border-top: 0px solid #ddd;
  position: fixed;
  bottom: 0;
}

.disclaimer {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}
.site-footer .disclaimer a {
  color: #f5a623;
  text-decoration: none;
  font-weight: 500;
}

.site-footer .disclaimer a:hover {
  color: #e69f1e;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

  /* ─ TOP BAR ─ */
  .top-bar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
  }

  /* brand block stacks logo + text */
  .brand {
    flex-direction: column;
    align-items: center;
  }
  .brand img          { height: 64px; }
  .brand-name         { font-size: 1.8rem; line-height: 1.1; }
  .brand-subtitle     { font-size: 1.2rem; margin-top: .25rem; }

  /* navigation links become a tidy column */
  .top-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    width: 100%;
  }
  .top-nav a {
    margin: 0;                 /* remove left-spacing */
    font-size: 1.1rem;
  }

  /* ─ HERO BLOCK ─ */
  .left-layout {
    /* cancel desktop left-shift */
    transform: none;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .title-block        { text-align: center; }
  .woncon             { font-size: 2.2rem; }
  .portal             { font-size: 1.8rem; }
  .portal::after      { width: 60%; margin: .5rem auto; }

  /* service list tighter and centred */
  .hero-list          { font-size: 1rem; }
  .list-block         { text-align: center; line-height: 1.4; }

  /* CTA button */
  .cta-button {
    font-size: 1rem;
    padding: .6rem 1.4rem;
    margin-top: 1.2rem;
  }

  /* corner gecko logo shrinks / shifts */
  .bottom-right-corner-logo {
    width: 160px;
    right: 8px;
    bottom: 8px;
    opacity: .45;
  }
 
  .corner-shape {
    width: 100px;
    top: 10%;
    opacity: 0.4;
  }
    .upper-right-corner-shape {
    top: 10%;         /* slightly higher on small screens */
    right: 0;
    width: 100px;     /* smaller size for mobile */
    opacity: 0.5;
  }

  .bottom-left-corner-shape {
    left: 50px;       /* reduce horizontal offset */
    width: 250px;     /* scale down image */
    opacity: 0.4;
  }

main {
  padding-bottom: 5rem; /* enough space for the footer on mobile */
}

/* hide corner image on very small phones */
@media (max-width: 480px) {
  .bottom-right-corner-logo { display: none; }
  .upper-right-corner-shape { display: none; }
  .bottom-left-corner-shape { display: none; }
}
