:root {
    --primary-color: #2563EB;
    --secondary-color: #0F172A;
    --tetriary-color: #BC4800;
    --secondary-color: #F1F5F9;
    --neutral-color: #F8F3FC;
}

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

html {
    font-family: 'Hanken Grotesk', 'Source Serif 4', 'JetBrains Mono', sans-serif;
    background-color: #F8F3FC; 
    background-image: radial-gradient(#D3C9DE 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    scroll-behavior: smooth;
    user-select: none;
    -webkit-user-select: none;
}

hr {
    width: 90%;
    margin: 5px auto;
}

/* Navigation bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    font-family: 'Hanken Grotesk', sans-serif;
    display: flex;
    padding: 20px 40px;
    font-size: 20px;
}

.logo {
    color: black;
    font-weight: bold;
    text-decoration: italic;
}

.nav-links {
    display: flex;
    margin-left: auto;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    font-style: italic;
    font-weight: 600;
    color: black;
}


/* Hero section */
.hero {
    font-family: 'Source Serif 4', sans-serif;
    display: flex;
    padding: 0 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 650;
    text-align: center;
    
    margin: 50px 0;
}

.pfp {
    margin-top: 20px;
    width: 180px;  
    height: 180px;
    border-radius: 50%;  
    object-fit: cover;   
}

.intro-title {
    font-size: 100px;
    font-style: italic;
}

.intro-text {
    font-size: 34px;
    margin-top: 10px;
}


/* Projects */
.projects-wrapper {
    /* max-width: 1800px;*/
    margin: 40px auto;        
    padding: 0 60px;      
    font-family: 'Source Serif 4', sans-serif;
}

.projects-wrapper h2 {
    font-style: italic;
    font-size: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.projects-row {
    display: flex;    
    flex-direction: row;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 15px 5px;
    width: 100%;
    justify-content: center;
}

.project-card {
    flex: 0 0 400px;
    background: #ffffff;  
    border: 1px solid #E2D9EB;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(162, 141, 187, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(162, 141, 187, 0.15);
}

.project-card h3 {
    margin: 15px 0 8px 0;
    font-size: 22px;
    color: #0F172A;         
}

.project-links a {
    font-size: 18px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.card-img {
    width: 100%;
    height: 270px;
    border-radius: 10px;
    overflow: hidden;
    background: #F1F5F9;
}

.card-img img {
    width: 100%;
    height: 100%;
    display: block;    
    object-fit: cover;  
}


/* Contacts */
.contact-wrapper {
    margin: 40px auto;
    padding: 0 60px;
}

.contact-wrapper p {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    font-family: 'Source Serif 4', sans-serif;
    font-style: italic; 
}

.socials-list {
    display: flex;
    gap: 40px;
    margin: 10px auto;
    justify-content: center;
    align-items: center;
}

.social {
    object-fit: cover;
    height: 70px;
    width: 70px;
}