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



/* ------------------------------------------
   Works Page Additional Styles
--------------------------------------------- */

.featured {
    margin-bottom: 40px;
}

.featured h2 {
    font-family: "Domine", serif;
    font-size: 28px;
    margin-bottom: 14px;
}

/* Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.featured-card {
    background: var(--box);
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 10px;
    font-family: "Karla", sans-serif;
}

.featured-card img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 10px;
}

.featured-card h3 {
    font-family: "Domine", serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.featured-card p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-soft);
    margin-bottom: 12px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 8px 14px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 7px;
    font-size: 15px;
    font-family: "Karla", sans-serif;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
    background: #9aa3c7;
}

/* Works Section */
.works-section h2 {
    font-family: "Domine", serif;
    font-size: 28px;
    margin-bottom: 14px;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.work-card {
    background: var(--box);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 10px;
    font-family: "Karla", sans-serif;
}

.work-card img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 10px;
}

.work-card h3 {
    font-family: "Domine", serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.work-card p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-soft);
    margin-bottom: 10px;
}

/* Pagination */
.pagination {
    margin-top: 35px;
    margin-bottom: 25px;
    text-align: center;
}

.page-link {
    margin: 0 5px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-family: "Karla", sans-serif;
}

.page-number {
    margin: 0 8px;
    font-weight: bold;
    font-family: "Karla", sans-serif;
}

/* Music section */
.music-box {
    margin-top: 25px;
}

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