/* style2.css - Minimalist DeepSeek Style */

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    background: #ffffff;
    color: #202123;
    line-height: 1.5;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #202123;
    margin-bottom: 40px;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

/* ===== MAIN CONTAINER ===== */
#menu, #sisu {
    background: #ffffff;
    margin-bottom: 30px;
}

/* ===== MENU STYLES ===== */
#menu {
    margin-bottom: 40px;
}

#menu ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
}

#menu li {
    transition: transform 0.2s ease;
}

#menu li:hover {
    transform: translateY(-1px);
}

#menu a {
    display: inline-block;
    padding: 10px 20px;
    background: #f7f7f8;
    color: #202123;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #e5e5e5;
}

#menu a:hover {
    background: #f0f0f0;
    border-color: #d0d0d0;
}

#menu a[href*="lisamine"] {
    background: #10a37f;
    color: white;
    border: none;
}

#menu a[href*="lisamine"]:hover {
    background: #0d8c6d;
}

/* ===== CONTENT AREA ===== */
#sisu {
    min-height: 400px;
}

/* News Article Styles */
#sisu h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #202123;
    margin-bottom: 20px;
    line-height: 1.3;
}

#sisu > div {
    font-size: 0.95rem;
    color: #6e6e80;
    margin-bottom: 24px;
    padding: 0;
    font-weight: 500;
}

#sisu img {
    max-width: 800px;
    max-height: 500px;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ===== FORM STYLES ===== */
form {
    max-width: 500px;
    margin: 0;
    padding: 0;
}

form label {
    display: block;
    margin-bottom: 8px;
    color: #202123;
    font-weight: 500;
    font-size: 0.95rem;
}

form input[type="text"],
form input[type="date"],
form input[type="color"],
form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 24px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #ffffff;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #10a37f;
    box-shadow: 0 0 0 2px rgba(16, 163, 127, 0.1);
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

form input[type="color"] {
    height: 40px;
    width: 40px;
    cursor: pointer;
    padding: 2px;
    border-radius: 4px;
    display: block;
}

form input[type="submit"] {
    background: #10a37f;
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 10px;
    margin-bottom: 20px;
}

form input[type="submit"]:hover {
    background: #0d8c6d;
}

form a {
    display: inline-block;
    color: #6e6e80;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 0;
    transition: color 0.2s ease;
    font-weight: 500;
}

form a:hover {
    color: #202123;
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        padding: 20px 16px;
    }

    h1 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    #menu ul {
        flex-direction: column;
    }

    #menu a {
        width: 100%;
        text-align: center;
    }

    #sisu h2 {
        font-size: 1.5rem;
    }

    form {
        margin: 0;
    }
}

/* ===== UTILITY CLASSES ===== */
.form-group {
    margin-bottom: 24px;
}

.form-group:last-child {
    margin-bottom: 0;
}

/* ===== SMOOTH ANIMATIONS ===== */
#menu a,
form input[type="submit"],
form a {
    transition: all 0.2s ease;
}

/* ===== FOCUS STATES ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #10a37f;
    outline-offset: 2px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f7f7f8;
}

::-webkit-scrollbar-thumb {
    background: #e5e5e5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d0d0d0;
}

/* ===== NEWS META INFO ===== */
.news-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #6e6e80;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-meta span::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #10a37f;
    border-radius: 50%;
}