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

body {
  font-family: "Lato Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 100;
  margin-bottom: 1.7em;     /* Adds space between paragraphs */
  line-height: 1.5;         /* Increases line spacing for readability */ 
  background-color: #000;
  color: #fff;
}

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

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

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

/* Optional: make nav text visible on hover */
.navbar li a:hover {
  color: #ccc;
}

/* Air Section */
.hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 30px; /* space for fixed header */
}

.air::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(1140/ 1920 * 100%); /* Maintain aspect ratio */
  background-image: url('images/Allcolors_1920px.jpg');
  background-size: 100% auto; /* Scales to screen width */
  background-repeat: no-repeat;
  background-position: top center;
}

.air-content {
  position: absolute;
  top: 5%;
  Left: 9.3%;
  transform: translate(-50%, -50%);
  text-align: right;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0);
  padding: 4px;
  border-radius: 0px;
}

.air-content h1 {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 10px;
  color: #000;
}

.air-button {
  display: inline-block;
  padding: 4px 3px;
font-size: 14px;
  background-color: FFF;
  color: #000;
  font-weight: medium;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

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


/* Footer */
.site-footer {
  background-color: #000;
  color: #999; /* 60% black */
  text-align: center;
  padding: 10px;
  font-size: 11px;
  line-height: 1.5;
}
