/* style.css - Clean markdown-style portfolio */

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    background: #0f0f10;
    color: #e6e6e6;
    line-height: 1.7;
    margin: 0;
}

/* Header */
.header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.header img {
    width: 100%;
    max-width: 1123px;
    height: auto;
    border-radius: 10px;
}

/* Container - Markdown style */
.container {
    max-width: 760px;
    margin: auto;
    padding: 0 25px 80px 25px;
}

.markdown-content {
    font-size: 16px;
}

/* Typography - Markdown inspired */
h1 {
    font-size: 42px;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 28px;
    margin-top: 70px;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 10px;
}

h3 {
    font-size: 22px;
    margin-top: 45px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

.meta {
    color: #9c9c9c;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Contact block */
.contact-block {
    background: #1a1a1c;
    padding: 20px 25px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #7ab7ff;
}

.contact-block p {
    margin: 0;
    line-height: 1.8;
}

/* Projects */
.project {
    margin-top: 50px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #2a2a2a;
}

.project:last-of-type {
    border-bottom: none;
}

/* Video link styling */
.video-link {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 12px 18px;
    background: #1a1a1c;
    border-radius: 6px;
    border-left: 4px solid #7ab7ff;
    transition: background 0.2s ease;
}

.video-link:hover {
    background: #252528;
}

.video-link p {
    margin: 5px 0;
}

.video-link a {
    color: #7ab7ff;
    font-size: 15px;
    text-decoration: none;
    word-break: break-word;
    font-family: monospace;
}

.video-link a:hover {
    color: #9cc9ff;
    text-decoration: underline;
}

.link-alt {
    font-size: 14px;
    opacity: 0.8;
    border-top: 1px dotted #333;
    margin-top: 8px;
    padding-top: 8px;
}

.link-alt a {
    font-size: 13px;
    color: #888;
}

/* Regular links */
a {
    color: #7ab7ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Dividers */
hr {
    border: none;
    border-top: 2px solid #2a2a2a;
    margin: 60px 0;
}

/* Lists */
ul {
    padding-left: 25px;
    margin: 20px 0;
}

li {
    margin-bottom: 8px;
    color: #d0d0d0;
}

li::marker {
    color: #7ab7ff;
}

/* Strong/bold text */
strong {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 24px;
        margin-top: 50px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .container {
        padding: 0 20px 60px 20px;
    }
    
    .video-link {
        padding: 10px 15px;
    }
    
    .video-link a {
        font-size: 14px;
    }
    
    .contact-block {
        padding: 15px 20px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 30px;
    }
    
    .video-link a {
        font-size: 13px;
    }
}