
/* Colours*/
:root {
    --color-nav-footer: #0A0A0A;     
    --color-background: #18181B;      
    --color-card-background: #F4F4F5; 
    --color-card-text: #18181B;      
    --color-card-border: #E4E4E7;   
    --color-primary: #2563EB;       
    --color-primary-hover: #3B82F6;    
    --color-text-light: #F9FAFB;   
    --color-text-secondary: #A1A1AA; 
    --color-white: #FFFFFF;
}

*{
  margin: 0;
  padding:  0;
  box-sizing: border-box;
    font-family: 'Roboto';
}
.main-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-nav-footer);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo img {
    max-height: 50px;
    width: auto;
}

.logo-text {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links a {
    color: var(--color-text-light);
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-primary-hover);
}

/*Text Colours etc*/
body {
    background-color: var(--color-background);
    color: var(--color-text-light);
    overflow-x: hidden;
 
}

h1, h2, h3, h4 {
    color: var(--color-text-light);
}

p {
    color: var(--color-text-light);
    font-size: 1rem;
}
/*Footer*/

.main-footer {
    background-color: var(--color-nav-footer);
    color: var(--color-text-secondary);
    padding: 40px 20px 10px 20px;
    margin-top: 60px;
    border-top: 4px solid var(--color-primary);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}
.footer-column h4 {
    color: var(--color-white); margin-bottom: 15px; font-size: 1.2rem;
}
.footer-column p, .footer-column li {
    font-size: 0.9rem; line-height: 1.6;
}
.footer-column ul {
    list-style: none; padding: 0;
}
.footer-column ul a {
    color: var(--color-text-secondary); text-decoration: none; transition: color 0.3s ease;
}
.footer-column ul a:hover {
    color: var(--color-primary-hover);
}
.footer-bottom {
    text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid #444;
}
.footer-bottom p {
    font-size: 0.8rem; color: #888;
}
/*Home Page*/
.welcome-banner {
    position: relative;
    text-align: center;
    color: var(--color-white);
}
.welcome-banner .background-image {
    width: 100%;
    height: 91vh;
    object-fit: cover;
    filter: brightness(0.5);
}
.welcome-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 40px;
}
.welcome-message h1 {
    font-size: 3.5rem;
}
.welcome-message p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-top: 15px;
}

.about-us-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
}
.about-us-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Profiles*/

.team-page-container {
    padding: 20px; max-width: 1200px; margin: 0 auto;
}
.team-page-container > h1 {
    text-align: center; font-size: 3rem; margin-bottom: 40px;
}

.team-section {
    display: flex; gap: 30px; margin-bottom: 60px; align-items: stretch;
}
.team-section .large-image {
    flex-basis: 65%; 
}
.team-section .large-image img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 5px;
}
.large-image{ width: 100%;
    
    filter: brightness(0.75);}
.team-section .card-container {
    flex-basis: 35%;
    display: flex;
}

.team-card {
    background-color: var(--color-card-background);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--color-card-border);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.team-card img {
    width: 200px; height: 200px; border-radius: 50%; object-fit: cover; margin: 0 auto 15px auto;
}
.team-card h2 {
    color: var(--color-card-text); font-size: 1.5rem; margin: 10px 0 5px 0;
}
.team-card .title {
    color: #52525B; 
    font-size: 1rem; margin-bottom: 15px;
}
.team-card p {
    color: var(--color-card-text);
    font-size: 0.9rem; flex-grow: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}