/* header.css */

/* General header container */
.header-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

/* Individual header items */
.header-item {
  flex: 1 1 auto;
  min-width: 150px;
  padding: 5px;
  text-align: left;
}

.header-item img {
  max-width: 100%;
  height: auto;
}

/* Organization info styling */
.org-info {
  flex: 2 1 300px;
  color: black;
}

.org-info .org-fullform {
  font-size: 18px;
  font-weight: bold;
}

.org-info .moma-fullform,
.org-info .goi-fullform {
  font-size: 16px;
  font-weight: bold;
}

/* Contact info styling */
.contact-info {
  flex: 1 1 180px;
  font-size: 14px;
  color: black;
}

/* Logos on right */
.logo-right {
  flex: 0 1 auto;
  text-align: right;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo-right {
    text-align: center;
    width: 100%;
  }
  .header-item {
    text-align: center;
  }
}
