/* General Styles */
body {
    font-family: 'United Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Gold Bar */
.gold-bar {
    background-color: #b8860b;
    padding: 17px 0;
    color: white;
    text-align: center;
}

.gold-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gold-bar-nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.gold-bar-nav ul li {
    display: inline;
}

.gold-bar-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

/* Header */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #f4f4f4;
}

.logo img {
    height: 60px; /* Adjust as needed */
}

.navbar {
    flex-grow: 1; /* Allows it to take available space */
    text-align: center;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Centers the links */
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: #333;
	font-size: 24px;
    font-weight: normal;
    padding: 8px 12px;
}

.navbar a:hover {
    background-color: #f4f4f4;
	font-weight: bold;
}

/* Logo Section */
.logo-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.left-logo img {
    max-width: 100%;
    max-height: 240px;
    height: auto;
}

.right-logos {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.right-logos img {
    display: block;
    max-width: 100%;
    width: 250px;
    height: auto;
}

/* Hero Section */
.hero-container {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.hero {
    width: 100%;
    height: auto;
    display: block;
    margin-top: -150px;
}

.hero-overlay-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    max-width: 80%;
    line-height: 1.4;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

#home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 10%;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    width: 30%;
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.past-team {
    display: flex;
    justify-content: space-between;
}

.past-team-column {
    width: 48%;
}

.past-team-column p {
    margin: 5px 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Contact Page Table */
.contact-page table {
    margin: 20px auto;
    border-collapse: collapse;
    width: 80%;
}

.contact-page th {
    border-bottom: 2px solid black;
    padding: 10px;
    text-align: center;
}

.contact-page td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* Instrument Grid */
.instrument-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.instrument-card {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.instrument-card:hover {
    transform: scale(1.05);
}

.instrument-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.instrument-card h2 {
    font-size: 1.2em;
    margin: 10px 5px;
    color: #333;
}

.instrument-card h3 {
    font-size: 1em;
    margin: 5px 0;
    color: #666;
    font-weight: normal;
}

.instrument-card p {
    font-size: 0.9em;
    color: #555;
    padding: 0 10px;
}

/* Research Container */
.research-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 65%;
    margin: 0 auto;
}

.content-left, .content-right {
    width: 50%;
}

p {
    margin: 5px 0;
}
