/* General Styles */
.aid-highlight {
  color: #ae6042;
  font-weight: 600;
  letter-spacing: 0.5px;
}


body {
    font-family: Arial, sans-serif;
    font-size: medium;
    background-color: #f8f9fa;
    color: #212529;
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  background-color: #083c52;
  padding: 10px 20px;
  color: white;
  flex-wrap: wrap;
}

.navbar-left, .navbar-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.logo {
    width: auto;
    height: 150px;
    padding-top: 0;
    background-color:none;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.nav-link:hover {
  text-decoration: underline;
}

.navbar-center {
  text-align: center;
  max-width: 60%;
}

.project-title {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  font-size: 40px;
  margin: 0;
}


.blue-text {
  color: #43c3ff;
}

.pink-text {
  color: #f06192;
}

.yellow-text {
  color: #f9c302;
}

.green-text {
  color: #4ae2b5;
}


.main-content {
  flex: 1;
  padding: 2rem 1rem;
  font-size: 1.5rem;
}

.container{
    background: #e9f3f9;
    padding: 2.5rem;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}



/* Header */
.container h1 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #0f3a54;
}

/* Intro Paragraph */
.container > p {
    color: #333;
    margin-bottom: 2rem;
}

/* Section Heading */
.contact-section h2 {
    position: relative;
    margin-bottom: 2rem;
    color: #0f3a54;
}

.contact-section h2::after {
    content: '';
    display: block;
    margin: 0.5rem auto 0;
    width: 60px;
    height: 3px;
    background-color: #0f3a54;
    border-radius: 2px;
}

/* Contact Entry Blocks */
.contact-entry {
    margin-bottom: 2rem;
}

.contact-entry h3 {
    color: #003e5c;
    margin-bottom: 0.4rem;
}

.contact-entry p {
    color: #333;
    line-height: 1.6;
}

/* Links */
.contact-entry a {
    color: #0056b3;
    text-decoration: none;
}

#uth-footer {
  background-color: #083d52;
  color: white;
  padding: 30px 40px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  border-top: 2px solid #ccc;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}

.footer-container a {
  color: #00b7ff;
  text-decoration: underline;
  margin: 0 5px;
}

.uth-logo {
  max-height: 80px;
  padding: 5px;
}

.brain-logo {
    width: auto;
    height: 125px;
    padding-top: 0;
    background-color: white;
}