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

/* Nav Bar */
.navbar {
    background-color: #ffffff;
    height: 80px;
    color: #fff;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d7d7d7;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    width: 43px;
    height: 44px;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #00354c;
    font-family: 'Fira Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    display: inline-flex;
}

.nav-links--active {
    color: #D4F1FF;
   background-color: #d4e0e6;
   font-family: 'Fira Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    padding: 10px 15px;
    justify-content: baseline;
  
}

.nav-links a:hover {
    color: #86aec2;
}
.hero{
    background-image: url('images/bg.jpeg');
    background-size: hieght 1624px;
    background-position: center;
    height: 500px;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
}

.h1-hero {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 300;
    color: #00354c;
    text-align: center;
    padding: 20px;
}
.hero-content{
  position:relative;
  z-index:1;
  padding: 44px 22px;
  text-align:left;
}

.tagline {
    font-family: 'Fira Mono', monospace;
    font-size: 20px;
    font-weight: 300;
    color: #01103f;
    text-align: center;
    margin-top: 10px;
}
.button {
    display: inline-block;
    padding: 10px 15px;
    font-size: 12px;
    color: #e2f3fa;
    background-color: #00354c;
    border: 0.5px solid #d5f3ff;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    font-family: 'Fira Mono', monospace;
}

.button:hover {
    background-color: #86aec2;
    transform: scale(1.05);
}

.section-header {
    font-family: 'Fira Mono', monospace;
    background-color: #D4F1FF;
    font-size: 16px;
    font-weight:400;
    color: #01103f;
    text-align: left;
    margin: 40px 0;
    display: inline-flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;

}

.main-content {
    background-color: #edf7fbe6;
    background-position: center;
    background-blend-mode: lighten;
    background-size: cover;
    position: relative;
}

.container {
    padding-left: 5%;
    padding-right: 5%;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}

.project-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: zoom(-10px);
    box-shadow: 0 10px 30px rgba(74, 124, 158, 0.2);
}

.project-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 10px ;
}


.project-card:hover {
    transform: scale(1.05);
}

.project-info {
    padding: 20px;
}

.timeline {
    font-size: 12px;
    letter-spacing:normal;
    color: #8f8f8f;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'Fira Mono', monospace;
}

.project-title {
    font-size: 40px;
    font-weight: 400;
    color: #2c2c2c;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.project-summary {
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

.footer {
    background-color: #ffffff;
    padding: 20px;
    font-family: 'Fira Mono', monospace;
    font-size: 14px;
    color: #8f8f8f;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: #dfdfdf 1px solid;
}

.footer-content {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #8f8f8f;
}

.footer-links a:hover {
    color: #454545;
}