/* =========================================
   ILAN Eisenzweig - GUITARIST
   4chan Style with Muted Green Theme
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #C4D4A5;
    color: #2A3A1A;
    font-family: arial, helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.4;
}

/* === LAYOUT CONTAINER === */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 5px;
}

/* === HEADER === */
.header {
    background-color: #D4E4B5;
    border: 1px solid #8A9A6A;
    padding: 10px;
    text-align: center;
    margin-bottom: 5px;
}

.header h1 {
    color: #4A5A2A;
    font-size: 28px;
    font-weight: bold;
    font-family: Tahoma, sans-serif;
}

.header .subtitle {
    color: #5A6A3A;
    font-size: 12px;
    font-style: italic;
}

/* === ASCII ART === */
.ascii-art {
    font-family: "Courier New", Courier, monospace;
    font-size: 10px;
    color: #6A7A4A;
    white-space: pre;
    line-height: 1.1;
    margin: 8px 0;
}

.ascii-char {
    display: inline-block;
    animation: ascii-wave 2.5s ease-in-out infinite;
}

@keyframes ascii-wave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* === NAVIGATION === */
.nav-bar {
    background-color: #B4C495;
    border: 1px solid #8A9A6A;
    padding: 3px 5px;
    margin-bottom: 10px;
    font-size: 12px;
    text-align: center;
}

.nav-bar a {
    color: #8B4513;
    text-decoration: none;
    margin: 0 3px;
}

.nav-bar a:hover {
    text-decoration: underline;
}

.nav-bar .active a {
    color: #CC5500;
}

/* === MAIN CONTENT === */
.content {
    background-color: #D8E8C0;
    border: 1px solid #8A9A6A;
    padding: 10px;
    margin-bottom: 5px;

    /* Transitions */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

.bio-points ul {
    list-style-type: square;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #4A6A2A;
}

.bio-points li {
    margin-bottom: 5px;
}

.content h2 {
    color: #4A6A2A;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 3px;
    border-bottom: 1px solid #8A9A6A;
}

.content p {
    margin-bottom: 10px;
}

/* === POST STYLE === */
.post {
    background-color: #E8F0D8;
    border: 1px solid #9AAA7A;
    padding: 8px;
    margin-bottom: 10px;
}

.post-header {
    font-size: 12px;
    margin-bottom: 5px;
}

.post-header .name {
    color: #2A6A2A;
    font-weight: bold;
}

.post-header .date {
    color: #6A7A5A;
}

.post-body {
    padding-left: 5px;
}

/* === BIO POINTS === */
.bio-points ul {
    list-style-type: square;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #4A6A2A;
}

.bio-points li {
    margin-bottom: 5px;
}

/* === TABLES === */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 12px;
}

.data-table th {
    background-color: #B4C495;
    color: #2A3A1A;
    padding: 4px 8px;
    border: 1px solid #8A9A6A;
    text-align: left;
    font-weight: bold;
}

.data-table td {
    padding: 4px 8px;
    border: 1px solid #8A9A6A;
    background-color: #E0ECC8;
}

.data-table tr:hover td {
    background-color: #D0DCA8;
}

/* === PHOTO GALLERY === */
.photo-table {
    width: 100%;
    border-collapse: collapse;
}

.photo-table td {
    padding: 5px;
    text-align: center;
    vertical-align: top;
}

.photo-table img,
.photo-placeholder {
    max-width: 150px;
    border: 1px solid #8A9A6A;
    display: block;
    margin: 0 auto 3px;
}

.photo-placeholder {
    width: 150px;
    height: 100px;
    background-color: #E0ECC8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6A7A5A;
    font-size: 10px;
}

.caption {
    color: #5A6A4A;
    font-size: 10px;
}

/* === CONTACT === */
.contact-info {
    background-color: #E8F0D8;
    border: 1px solid #9AAA7A;
    padding: 10px;
    margin: 10px 0;
}

.contact-info a {
    color: #8B4513;
}

.contact-info a:hover {
    color: #CC5500;
}

/* === LINKS === */
a {
    color: #0000EE;
    text-decoration: underline;
}

a:visited {
    color: #551A8B;
}

a:hover {
    color: #DD0000;
}

/* === FOOTER === */
.footer {
    text-align: center;
    font-size: 10px;
    color: #5A6A4A;
    padding: 10px;
    border-top: 1px solid #8A9A6A;
}

/* === HR === */
hr {
    border: none;
    border-top: 1px solid #8A9A6A;
    margin: 10px 0;
}

/* === NOTICE === */
.notice {
    background-color: #C4D4A5;
    border: 1px solid #9AAA7A;
    padding: 5px 10px;
    margin: 5px 0;
    font-size: 11px;
    text-align: center;
}

/* === ERROR === */
.error {
    color: #CC0000;
    font-weight: bold;
}

/* === PAGE TRANSITIONS === */
/* logic moved to components.js */

/* === RESPONSIVE === */
@media screen and (max-width: 740px) {
    .container {
        width: 100%;
        padding: 3px;
    }

    .photo-table td {
        display: block;
        width: 100%;
    }
}

/* === FOOTER === */
.footer {
    text-align: center;
    font-size: 11px;
    margin-top: 10px;
    color: #5A6A3A;
    border-top: 1px solid #8A9A6A;
    padding-top: 5px;
}