* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    color: white;
    background-color: black;
	cursor: url("/Maus/mouse3.png") 16 16, crosshair; /* Correct path and hotspot */

}

/* Apply a custom cursor to all clickable links */
a {
    cursor: url("/Maus/mouse2.png") 16 16, auto; /* Custom cursor */
}

/* Change cursor when hovering over links */
a:hover {
    cursor: url("/Maus/mouse2.png") 16 16, auto; /* Custom hover cursor */

}
a:hover {
	color: limegreen !important;
}


/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: flex-start;
}

header .left p {
    font-size: 16px;
    line-height: 1.0;
}

header .left p:hover {
	color: limegreen;
}

header .center {
    text-align: center;
}

header .center p {
    font-size: 16px;
    line-height: 1.0;
}

header .center p:hover {
	color: limegreen;
}


header .right nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0px;
    text-align: right;
	line-height: 1.0;
}

header .right nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
	line-height: 1.0;
}

header .right nav ul li a:hover {
    color: limegreen;
}
.projects {
    padding: 20px;
}
.project-row {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -1px;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    cursor: pointer; /* Indicate clickable items */
    transition: background-color 0.3s ease;
}

.project-row:hover {
    background-color: black; /* Optional: background color on hover */
}

.project-row span {
    display: inline-block;
    padding-right: 50px; /* Space between repeated text */
}

.project-row .scroll-text {
    display: flex;
    animation: scroll-left 10s linear infinite;
}

.project-row:hover .scroll-text {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* WebKit prefix for Safari */
@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
    }
}

/* Project link styling */
.project-link {
    display: block;
    text-decoration: none; /* Remove underline from links */
    color: white; /* Ensure the link text is black */
}

.project-link:hover .scroll-text {
    color: limegreen; /* Optional: Change text color on hover */
}

/* Mobile Layout for the header and projects */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .center {
        order: 1;
        margin-bottom: 20px;
		text-align: left !important;
    }

    .left {
        order: 2;
        margin-bottom: 20px;
    }

    .right {
        order: 3;
        width: 100%;
        text-align: left !important;
    }

    .right nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
        padding: 0;
        margin: 0;
    }

    .right nav ul li {
        list-style: none;
    }

    .right nav ul li a {
        font-size: 14px;
        text-align: left;
        display: block;
        color: white;
        text-decoration: none;
    }

    .right nav ul li a:hover {
        color: limegreen;
    }

    .project-row {
        font-size: 28px;
    }
	
}

/* Project Header Styles */
.project-header {
    padding: 15px 20px;
    text-align: left;
}

.project-name {
    font-size: 48px;
	line-height: 46px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.project-subtitle {
    font-size: 12px;
	margin-bottom: 0px;
    color: white;
}

/* Description text under subheadliner */
.project-description {
    margin-top: 0px;
    font-size: 12px;
    line-height: 1.1;
    color: white;
    padding: 10px 10;
    text-align: left;
    width: 33.33%;
    margin-left: auto;
    margin-right: auto;
}


/* Description text under subheadliner */
.project-description-center{
    margin-top: 0px;
    font-size: 18px;
    line-height: 1.1;
    color: white;
    padding: 10px 10;
    text-align: center;
    width: 33.33%;
    margin-left: auto;
    margin-right: auto;
}

/* Description text under subheadliner */
.project-description-center-klein{
    margin-top: 0px;
    font-size: 12px;
    line-height: 1.1;
    color: white;
    padding: 10px 10;
    text-align: center;
    width: 33.33%;
    margin-left: auto;
    margin-right: auto;
}

/* Styling for the image row */
.project-images-center {
    display: flex;
    justify-content:center;
    margin-top: 20px;
	margin-bottom: 20px;
	}

.project-images-center img {
    width: 33%;
    height: auto;
    border-radius: 5px;
    padding-left: 10px;  /* Adds padding to the left */
    padding-right: 10px; /* Adds padding to the right */
}
/* Styling for the image row */
.project-images-left {
    display: flex;
    justify-content:flex-start;
    margin-top: 20px;
	margin-bottom: 20px;
}
.project-images-left img {
    width: 33%;
    height: auto;
    border-radius: 5px;
    padding-left: 10px;  /* Adds padding to the left */
    padding-right: 10px; /* Adds padding to the right */
}
/* Styling for the video */
.project-videos {
    display: flex;
    justify-content: center;
    margin-top: 20px;
	margin-bottom: 20px;
}
.project-videos videos{
    width: 33%;
    height: auto;
    border-radius: 5px;
    padding-left: 10px;  /* Adds padding to the left */
    padding-right: 10px; /* Adds padding to the right */
}
/* Styling for the 3D */
.project-3d {
    display: flex;
    justify-content:center;
    margin-top: 20px;
	margin-bottom: 20px;
}
.project-3d iframe{
    width: 50;
    height: 50;
    border-radius: 5px;
    padding-left: 10px;  /* Adds padding to the left */
    padding-right: 10px; /* Adds padding to the right */
}
/* Styling for the image row */
.project-images-right {
    display: flex;
    justify-content:flex-end;
    margin-top: 20px;
	margin-bottom: 20px;
}
.project-images-right img {
    width: 33%;
    height: auto;
    border-radius: 5px;
    padding-left: 10px;  /* Adds padding to the left */
    padding-right: 10px; /* Adds padding to the right */
}
/* Styling for the image row */
.project-images-hochkant {
    display: flex;
    justify-content:center;
    margin-top: 20px;
	margin-bottom: 20px;
}
.project-images-hochkant img {
    width: 300px;
	height: 500px;
    border-radius: 5px;
    padding-left: 10px;  /* Adds padding to the left */
    padding-right: 10px; /* Adds padding to the right */
}
/* Styling for the image row */
.project-images-sonder {
    display: flex;
    justify-content:center;
    margin-top: 20px;
	margin-bottom: 20px;
}
.project-images-sonder img {
    width: 30%;
	height: 30%;
    border-radius: 5px;
    padding-left: 10px;  /* Adds padding to the left */
    padding-right: 10px; /* Adds padding to the right */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .center {
        order: 1;
        margin-bottom: 20px;
    }

    .left {
        order: 2;
        margin-bottom: 20px;
    }

    .right {
        order: 3;
        width: 100%;
        text-align: center;
    }

    .right nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .right nav ul li {
        list-style: none;
    }

    .right nav ul li a {
        font-size: 14px;
        text-align: center;
        color: white;
        text-decoration: none;
    }

    .right nav ul li a:hover {
        color: limegreen;
    }

    .project-name {
        font-size: 32px;
    }

    .project-subtitle {
        font-size: 18px;
    }

    .project-description {
        width: 100%;
    }

    .project-images {
        flex-direction: column;
        align-items: center;
    }

    .project-images img {
        width: 80%;
        margin-bottom: 10px;
    }
    .project-videos videos
	.project-videos iframe{
        width: 80%;
        margin-bottom: 10px;
    }
	.project-images-center {
        flex-direction: column;
        align-items: center;
    }
    .project-images-center img {
        width: 80%;
        margin-bottom: 10px;
    }
	.project-images-hochkant {
        flex-direction: column;
        align-items: center;
    }

    .project-images-hochkant img {
        width: 80%;
        margin-bottom: 10px;
    }
	.project-images-left {
        flex-direction: column;
        align-items: center;
    }

    .project-images-left img {
        width: 80%;
        margin-bottom: 10px;
    }
	.project-images-right {
        flex-direction: column;
        align-items: center;
    }

    .project-images-right img {
        width: 80%;
        margin-bottom: 10px;
    }
	.project-images-sonder {
        flex-direction: column;
        align-items: center;
    }

    .project-images-sonder img {
        width: 80%;
        margin-bottom: 10px;
    }	
	/* Optional: Additional styles for responsiveness on smaller screens */
@media (max-width: 768px) {
    .project-videos video,
    .project-3d iframe {
        width: 80%;
        margin-bottom: 10px;
    }
	
html, body {
    overflow-x: hidden;
	}
	
	img, iframe, video {
    max-width: 100vw;
    height: auto;
    display: block;
}
	header, section {
    max-width: 100vw;
    overflow-x: hidden;
}


}