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

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px;
    z-index: 100;
    mix-blend-mode: difference;
    color: white;
}

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.scroll-section {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.project-card {
    position: absolute;
    z-index: 2;
    width: 500px; /* Adjusted size to be 100% larger */
    height: 600px; /* Adjusted size to be 100% larger */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.project-image {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    filter: blur(5px);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.scroll-section:hover .project-image img {
    transform: scale(1.2);
}

/* Navigation styles */
.navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navigation a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.navigation a.back-button {
    color: var(--pink-accent);
    font-size: 1.5rem;
    padding: 10px 20px;
    border: 2px solid var(--pink-accent);
    border-radius: 5px;
}

.navigation a.back-button:hover {
    background-color: var(--pink-accent);
    color: white;
}
