@font-face {
    font-family: 'Suisse Intl';
    src: url('../fonts/SuisseIntl-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

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

body {
    font-family: 'Suisse Intl', Arial, Helvetica, sans-serif;
    background: #fff;
    color: #000;
    padding: 0;
    margin: 0;
    position: relative;
    min-height: 100vh;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    margin: 0;
}

.main-header h1 {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

.mail-link {
    font-size: 42px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

/* Projects List */
.projects-list {
    max-width: 1200px;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.year-section {
    margin-bottom: 20px;
}

.year {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: normal;
}

.project-title {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.project-title a {
    color: #000 !important;
    text-decoration: none !important;
}

.project-title a:hover {
    opacity: 0.5;
}

.projects-group .project-title {
    margin-bottom: 15px;
}

/* Project Page Styles */
.project-page {
    margin: 0;
    padding: 0;
    position: relative;
}

.project-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    margin: 0;
    background: #fff;
    z-index: 100;
    height: 82px;
    box-sizing: border-box;
}

.project-title-header {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    color: #000 !important;
    text-decoration: none !important;
}

.next-link {
    font-size: 42px;
    font-weight: bold;
    color: #000 !important;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

.project-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    bottom: 150px;
}

.slider {
    position: relative;
    width: calc(100vw - 40px);
    height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-image {
    position: absolute;
    max-width: 100%;
    max-height: calc(100% - 20px);
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.slider-image.active {
    opacity: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 0.2);
    font-size: 60px;
    padding: 20px 30px;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.slider-arrow:hover {
    color: rgba(255, 255, 255, 0.4);
}

.slider-arrow:focus {
    outline: none;
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.project-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    font-size: 16px;
    gap: 40px;
    background: #fff;
}

.project-description {
    flex: 1;
    max-width: 60%;
    line-height: 1.5;
}

.project-info {
    text-align: right;
    flex-shrink: 0;
}