/* ------------------------------------------
   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;
}



/* ------------------------------------------
   Cozy Neocities Style
--------------------------------------------- */

:root {
    --bg: #f7f4ef;
    --box: #ffffff;
    --text: #2e2b29;
    --text-soft: #554f4d;
    --accent: #8a93b9; /* dusty lavender-blue */
    --border: #dcd5ce;
}

body {
    background: var(--bg);
    margin: 0;
    padding: 0;
    font-family: "Karla", sans-serif;
    color: var(--text);
}

/* PAGE WRAPPER */
.page-wrap {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

/* HEADER */
.site-header {
    text-align: center;
    margin-bottom: 25px;
}

.site-header h1 {
    font-family: "Domine", serif;
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.tagline {
    font-size: 16px;
    color: var(--text-soft);
    font-family: "Karla", sans-serif;
}

/* NAVIGATION BAR */
.site-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 14px;
    background: var(--box);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 30px;
}

.site-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-family: "Karla", sans-serif;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.2s;
}

.site-nav a:hover {
    background: var(--border);
}

/* CONTENT BOX */
.content {
    background: var(--box);
    border: 1px solid var(--border);
    padding: 25px 30px;
    border-radius: 10px;
}

/* WELCOME */
.welcome-box h2 {
    font-family: "Domine", serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.welcome-box p {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 14px;
    font-family: "Karla", sans-serif;
}

/* Small inline welcome GIF */
.welcome-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.small-gif {
    width: 55px;
    height: auto;
    flex-shrink: 0;
    image-rendering: pixelated;
    border-radius: 4px;
}

/* SUMMARY SECTION */
.summary-section {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.summary-section h2 {
    font-family: "Domine", serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.summary-section p {
    font-size: 17px;
    line-height: 26px;
    color: var(--text-soft);
    margin-bottom: 14px;
    font-family: "Karla", sans-serif;
}

/* MUSIC PLAYER */
.music-box {
    margin-top: 35px;
}

.music-box h3 {
    font-family: "Domine", serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* LIST SECTION */
.mini-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-family: "Domine", serif;
    font-weight: 600;
}

.mini-section ul {
    margin-left: 20px;
    line-height: 26px;
    font-size: 17px;
    font-family: "Karla", sans-serif;
}

/* FOOTER */
.footer {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
    padding: 10px;
    color: var(--text-soft);
    font-family: "Karla", sans-serif;
}
