/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 100;
  padding-top: 35px;
  margin-bottom: 1.7em;
  line-height: 1.5;
  background-color: #fff;
  color: #fff; 
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ddd;
  padding: 6px 40px;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 13px;
}

.navbar li a {
  text-decoration: none;
  color: #000;
  font-weight: 200;
  font-size: 13px;
  transition: color 0.3s;
}

.navbar li a:hover {
  color: #ccc;
}

.navbar a.active {
  color: #f4a261;
  font-weight: bold;
  border-bottom: 2px solid #f4a261;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(5550 / 1920 * 100%);
  background-image: url('images/Hero_Space_1920px.jpg');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}

.hero-content {
  position: absolute;
  top: 10%;
  left: 65%;
  transform: translate(-50%, -50%);
  text-align: left;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0px;
  border-radius: 10px;
}

.hero-content h1 {
  font-weight: 200;
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content {
    position: static;
    transform: none;
    text-align: left;
    background-color: transparent;
    padding: 30px;
    margin-top: 1px;
    margin-bottom: 1px;
color: #000; /* Make all text inside hero-content black */
  }

  .hero-content h1 {
    color: #000;
    font-size: 15px;
  }
.hero-content p {
    color: #000; /* Paragraphs black */
  }

  .hero-content a {
    color: #000; /* Any links inside hero-content black */
  }

  .hero-button {
    display: inline-block;
    padding: 2px 5px;
    background-color: transparent;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.3s ease;
  }

  .hero-button:hover {
    background-color: #ddd;
  }
}

/* Footer */
.site-footer {
  background-color: #fff;
  color: #333;
  text-align: center;
  padding: 12px;
  font-size: 11px;
  line-height: 1.5;
}
