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

body {
  font-family: "Lato Open Sans", Helvetica, Arial, sans-serif;
  padding-top: 35px; /* match fixed header height */
  font-weight: 100;
  line-height: 1.5;
  background-color: #fff;
  color: #000; /* FIX: readable text */
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ddd;
  padding: 6px 20px;
  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: #000;
  font-weight: bold;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px; /* FIX: space before footer */
}



/* Hero image */
.air::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  padding-top: calc(3900 / 1920 * 100%);
  background-image: url("images/Studio_1920px.jpg");
  background-size: 100% auto; 
  background-repeat: no-repeat;
  background-position: top center;
}

/* Hero content */
.air-content-top {
  position: absolute; /* desktop headline in flow */
  max-width: 1100px;
  top: 90px;     /* distance from top */
  left: 70px;     /* distance from left */
  max-width: 1100px; /* keeps text readable */
  padding: 5px;
  color: #fff;

padding: 5px;
  border-radius: 10px;
  color: #fff;
}

.air-content-top h1 {
  font-weight: 300;
  font-size: 25px;
  margin-bottom: 20px;
}

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

.air-button:hover {
  background-color: #000;
}
/* Paragraph below headline */
.air-content-below {
top: 220px;      /* adjust spacing from top */
  left: 10px;      /* adjust spacing from left */
  max-width: 9500px;
  margin: 0 70px 50px 70px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  position: absolute;
}
/* Mobile */

@media (max-width: 768px) {
  .center-logo {
    display: block;
    z-index: 10;
 }
  ..air {
    position: relative;       /* allow page to scroll */
    width: 100%;
    height: auto;             /* image height adjusts naturally */
    padding-top: 56%;         /* aspect ratio placeholder */
    background-image: url("images/Studio_1920px.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 5;
  }

  .air-content-top {
position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    max-width: 90%;
  }

  .air-content-top h1 {
    font-size: 26px;
    line-height: 0.1;
  }

  .air-button {
    padding: 8px 14px;
  }

  /* Paragraph naturally flows BELOW image */
.air-content-below {
    position: relative;      /* stay in normal flow */
    max-width: 90%;
    font-size: 16px;
    color: #000;
    padding-top: 550px;      /* push content below fixed image */
margin: 14px 0 16px 16px;  /* top, right, bottom, left */
  text-align: left;           /* align text to left */
    z-index: 1;
  }
}

/* Footer */
.site-footer {
  background-color: #fff;
  color: #333;
  text-align: center;
  padding: 20px 10px;
  font-size: 11px;
  line-height: 1.5;
  border-top: 1px solid #eee;
}
