body {
    margin: 0;
    padding: 0;
    font-family: 'bosch', sans-serif;
    background-color: #0D0D0D;
    color: #FFFFF0;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5vw;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease-in-out;
}

nav a {
    color: #FFFFF0;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #B81E3E;
}

.work-header {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('../images/SSw\ background.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: bold;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.work-title {
    position: relative;
    font-size: 64px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
}

.work-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
    text-align: left;
    border-top: 2px solid rgba(255, 255, 240, 0.2);
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards 0.5s;
}

.work-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 240, 0.8);
}

.work-info p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.short-story-text {
    background: rgba(255, 255, 240, 0.05);
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #B81E3E;
    color: #FFFFF0;
    text-decoration: none;
    font-size: 18px;
    border-radius: 50px;
    border: 2px solid #B81E3E;
    transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
    font-weight: bold;
}

.cta-btn:hover {
    background-color: transparent;
    border: 2px solid #FFFFF0;
    color: #FFFFF0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */
@media screen and (max-width: 1024px) {
    .work-content {
        padding: 30px;
    }
    .work-header {
        height: 60vh;
    }
}

@media screen and (max-width: 768px) {
    .work-header {
        height: 50vh;
    }
    nav {
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
    }
    nav a {
        margin: 5px 0;
    }
}

@media screen and (max-width: 480px) {
    .work-header {
        height: 40vh;
    }
    .work-content {
        padding: 20px;
    }
    .cta-btn {
        padding: 12px 30px;
    }
}
