/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full-screen flex container with fixed background */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url('your-image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Keeps the background from scrolling */
}

/* Centers the main text vertically and horizontally */
.content-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

ul {
  padding-inline-start: 0;
  list-style: none;
}

li {
  padding-left: 15px; /* Pushes the text rightward from the bullet */
}

/* CSS Styling */
.indented-section ul {
  padding-left: 20px; /* Adjust this value to change indent depth */
}

/* Base Footer Styles */
.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 20px;
  font-family: sans-serif;
}

/* Flexbox Layout Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Individual Columns */
.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #3498db; /* Accent Color */
}

.footer-column p {
  line-height: 1.6;
  color: #b3b3b3;
}

/* Navigation Lists */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

/* Navigation Links & Hover Interactivity */
.footer-column a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #3498db;
}

/* Bottom Bar Copyright Area */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #333333;
  text-align: center;
  font-size: 0.9rem;
  color: #666666;
}

/* 3. Responsive Media Query */
/* Stacks columns vertically on mobile screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    text-align: center;
  }
}


/* Right-aligns the footer text */
.footer-area {
  text-align: right;
  padding: 20px;
  width: 100%;
}
.sky-banner {
  /* Set the sky background image */
  background-image: url('sky-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* Full height and centering */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* White font color */
  color: black;
  
  
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}
