/* Common styles for Rumi Poetry site */

/* Base styles */
body {
    max-width: 1000px;
    margin: 60px auto;
    font-family: 'EB Garamond', Georgia, serif;
    line-height: 1.8;
    padding: 0 20px;
    color: #2c1810;
    background-color: #fcf9f2;
}

/* Typography */
h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 2.5em;
    color: #2c1810;
    text-align: center;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 1.5em;
    color: #5c4030;
    text-align: center;
    margin: 1.5em 0 1em;
}

/* Search components */
.search-container {
    margin: 3em auto;
    max-width: 600px;
    text-align: center;
}

.search-box {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #e8e0d8;
    background: #fff;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.1em;
    color: #2c1810;
    transition: all 0.3s;
}

.search-box:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.search-button {
    background-color: #8b7355;
    color: #fff;
    padding: 12px 30px;
    margin: 15px 0;
    border: none;
    cursor: pointer;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2em;
    transition: all 0.3s;
    width: auto;
    min-width: 200px;
}

.search-button:hover {
    background-color: #5c4030;
}

/* Navigation and links */
.breadcrumbs {
    text-align: center;
    color: #8b7355;
    margin-bottom: 3em;
    font-style: italic;
}

.breadcrumbs a {
    color: #8b7355;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.breadcrumbs a:hover {
    border-bottom-color: #8b7355;
}

.breadcrumbs .separator {
    margin: 0 0.5em;
    color: #bfb0a3;
}

/* Card-like containers */
.poem-section, .chapter, .result-item {
    margin: 1.5em 0;
    padding: 2em;
    background: #fff;
    border: 1px solid #e8e0d8;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

/* Poem specific styles */
.poem-metadata {
    text-align: center;
    color: #8b7355;
    margin-bottom: 3em;
    padding-bottom: 2em;
    border-bottom: 1px solid #e8e0d8;
    font-style: italic;
}

.poem-text {
    white-space: pre-wrap;
    font-family: 'EB Garamond', Georgia, serif;
    line-height: 1.8;
    font-size: 1.2em;
    color: #2c1810;
}

.persian-text {
    font-size: 1.4em;
    line-height: 2;
}

/* Navigation links */
.nav-links {
    margin-top: 4em;
    padding-top: 2em;
    border-top: 1px solid #e8e0d8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.nav-link {
    color: #8b7355;
    text-decoration: none;
    padding: 0.5em 1em;
    transition: all 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #2c1810;
    border-color: #e8e0d8;
}

.nav-link .arrow {
    font-size: 1.2em;
    line-height: 1;
    color: #bfb0a3;
}

.prev-link .arrow {
    margin-right: 0.8em;
}

.next-link .arrow {
    margin-left: 0.8em;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        margin: 40px auto;
    }
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .nav-link {
        margin: 0.5em 0;
        max-width: none;
        justify-content: center;
    }
    .chapter-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5em;
    }
} 