@font-face {
    font-family: 'alata';
    src: url('src/fonts/Alata/Alata-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'albert_sans';
    src: url('src/fonts/Albert_Sans/AlbertSans-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'archivo';
    src: url('src/fonts/Archivo_Black/ArchivoBlack-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.title {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-family: 'alata';
}


.title::before,
.title::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 2px;
    background-color: black;
    top: 50%;
}

.title::before {
    left: -410px;
}

.title::after {
    right: -410px;
}


/* Header */

.header {
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}


.logo {
    font-size: 30px;
    font-weight: bold;
    font-family: 'archivo';
}


.nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin-left: 15px;
    font-family: 'alata';
}

.nav a:hover {
    text-decoration: underline;
}

/* Project details */

.project-details {
    max-width: 800px;
    margin: 0 auto;
}

.project-details h2 {
    font-size: 30px;
    font-family: 'alata';
    
}

.content {
    display: flex;
    align-items: center;
}

.content p {
    width: 60%; 
    font-family: 'albert_sans';
}

.content img {
    width: 30%;
    margin-left: 10%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.link{
    font-family: 'alata';
    
}

/* Documents */

.document {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolommen */
    gap: 16px;
    padding: 20px;
}

.card {
    background-color: #BFD7EA;
    padding: 10px;
    transition: transform 0.2s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; 
}

.card:hover {
    transform: translateY(-5px);
}

.card-link {
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'alata';
}

.card-description {
    font-size: 0.9rem;
    margin: 8px 0;
    font-family: 'albert_sans';
}

.arrow {
    align-self: flex-end;
    width: 24px;
    height: 24px;
}

.project-image{
    width: auto;
    height: auto;
}

/* Footer */

.footer {
    background-color: #232121;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    font-family: 'alata';
}

.footer p{
    font-family: 'albert_sans';
}

.footer-section {
    flex: 1;
    text-align: center;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-section p, 
.footer-section a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-container {
    display: inline-block;
    background: white;
    padding: 0px 15px;
    border-radius: 30px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}


