@charset "utf-8";
/* CSS Document */


/* --- BODY / BACKGROUND --- */
html, body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, sans-serif;
    color: #c0c0c0; /* text color for entire page */
    background: url('../images/moon-space.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* --- TEXT --- */
.text {
    color: #c0c0c0;
    margin-bottom: 15px;
    line-height: 1.5;
}

    .text-bg { background: rgba(0, 0, 0, 0.85);  
    
    }
    

.font-14 {
    font-size: 14px;
    line-height: 20px;
}


a {
    color: #01A3DE;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}


.ticker-wrapper {
  flex: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 191, 255, 0.08);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0,191,255,0.3);
  overflow: hidden;
  white-space: nowrap;
  z-index: 1000;
  padding: 10px 0;
}


.ticker {
    display: inline-block;
    animation: scrollTicker 120s linear infinite;
    flex: 1;

    position: fixed;
    top: 0px;
    width: 100%;
    background: rgba(0, 191, 255, 0.08);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,191,255,0.3);
    overflow: hidden;
    white-space: nowrap;
    z-index: 999;
    padding: 10px 0;
    box-sizing: border-box;
}



.ticker span {
  margin-right: 30px; /* smaller spacing */
  font-weight: 500;
  font-size: 16px;
}

.ticker-content {
  display: inline-block;
  animation: scrollTicker 70s linear infinite;
 white-space: nowrap;
}

.ticker-content span {
  margin-right: 30px;
  font-weight: 500;
  font-size: 16px;
}



/* Continuous scroll */
@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); } /* seamless loop due to duplication */
}



/* --- PROFILE PANEL --- */
.profile-panel {
    position: absolute;
   
    top: 10px;
    right: 10px;
    width: 360px;                       /* narrow column */
   /* max-height: calc(100vh - 80px);     /* leave space for footer */
    background: rgba(0, 0, 0, 0);    /* semi-transparent background */
    padding: 50px 20px 40px 20px;       /* extra bottom padding for footer */
    border-radius: 10px;
    box-sizing: border-box;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5); 
    
}



.hero-img {
    width: 120px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}



.hero-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}


.hero-row h1 {
    flex: 1;                 /* take remaining space */
    margin: 0;
    font-size: 40px;
    line-height: 45px;
    
}
  


.hero-text h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0;
}

.hero-logo img {
  max-width: 100px;
  width: 15vw;
  height: auto;
}



/* --- LOGO GRID --- */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
    justify-items: center;
    margin-top: 15px;
    margin-bottom: 40px;
}

.logo-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: #111;
    padding: 5px;
    box-sizing: border-box;
    display: block;
}




/* Responsive */
@media (max-width: 700px) {
  .logo {
      max-width: 50px;
      width: 15vw;
  }
  .ticker span {
      margin-right: 20px;
      font-size: 14px;
  }
  .profile-panel {
      padding-top: 120px;
  }
}


/* MOBILE RESPONSIVE */
@media (max-width: 700px) {
    .hero-row {
        /*flex-direction: column;   /* stack vertically */
        align-items: center;      /* center both text and image */
        text-align: left;
        gap: 10px;
    }

    .hero-logo img, .hero-img {
        width: 70%;
        max-width: 180px;
        margin-top: 10px;
        height: auto;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .ticker-content span {
        font-size: 14px;
        margin-right: 20px;
    }
}







/* --- FOOTER --- */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); 
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    box-sizing: border-box;
    z-index: 1000;
}
