/* General styles */
body {
    font-family: "Zain", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #c9cebf;
}
.aboreto-regular {
    font-family: "Aboreto", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  .zain-extralight {
    font-family: "Zain", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .zain-light {
    font-family: "Zain", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .zain-regular {
    font-family: "Zain", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .zain-bold {
    font-family: "Zain", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .zain-extrabold {
    font-family: "Zain", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .zain-black {
    font-family: "Zain", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
/* Header styles */
header {
    background-color: #f7b21e;
    padding-top: .2%;
    font-family: "Aboreto", system-ui;
    font-weight: 400;
    font-style: normal;
}
#hpTitle {
 font-family: "Aboreto", system-ui;
padding: .5%;
margin-top: 0%;
text-align: center;
}
.navbar {
    background-color: #333;
    padding: 1rem;
}

.nav-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: inline-block;
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-item {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

.nav-item:hover .dropdown-menu {
    display: block;
}
/* Main content styles */
[role="main"] {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
}

/* Column styles */
.column {
    flex: 1;
    padding: 1rem;
    min-width: 300px;
}
p{
font-size: larger;

}
/* Image placeholder styles */
.image-placeholder {
    background-color: #ddd;
    color: #666;
    text-align: left;
    padding: 2rem;
    margin-bottom: 1rem;
}
main {
    grid-column: 2 / 3;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Specific height image placeholders */
.image-placeholder[style*="height"] {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image{
    color: #666;
    text-align: left;
    margin-bottom: 1rem;
    width: 50%;
    
}
/* Main image styles for SpaceCenter */
.main-image {
    width: 100%;
    margin-bottom: 1rem;
}

/* Content area styles for SpaceCenter */
.content {
    flex: 2;
    padding: 1rem;
    min-width: 300px;
}

/* Sidebar styles for SpaceCenter */
.sidebar {
    flex: 1;
    padding: 1rem;
    background-color: #f4f4f4;
    min-width: 200px;
}
.disclaimer{
    font-size: x-small;
    text-align: center;
}
/* Responsive design */
@media (max-width: 768px) {
    [role="main"] {
        flex-direction: column;
    }
    
    .column, .content, .sidebar {
        width: 100%;
    }
}