
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Chivo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    line-height: 1.6;
    color: #444;
    background: #f4f4f4;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Chivo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #2c7fb8;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5f8a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#header {
    background: #0a75c1;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#logo {
    margin: 0 0 0.5rem 0;
}

#logo a {
    font-family: "BBH Sans Hegarty", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
}

#header p {
    color: #bdc3c7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

#nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

#nav a {
    color: #ecf0f1;
    font-weight: 500;
    padding: 0.5rem 0;
    display: inline-block;
}

#nav a:hover,
#nav a.active {
    color: #3498db;
}

#nav .icon {
    margin-right: 0.5rem;
}


#hero-banner {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), 
                url('../images/phage.png') center center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    padding: 8rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-family: "Chivo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: bold;
    font-size: 5rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #ecf0f1;
    font-weight: 300;
}


#about {
    background: #fff;
    padding: 4rem 0;
}

#about header h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

#about .content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}


#infographic {
    background: #ecf0f1;
    padding: 4rem 0;
}

.infographic-wrapper {
    text-align: center;
}

.infographic-wrapper img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}


#cta {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

#cta p {
    font-size: 1.3rem;
    margin: 0;
}

#cta a {
    color: #3498db;
    font-weight: bold;
}

#cta a:hover {
    color: #5dade2;
}



#main {
    background: #fff;
    padding: 4rem 0;
}

#content header {
    text-align: center;
    margin-bottom: 3rem;
}

#content header h2 {
    color: #2c3e50;
}

#content header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}


.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon h3 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}


.team-section {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #3498db;
}

.team-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.staff-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.members-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.team-member {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.member-photo {
    margin-bottom: 1rem;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3498db;
}

.member-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.5rem;
}



.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-box {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
}

.contact-box h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-box ul {
    list-style-position: inside;
    color: #555;
}

.contact-box li {
    margin-bottom: 0.5rem;
}


#footer {
    background: #2c3e50;
    color: #bdc3c7;
    padding: 2rem 0;
    margin-top: 4rem;
}

#copyright {
    text-align: center;
}

#copyright .links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

#copyright .links li {
    padding: 0 1rem;
    border-right: 1px solid #7f8c8d;
}

#copyright .links li:last-child {
    border-right: none;
}

#copyright a {
    color: #3498db;
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    #nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}


body.is-preload * {
    animation: none !important;
    transition: none !important;
}
