/* Chapter 4: Words - Specific styles */
.section-title {
    font-size: 1.8rem;
    color: #2d3436;
    margin: 30px 0 20px;
    text-align: center;
    font-family: 'Noto Sans Gurmukhi', sans-serif;
}

.words-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.word-card {
    background: white;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid #74b9ff;
    transition: all 0.2s;
    cursor: pointer;
}

.word-card:hover {
    transform: translateY(-5px);
    border-color: #0984e3;
}

.punjabi-word {
    font-size: 2.5rem;
    font-family: 'Noto Sans Gurmukhi', sans-serif;
    color: #2d3436;
    margin-bottom: 8px;
}

.syllable-break {
    font-size: 1.2rem;
    font-family: 'Noto Sans Gurmukhi', sans-serif;
    color: #636e72;
    margin: 5px 0;
}

.english-meaning {
    font-size: 1rem;
    color: #0984e3;
    font-weight: bold;
}

.sentences-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sentence-card {
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #00b894;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sentence-punjabi {
    font-size: 1.5rem;
    font-family: 'Noto Sans Gurmukhi', sans-serif;
    color: #2d3436;
    margin-bottom: 5px;
}

.sentence-english {
    font-size: 1.1rem;
    color: #636e72;
}

.word-builder {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.word-builder select {
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 10px;
    border: 2px solid #a29bfe;
    font-family: 'Noto Sans Gurmukhi', sans-serif;
}

.built-word {
    font-size: 4rem;
    font-family: 'Noto Sans Gurmukhi', sans-serif;
    color: #d63031;
    margin: 20px 0;
}
