@font-face {
    src: url('fonts/Copperplate Gothic Bold Regular.ttf') format('truetype'); 
    font-family: "Copperplate"; 
    font-weight: normal; 
    font-style: normal;
}

@media (max-width: 500px) {
    .project-grid {
        grid-template-columns: 1fr; 
        gap: 15px; 
    }
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #011c1c;
    color: white;
    transition: opacity 0.5s ease-in-out;
}

body.fade-out {
    opacity: 0;
}

header {
display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 40px;
    background-color: black;
    position: sticky;
    top: 0;
    color: white;
    font-family: "Copperplate";
    border: 1px solid black;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.logo {
    font-size: 28px;
    font-weight: bold;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}


nav a {
    color: hsl(0, 0%, 80%);
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    color:hsl(0, 0%, 100%)
}


.hero {
    padding: 100px 40px;
}

/* Projects */

.projects {
    padding: 80px 40px;
    color: white;
    font-family: "Copperplate";
    font-size: 30px;
    margin-bottom: 10px;
    text-decoration: none;
    color: white;
}

.projects-text {
    padding: 80px 40px;
    color: white;
    font-family: "Copperplate";
    font-size: 30px;
    margin-bottom: 10px;
    text-decoration: none;
}

.projects-text-card{
    padding: 10px;
    color: white;
    font-family: "Copperplate";
    font-size: 40px;
    margin-bottom: 10px;
    text-decoration: underline;
}


.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    padding: 20px 0;
}

.project-link {
    display:block;
    text-decoration: none;
    color:inherit;
}

.project-card{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    background-color: #264e4e;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 30px;
    text-align: center;
    font-size: 30px;
    font-family: "Space Grotesk";
    border: solid 1px;
    border-color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6)
}

.project-link:hover .project-card{
    border-width: 3px;
    border-radius: 30px;
    padding:25px;
    background-color: #234646;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.9);
    text-decoration: none;
}

.projects-hero {
    padding: 100px 40px;
}

.projects-text-main{
    font-size: 60px;
    color: white;
    margin-bottom: 10px;
    font-family: "Copperplate";
    text-decoration: underline;
}