/* Shared minimalist project page styles */
:root {
    --bg-color: #000000;
    --text-color: #FFFFFF;
    --accent-color: #333333;
    --hover-color: #444444;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.03);
    --gradient-1: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Satoshi', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}
.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    font-weight: 500;
    opacity: 0.7;
    font-size: 1rem;
}
.back-link:hover {
    opacity: 1;
    transform: translateX(-5px);
}
.project-content {
    border-radius: 24px;
    backdrop-filter: blur(10px);
    padding: 3rem;
    transition: transform 0.3s ease;
    width: 100%;
}
.project-content:hover {
    transform: translateY(-5px);
}
.project-header {
    margin-bottom: 2.5rem;
}
h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    opacity: 0.9;
}
h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}
h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.9;
}
p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.7;
    max-width: 700px;
}
ul {
    list-style: none;
    margin: 2rem 0;
}
li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}
li:hover {
    opacity: 1;
}
li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text-color);
    transition: transform 0.3s ease;
}
li:hover::before {
    transform: translateX(5px);
}
.portfolio-image, .project-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 1.5rem 0;
    transition: transform 0.3s ease;
    cursor: pointer;
    object-fit: cover;
}
.portfolio-image:hover, .project-image:hover {
    transform: scale(1.02);
}
.view-more, .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-1);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 1rem 0;
    width: fit-content;
}
.view-more:hover, .btn:hover {
    transform: translateY(-2px);
    background: var(--gradient-1);
}
blockquote {
    border-left: 4px solid var(--text-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    opacity: 0.8;
}
.image-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.image-overlay.show {
    display: flex;
}
.image-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
}
footer {
    text-align: center;
    opacity: 0.5;
    font-size: 0.9rem;
    margin-top: 4rem;
}
@media (max-width: 1000px) {
    .container { padding: 1.5rem; }
    .project-content { padding: 2rem; }
    h1 { font-size: 3rem; }
}
@media (max-width: 768px) {
    .container { padding: 1rem; }
    .project-content { padding: 1.5rem; border-radius: 16px; }
    h1 { font-size: 2.2rem; margin-bottom: 1rem; }
    h2 { font-size: 1.5rem; margin-bottom: 1rem; }
    h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
    p { font-size: 1rem; margin-bottom: 1rem; }
    li { font-size: 1rem; margin-bottom: 0.8rem; padding-left: 1.2rem; }
    .project-header { margin-bottom: 2rem; }
    .back-link { margin-bottom: 1.5rem; }
    .portfolio-image, .project-image { margin: 1rem 0; }
    blockquote { padding-left: 1rem; margin: 1.5rem 0; }
}
@media (max-width: 600px) {
    .container { padding: 1rem; }
    .project-content { padding: 1.2rem; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.3rem; }
    p { font-size: 0.95rem; }
    li { font-size: 0.95rem; }
}
@media (max-width: 480px) {
    .container { padding: 0.8rem; }
    .project-content { padding: 1.2rem; border-radius: 12px; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.2rem; }
    p { font-size: 0.95rem; }
    li { font-size: 0.95rem; }
    .view-more, .btn { padding: 0.7rem 1.2rem; font-size: 0.95rem; }
}
@media (max-width: 360px) {
    .container { padding: 0.6rem; }
    .project-content { padding: 1rem; border-radius: 10px; }
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1.1rem; }
    p { font-size: 0.9rem; }
    li { font-size: 0.9rem; }
    .view-more, .btn { padding: 0.6rem 1rem; font-size: 0.9rem; }
} 