/* ------------------------------------------
   Self-hosted Fonts for Greyhouse
--------------------------------------------- */

/* Karla 400 */
@font-face {
    font-family: 'Karla';
    src: url('../fonts/Karla-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Karla 500 */
@font-face {
    font-family: 'Karla';
    src: url('../fonts/Karla-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Domine 400 */
@font-face {
    font-family: 'Domine';
    src: url('../fonts/Domine-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Domine 600 */
@font-face {
    font-family: 'Domine';
    src: url('../fonts/Domine-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}



/* ------------------------------------------
   Greyhouse Journal — unified cozy styling
   Works with: index.html, view.html
--------------------------------------------- */

/* Core content box */
.content {
    background: #f7f5f1;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.08);
    margin-top: 20px;
    font-family: "Karla", sans-serif;
}

/* Section titles */
.journal-title {
    font-family: "Domine", serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

/* ------------------------------------------
   Journal List
--------------------------------------------- */
.journal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.journal-list li {
    margin-bottom: 16px;
}

.journal-list a {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 10px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    border: 1px solid #dedbd6;
    transition: background 0.2s ease, transform 0.1s ease;
}

.journal-list a:hover {
    background: #ece7df;
    transform: translateY(-2px);
}

/* Date */
.entry-date {
    font-size: 15px;
    color: #666;
    font-family: "Karla", sans-serif;
}

/* Title */
.entry-title {
    font-family: "Domine", serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding-left: 12px;
}

/* ------------------------------------------
   View Page
--------------------------------------------- */

#entry-title {
    font-family: "Domine", serif;
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
    text-align: left;
}

.tagline a {
    color: #6b6b6b;
    text-decoration: none;
    font-size: 15px;
}

.tagline a:hover {
    text-decoration: underline;
}

/* Entry content text */
#entry-content {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    font-family: "Karla", sans-serif;
}

#entry-content p {
    margin-bottom: 16px;
}

/* SoundCloud embeds */
#entry-content iframe {
    margin-top: 12px;
    border-radius: 8px;
}

/* Header fix for view page */
.site-header h1 {
    margin-bottom: 6px;
}

/* Footer */
.footer p {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-top: 40px;
}
